pax_global_header00006660000000000000000000000064142143330470014513gustar00rootroot0000000000000052 comment=85ffa228bcb091e8bc18ecddb39b89aed4d6c26c jbibtex-1.0.20/000077500000000000000000000000001421433304700132225ustar00rootroot00000000000000jbibtex-1.0.20/.github/000077500000000000000000000000001421433304700145625ustar00rootroot00000000000000jbibtex-1.0.20/.github/workflows/000077500000000000000000000000001421433304700166175ustar00rootroot00000000000000jbibtex-1.0.20/.github/workflows/maven.yml000066400000000000000000000007701421433304700204540ustar00rootroot00000000000000name: maven on: push: branches: [ master ] jobs: build: runs-on: ubuntu-latest strategy: matrix: java: [ 8, 9, 10, 11, 12, 13, 14 ] steps: - uses: actions/checkout@v2 - uses: actions/setup-java@v1 with: java-version: ${{ matrix.java }} - uses: actions/cache@v2 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-m2 - run: mvn -B package --file pom.xml jbibtex-1.0.20/LICENSE.txt000066400000000000000000000027331421433304700150520ustar00rootroot00000000000000Copyright (c) 2012, University of Tartu All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the University of Tartu nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.jbibtex-1.0.20/README.md000066400000000000000000000103351421433304700145030ustar00rootroot00000000000000JBibTeX [![Build Status](https://github.com/jbibtex/jbibtex/workflows/maven/badge.svg)](https://github.com/jbibtex/jbibtex/actions?query=workflow%3A%22maven%22) ======= Java BibTeX and LaTeX parser and formatter library # Installation # The current version of JBibTeX is **1.0.19** (14 July, 2021). The library JAR file (together with source and javadoc JAR files) is distributed via Maven Central repository: ```xml org.jbibtex jbibtex 1.0.19 ``` # Usage # ### Parsing BibTeX ### Typical scenario: ```java Reader reader = ... org.jbibtex.BibTeXParser bibtexParser = new org.jbibtex.BibTeXParser(); org.jbibtex.BibTeXDatabase database = bibtexParser.parse(reader); ``` BibTeX parser provides two parsing modes: * `#parse(Reader)`. Normal mode. The parser stops when an error condition is detected. * `#parseFully(Reader)`. Error recovery mode. The parser skips an erroneous object definition and continues with the next object definition. The list of error conditions can be accessed via `#getExceptions()`. BibTeX parser performs automatic string constants and crossref fields resolution. The default behavior is to prohibit unresolved references by throwing an unchecked exception `org.jbibtex.ObjectResolutionException`. The default behavior can be overriden as follows: ```java org.jbibtex.BibTeXParser bibtexParser = new org.jbibtex.BibTeXParser(){ @Override public void checkStringResolution(org.jbibtex.Key key, org.jbibtex.BibTeXString string){ if(string == null){ System.err.println("Unresolved string: \"" + key.getValue() + "\""); } } @Override public void checkCrossReferenceResolution(org.jbibtex.Key key, org.jbibtex.BibTeXEntry entry){ if(entry == null){ System.err.println("Unresolved cross-reference: \"" + key.getValue() + "\""); } } }; ``` **Caution**: Prior to JBibTeX version 1.0.12, methods `org.jbibtex.BibTeXParser#parse(java.io.Reader)` and `org.jbibtex.LaTeXParser#parse(java.io.Reader)` may throw error `org.jbibtex.TokenMgrError` if the input contains illegal characters or is otherwise problematic. Library users are advised to surround the affected portions of their code with appropriate try-catch statements. An unhandled `org.jbibtex.TokenMgrError` could terminate the JVM process. Library users may use class `org.jbibtex.CharacterFilterReader` to skip illegal characters in the input: ```java Reader reader = ... org.jbibtex.CharacterFilterReader filterReader = new org.jbibtex.CharacterFilterReader(reader); bibtexParser.parse(filterReader); ``` ### Formatting BibTeX ### Typical scenario: ```java Writer writer = ... org.jbibtex.BibTeXDatabase database = ... org.jbibtex.BibTeXFormatter bibtexFormatter = new org.jbibtex.BibTeXFormatter(); bibtexFormatter.format(database, writer); ``` ### Working with BibTeX databases ### Iterating over all the BibTeX entries in the BibTeX database and retrieving their title field: ```java org.jbibtex.BibTeXDatabase database = ... Map entryMap = database.getEntries(); Collection entries = entryMap.values(); for(org.jbibtex.BibTeXEntry entry : entries){ org.jbibtex.Value value = entry.getField(org.jbibtex.BibTeXEntry.KEY_TITLE); if(value == null){ continue; } // Do something with the title value } ``` BibTeX entry values could be in LaTeX data format. The easiest way to distinguish between plain text and LaTeX text values is to look for LaTeX special symbols `\` and `{`: ```java org.jbibtex.Value value = ... String string = value.toUserString(); if(string.indexOf('\\') > -1 || string.indexOf('{') > -1){ // LaTeX string that needs to be translated to plain text string } else { // Plain text string } ``` ### Translating LaTeX strings to plain text strings ### Typical scenario: ```java String latexString = ... org.jbibtex.LaTeXParser latexParser = new org.jbibtex.LaTeXParser(); List latexObjects = latexParser.parse(latexString); org.jbibtex.LaTeXPrinter latexPrinter = new org.jbibtex.LaTeXPrinter(); String plainTextString = latexPrinter.print(latexObjects); ``` # License # JBibTeX is licensed under the [BSD 3-Clause License](http://opensource.org/licenses/BSD-3-Clause). jbibtex-1.0.20/pom.xml000066400000000000000000000111211421433304700145330ustar00rootroot00000000000000 4.0.0 org.sonatype.oss oss-parent 9 org.jbibtex jbibtex 1.0.20 jar JBibTeX Java BibTeX parser and formatter http://www.jbibtex.org University of Tartu http://www.ut.ee/en New BSD License http://www.opensource.org/licenses/bsd-license.php repo villu.ruusmann Villu Ruusmann scm:git:git@github.com:jbibtex/jbibtex.git scm:git:git@github.com:jbibtex/jbibtex.git git://github.com/jbibtex/jbibtex.git 1.0.20 GitHub https://github.com/jbibtex/jbibtex/issues com.fasterxml.jackson.core jackson-annotations [2.8.0, 2.13.2] provided com.fasterxml.jackson.core jackson-databind [2.8.0, 2.13.2] test junit junit 4.13.2 test org.apache.maven.plugins maven-compiler-plugin 3.10.0 1.8 1.8 org.apache.maven.plugins maven-javadoc-plugin 3.3.2 1.8 none org.apache.maven.plugins maven-release-plugin 2.5.3 true false org.apache.maven.plugins maven-surefire-plugin 2.22.2 ${jacoco.agent} false org.codehaus.mojo animal-sniffer-maven-plugin 1.21 android-21 process-classes check net.sf.androidscents.signature android-api-level-11 3.0_r2 org.codehaus.mojo javacc-maven-plugin 2.6 javacc net.java.dev.javacc javacc 7.0.10 org.jacoco jacoco-maven-plugin 0.8.7 pre-unit-test prepare-agent jacoco.agent post-unit-test prepare-package report jbibtex-1.0.20/src/000077500000000000000000000000001421433304700140115ustar00rootroot00000000000000jbibtex-1.0.20/src/main/000077500000000000000000000000001421433304700147355ustar00rootroot00000000000000jbibtex-1.0.20/src/main/java/000077500000000000000000000000001421433304700156565ustar00rootroot00000000000000jbibtex-1.0.20/src/main/java/org/000077500000000000000000000000001421433304700164455ustar00rootroot00000000000000jbibtex-1.0.20/src/main/java/org/jbibtex/000077500000000000000000000000001421433304700200745ustar00rootroot00000000000000jbibtex-1.0.20/src/main/java/org/jbibtex/BibTeXComment.java000066400000000000000000000005641421433304700234040ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; public class BibTeXComment extends BibTeXObject { private StringValue value = null; BibTeXComment(){ } public BibTeXComment(StringValue value){ setValue(value); } public StringValue getValue(){ return this.value; } private void setValue(StringValue value){ this.value = value; } }jbibtex-1.0.20/src/main/java/org/jbibtex/BibTeXDatabase.java000066400000000000000000000051741421433304700235100ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; import java.io.Serializable; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.Map; public class BibTeXDatabase implements Serializable { private List objects = new ArrayList<>(); private List includes = new ArrayList<>(); private KeyMap strings = new KeyMap<>(); private KeyMap entries = new KeyMap<>(); public void addObject(BibTeXObject object){ boolean success; if(object instanceof BibTeXInclude){ BibTeXInclude include = (BibTeXInclude)object; success = this.includes.add(include); } else if(object instanceof BibTeXString){ BibTeXString string = (BibTeXString)object; success = this.strings.putIfMissing(string.getKey(), string); } else if(object instanceof BibTeXEntry){ BibTeXEntry entry = (BibTeXEntry)object; success = this.entries.putIfMissing(entry.getKey(), entry); } else { success = true; } // End if if(success){ this.objects.add(object); } } public void removeObject(BibTeXObject object){ boolean success; if(object instanceof BibTeXInclude){ BibTeXInclude include = (BibTeXInclude)object; success = this.includes.remove(include); } else if(object instanceof BibTeXString){ BibTeXString string = (BibTeXString)object; success = this.strings.removeIfPresent(string.getKey()); } else if(object instanceof BibTeXEntry){ BibTeXEntry entry = (BibTeXEntry)object; success = this.entries.removeIfPresent(entry.getKey()); } else { success = true; } // End if if(success){ this.objects.remove(object); } } public List getObjects(){ return Collections.unmodifiableList(this.objects); } public BibTeXString resolveString(Key key){ BibTeXString string = this.strings.get(key); if(string == null){ for(BibTeXInclude include : this.includes){ BibTeXDatabase database = include.getDatabase(); string = database.resolveString(key); if(string != null){ return string; } } } return string; } public Map getStrings(){ return Collections.unmodifiableMap(this.strings); } public BibTeXEntry resolveEntry(Key key){ BibTeXEntry entry = this.entries.get(key); if(entry == null){ for(BibTeXInclude include : this.includes){ BibTeXDatabase database = include.getDatabase(); entry = database.resolveEntry(key); if(entry != null){ return entry; } } } return entry; } public Map getEntries(){ return Collections.unmodifiableMap(this.entries); } }jbibtex-1.0.20/src/main/java/org/jbibtex/BibTeXEntry.java000066400000000000000000000074521421433304700231060ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; import java.util.Collections; import java.util.Map; import com.fasterxml.jackson.annotation.JsonIgnore; public class BibTeXEntry extends BibTeXObject { private Key type = null; private Key key = null; private KeyMap fields = new KeyMap<>(); BibTeXEntry(){ } public BibTeXEntry(Key type, Key key){ setType(type); setKey(key); } @JsonIgnore public BibTeXEntry getCrossReference(){ Value value = this.fields.get(KEY_CROSSREF); CrossReferenceValue crossRefValue = (CrossReferenceValue)value; if(crossRefValue != null){ return crossRefValue.getEntry(); } return null; } public Value getField(Key key){ Value value = this.fields.get(key); if(value == null){ BibTeXEntry entry = getCrossReference(); if(entry != null){ return entry.getField(key); } } return value; } public void addField(Key key, Value value){ this.fields.put(key, value); } public void addAllFields(Map fields){ this.fields.putAll(fields); } public void removeField(Key key){ this.fields.remove(key); } public Key getType(){ return this.type; } private void setType(Key type){ this.type = type; } public Key getKey(){ return this.key; } private void setKey(Key key){ this.key = key; } public Map getFields(){ return Collections.unmodifiableMap(this.fields); } public static final Key TYPE_ARTICLE = new Key("article"); public static final Key TYPE_BOOK = new Key("book"); public static final Key TYPE_BOOKLET = new Key("booklet"); public static final Key TYPE_CONFERENCE = new Key("conference"); public static final Key TYPE_INBOOK = new Key("inbook"); public static final Key TYPE_INCOLLECTION = new Key("incollection"); public static final Key TYPE_INPROCEEDINGS = new Key("inproceedings"); public static final Key TYPE_MANUAL = new Key("manual"); public static final Key TYPE_MASTERSTHESIS = new Key("mastersthesis"); public static final Key TYPE_MISC = new Key("misc"); public static final Key TYPE_PHDTHESIS = new Key("phdthesis"); public static final Key TYPE_PROCEEDINGS = new Key("proceedings"); public static final Key TYPE_TECHREPORT = new Key("techreport"); public static final Key TYPE_UNPUBLISHED = new Key("unpublished"); public static final Key KEY_ADDRESS = new Key("address"); public static final Key KEY_ANNOTE = new Key("annote"); public static final Key KEY_AUTHOR = new Key("author"); public static final Key KEY_BOOKTITLE = new Key("booktitle"); public static final Key KEY_CHAPTER = new Key("chapter"); public static final Key KEY_CROSSREF = new Key("crossref"); public static final Key KEY_DOI = new Key("doi"); public static final Key KEY_EDITION = new Key("edition"); public static final Key KEY_EDITOR = new Key("editor"); public static final Key KEY_EPRINT = new Key("eprint"); public static final Key KEY_HOWPUBLISHED = new Key("howpublished"); public static final Key KEY_INSTITUTION = new Key("institution"); public static final Key KEY_JOURNAL = new Key("journal"); public static final Key KEY_KEY = new Key("key"); public static final Key KEY_MONTH = new Key("month"); public static final Key KEY_NOTE = new Key("note"); public static final Key KEY_NUMBER = new Key("number"); public static final Key KEY_ORGANIZATION = new Key("organization"); public static final Key KEY_PAGES = new Key("pages"); public static final Key KEY_PUBLISHER = new Key("publisher"); public static final Key KEY_SCHOOL = new Key("school"); public static final Key KEY_SERIES = new Key("series"); public static final Key KEY_TITLE = new Key("title"); public static final Key KEY_TYPE = new Key("type"); public static final Key KEY_URL = new Key("url"); public static final Key KEY_VOLUME = new Key("volume"); public static final Key KEY_YEAR = new Key("year"); }jbibtex-1.0.20/src/main/java/org/jbibtex/BibTeXFormatter.java000066400000000000000000000056611421433304700237500ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; import java.io.IOException; import java.io.Writer; import java.util.Collection; import java.util.Iterator; import java.util.List; import java.util.Map; public class BibTeXFormatter { private String indent = "\t"; public BibTeXFormatter(){ } public void format(BibTeXDatabase database, Writer writer) throws IOException { List objects = database.getObjects(); String separator = ""; for(BibTeXObject object : objects){ writer.write(separator); if(object instanceof BibTeXComment){ format((BibTeXComment)object, writer); } else if(object instanceof BibTeXEntry){ format((BibTeXEntry)object, writer); } else if(object instanceof BibTeXInclude){ format((BibTeXInclude)object, writer); } else if(object instanceof BibTeXPreamble){ format((BibTeXPreamble)object, writer); } else if(object instanceof BibTeXString){ format((BibTeXString)object, writer); } else { throw new IllegalArgumentException(); } separator = "\n\n"; } writer.flush(); } protected void format(BibTeXComment comment, Writer writer) throws IOException { writer.write("@Comment"); format(comment.getValue(), 1, writer); } protected void format(BibTeXEntry entry, Writer writer) throws IOException { writer.write("@"); format(entry.getType(), writer); writer.write('{'); format(entry.getKey(), writer); writer.write(','); writer.write('\n'); Collection> fields = (entry.getFields()).entrySet(); for(Iterator> it = fields.iterator(); it.hasNext(); ){ Map.Entry field = it.next(); writer.write(getIndent()); format(field.getKey(), writer); writer.write(" = "); format(field.getValue(), 2, writer); if(it.hasNext()){ writer.write(','); } writer.write('\n'); } writer.write('}'); } protected void format(BibTeXInclude include, Writer writer) throws IOException { writer.write("@Include"); format(include.getValue(), 1, writer); } protected void format(BibTeXPreamble preamble, Writer writer) throws IOException { writer.write("@Preamble"); writer.write('{'); format(preamble.getValue(), 1, writer); writer.write('}'); } protected void format(BibTeXString string, Writer writer) throws IOException { writer.write("@String"); writer.write('{'); format(string.getKey(), writer); writer.write(" = "); format(string.getValue(), 1, writer); writer.write('}'); } protected void format(Key key, Writer writer) throws IOException { String string = key.getValue(); writer.write(string); } protected void format(Value value, int level, Writer writer) throws IOException { String string = StringUtil.addIndent(value.format(), level, getIndent()); writer.write(string); } public String getIndent(){ return this.indent; } public void setIndent(String indent){ this.indent = indent; } }jbibtex-1.0.20/src/main/java/org/jbibtex/BibTeXInclude.java000066400000000000000000000011461421433304700233620ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; public class BibTeXInclude extends BibTeXObject { private StringValue value = null; private BibTeXDatabase database = null; BibTeXInclude(){ } public BibTeXInclude(StringValue value, BibTeXDatabase database){ setValue(value); setDatabase(database); } public StringValue getValue(){ return this.value; } private void setValue(StringValue value){ this.value = value; } public BibTeXDatabase getDatabase(){ return this.database; } private void setDatabase(BibTeXDatabase database){ this.database = database; } }jbibtex-1.0.20/src/main/java/org/jbibtex/BibTeXObject.java000066400000000000000000000004361421433304700232060ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonTypeInfo; @JsonTypeInfo ( use = JsonTypeInfo.Id.CLASS ) abstract public class BibTeXObject implements Serializable { BibTeXObject(){ } }jbibtex-1.0.20/src/main/java/org/jbibtex/BibTeXPreamble.java000066400000000000000000000005371421433304700235310ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; public class BibTeXPreamble extends BibTeXObject { private Value value = null; BibTeXPreamble(){ } public BibTeXPreamble(Value value){ setValue(value); } public Value getValue(){ return this.value; } private void setValue(Value value){ this.value = value; } }jbibtex-1.0.20/src/main/java/org/jbibtex/BibTeXString.java000066400000000000000000000007551421433304700232520ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; public class BibTeXString extends BibTeXObject { private Key key = null; private Value value = null; BibTeXString(){ } public BibTeXString(Key key, Value value){ setKey(key); setValue(value); } public Key getKey(){ return this.key; } private void setKey(Key key){ this.key = key; } public Value getValue(){ return this.value; } private void setValue(Value value){ this.value = value; } }jbibtex-1.0.20/src/main/java/org/jbibtex/CharacterFilterReader.java000066400000000000000000000032071421433304700251260ustar00rootroot00000000000000/* * Copyright (c) 2014 University of Tartu */ package org.jbibtex; import java.io.FilterReader; import java.io.IOException; import java.io.Reader; public class CharacterFilterReader extends FilterReader { public CharacterFilterReader(Reader reader){ super(reader); } /** * @return true If the specified character should be accepted, false otherwise. * * @see BibTeXParserTokenManager * @see LaTeXParserTokenManager */ protected boolean accept(char c){ // Whitespace if(c == '\t' || c == '\n' || c == '\f' || c == '\r' || c == ' '){ return true; } // ASCII letters, numbers and control characters if(c >= '\u0021' && c <= '\u007f'){ return true; } // Latin-1 supplement letters if((c >= '\u00c0' && c <= '\u00d6') || (c >= '\u00d8' && c <= '\u00f6') || (c >= '\u00f8' && c <= '\u00ff')){ return true; } // Unicode letters if((c >= '\u0100' && c <= '\u1fff') || (c == '\u20ac' || c == '\u2122')){ return true; } return false; } @Override public int read() throws IOException { while(true){ int result = super.read(); if(result < 0){ return -1; } if(accept((char)result)){ return result; } } } @Override public int read(char[] buffer, final int offset, final int length) throws IOException { int count = super.read(buffer, offset, length); if(count < 0){ return -1; } int readOffset = offset; int writeOffset = offset; for(int i = 0; i < count; i++){ char c = buffer[readOffset]; readOffset++; if(accept(c)){ buffer[writeOffset] = c; writeOffset++; } } return count - (readOffset - writeOffset); } }jbibtex-1.0.20/src/main/java/org/jbibtex/ConcateValue.java000066400000000000000000000013131421433304700233060ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; public class ConcateValue extends Value { private Value left = null; private Value right = null; ConcateValue(){ } public ConcateValue(Value left, Value right){ setLeft(left); setRight(right); } @Override protected String format(){ return getLeft().format() + " # " + getRight().format(); } @Override public String toUserString(){ return getLeft().toUserString() + getRight().toUserString(); } public Value getLeft(){ return this.left; } private void setLeft(Value left){ this.left = left; } public Value getRight(){ return this.right; } private void setRight(Value right){ this.right = right; } }jbibtex-1.0.20/src/main/java/org/jbibtex/CrossReferenceValue.java000066400000000000000000000015721421433304700246510ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; public class CrossReferenceValue extends Value implements Resolvable { private Value value = null; private BibTeXEntry entry = null; CrossReferenceValue(){ } public CrossReferenceValue(Value value, BibTeXEntry entry){ setValue(value); setEntry(entry); } @Override protected String format(){ return getValue().format(); } @Override public String toUserString(){ return getValue().toUserString(); } /** * @see BibTeXParser#checkCrossReferenceResolution(Key, BibTeXEntry) */ @Override public boolean isResolved(){ return getEntry() != null; } public Value getValue(){ return this.value; } private void setValue(Value value){ this.value = value; } public BibTeXEntry getEntry(){ return this.entry; } private void setEntry(BibTeXEntry entry){ this.entry = entry; } }jbibtex-1.0.20/src/main/java/org/jbibtex/DigitStringValue.java000066400000000000000000000004251421433304700241640ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; public class DigitStringValue extends LiteralValue { DigitStringValue(){ } public DigitStringValue(String string){ super(string); } @Override protected String format(){ return getString(); } }jbibtex-1.0.20/src/main/java/org/jbibtex/Key.java000066400000000000000000000020031421433304700214620ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; import java.io.Serializable; import java.util.Locale; public class Key implements Serializable { private String value = null; transient private String normalizedValue = null; Key(){ } public Key(String value){ setValue(value); } @Override public String toString(){ return getValue(); } @Override public int hashCode(){ return (this.getNormalizedValue()).hashCode(); } @Override public boolean equals(Object object){ if(object instanceof Key){ Key that = (Key)object; return (this.getNormalizedValue()).equals(that.getNormalizedValue()); } return false; } public String getValue(){ return this.value; } private void setValue(String key){ if(key == null){ throw new IllegalArgumentException(); } this.value = key; } private String getNormalizedValue(){ if(this.normalizedValue == null){ this.normalizedValue = getValue().toLowerCase(Locale.US); } return this.normalizedValue; } }jbibtex-1.0.20/src/main/java/org/jbibtex/KeyMap.java000066400000000000000000000011421421433304700221230ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; import java.util.LinkedHashMap; public class KeyMap extends LinkedHashMap { /** * @return true If the {@link #keySet() key set} of the map was modified, false otherwise. * * @see #removeIfPresent(Key) */ boolean putIfMissing(Key key, V value){ if(containsKey(key)){ return false; } put(key, value); return true; } /** * @see #putIfMissing(Key, V) */ boolean removeIfPresent(Key key){ if(containsKey(key)){ remove(key); return true; } return false; } }jbibtex-1.0.20/src/main/java/org/jbibtex/KeyValue.java000066400000000000000000000010431421433304700224620ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; public class KeyValue extends Value { private String string = null; KeyValue(){ } public KeyValue(String string){ setString(string); } public Key toKey(){ Key key = new Key(getString()); return key; } @Override protected String format(){ return getString(); } @Override public String toUserString(){ return getString(); } public String getString(){ return this.string; } private void setString(String string){ this.string = string; } }jbibtex-1.0.20/src/main/java/org/jbibtex/LaTeXCommand.java000066400000000000000000000005221421433304700232120ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; public class LaTeXCommand extends LaTeXObject { private String name = null; LaTeXCommand(){ } public LaTeXCommand(String name){ setName(name); } public String getName(){ return this.name; } private void setName(String name){ this.name = name; } }jbibtex-1.0.20/src/main/java/org/jbibtex/LaTeXGroup.java000066400000000000000000000007521421433304700227350ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; import java.util.Collections; import java.util.List; public class LaTeXGroup extends LaTeXObject { private List objects = null; LaTeXGroup(){ } public LaTeXGroup(List objects){ setObjects(objects); } public List getObjects(){ return Collections.unmodifiableList(this.objects); } private void setObjects(List objects){ this.objects = objects; } }jbibtex-1.0.20/src/main/java/org/jbibtex/LaTeXObject.java000066400000000000000000000004341421433304700230440ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonTypeInfo; @JsonTypeInfo ( use = JsonTypeInfo.Id.CLASS ) abstract public class LaTeXObject implements Serializable { LaTeXObject(){ } }jbibtex-1.0.20/src/main/java/org/jbibtex/LaTeXPrinter.java000066400000000000000000000202711421433304700232620ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.LinkedHashMap; import java.util.List; import java.util.Map; public class LaTeXPrinter { public LaTeXPrinter(){ } public String print(List objects){ TextBuilder builder = new TextBuilder(); print(objects, builder); return builder.buildString(); } private void print(List objects, TextBuilder builder){ for(LaTeXObject object : objects){ if(object instanceof LaTeXCommand){ print((LaTeXCommand)object, builder); } else if(object instanceof LaTeXGroup){ print((LaTeXGroup)object, builder); } else if(object instanceof LaTeXString){ print((LaTeXString)object, builder); } else { throw new IllegalArgumentException(); } } } private void print(LaTeXCommand command, TextBuilder builder){ char accent = getAccent(command.getName()); if(accent > 0){ builder.setAccent(accent); return; } String symbol = getSymbol(command.getName()); if(symbol != null){ builder.append(symbol); } } private void print(LaTeXGroup group, TextBuilder builder){ builder.append(print(group.getObjects())); } private void print(LaTeXString string, TextBuilder builder){ String value = string.getValue(); if(value.contains("--")){ value = value.replace("---", "\u2014"); value = value.replace("--", "\u2013"); } // End if if(value.contains("`")){ value = value.replace("``", "\u201c"); value = value.replace("`", "\u2018"); } // End if if(value.contains("'")){ value = value.replace("''", "\u201d"); value = value.replace("'", "\u2019"); } builder.append(value); } static public String today(){ Calendar now = Calendar.getInstance(); return LATEX_TODAY.format(now.getTime()); } private static final DateFormat LATEX_TODAY = new SimpleDateFormat("MMMM dd, yyyy"); static private char getAccent(String name){ char c = (name.length() == 1 ? name.charAt(0) : 0); switch(c){ case '`': case '\'': case '^': case '\"': case 'H': case '~': case 'c': case 'k': case '=': case 'b': case '.': case 'd': case 'r': case 'u': case 'v': case 't': return c; default: break; } return 0; } static private char applyAccent(char accent, char c){ switch(accent){ // Grave case '`': switch(c){ case 'A': return '\u00c0'; case 'E': return '\u00c8'; case 'I': return '\u00cc'; case 'O': return '\u00d2'; case 'U': return '\u00d9'; case 'a': return '\u00e0'; case 'e': return '\u00e8'; case 'i': return '\u00ec'; case 'o': return '\u00f2'; case 'u': return '\u00f9'; default: break; } break; // Acute case '\'': switch(c){ case 'A': return '\u00c1'; case 'E': return '\u00c9'; case 'I': return '\u00cd'; case 'O': return '\u00d3'; case 'U': return '\u00da'; case 'Y': return '\u00dd'; case 'a': return '\u00e1'; case 'e': return '\u00e9'; case 'i': return '\u00ed'; case 'o': return '\u00f3'; case 'u': return '\u00fa'; case 'y': return '\u00fd'; default: break; } break; // Diaeresis case '\"': switch(c){ case 'A': return '\u00c4'; case 'E': return '\u00cb'; case 'I': return '\u00cf'; case 'O': return '\u00d6'; case 'U': return '\u00dc'; case 'a': return '\u00e4'; case 'e': return '\u00eb'; case 'i': return '\u00ef'; case 'o': return '\u00f6'; case 'u': return '\u00fc'; default: break; } break; // Tilde case '~': switch(c){ case 'A': return '\u00c3'; case 'N': return '\u00d1'; case 'O': return '\u00d5'; case 'a': return '\u00e3'; case 'n': return '\u00f1'; case 'o': return '\u00f5'; default: break; } break; // Ring above case 'r': switch(c){ case 'U': return '\u016e'; case 'u': return '\u016f'; default: break; } break; // Caron case 'v': switch(c){ case 'C': return '\u010c'; case 'D': return '\u010e'; case 'E': return '\u011a'; case 'N': return '\u0147'; case 'R': return '\u0158'; case 'S': return '\u0160'; case 'T': return '\u0164'; case 'Z': return '\u017d'; case 'c': return '\u010d'; case 'd': return '\u010f'; case 'e': return '\u011b'; case 'n': return '\u0148'; case 'r': return '\u0159'; case 's': return '\u0161'; case 't': return '\u0165'; case 'z': return '\u017e'; default: break; } break; default: break; } return c; } static public String getSymbol(String name){ return COMMAND_SYMBOLS.get(name); } static public void setSymbol(String name, String symbol){ COMMAND_SYMBOLS.put(name, symbol); } private static final Map COMMAND_SYMBOLS = new LinkedHashMap<>(); static { // Special symbols setSymbol("#", "#"); setSymbol("$", "$"); setSymbol("%", "%"); setSymbol("&", "&"); setSymbol("\\", "\\"); setSymbol("^", "^"); setSymbol("_", "_"); setSymbol("{", "{"); setSymbol("}", "}"); setSymbol("~", "~"); // Non-ASCII letters setSymbol("AA", "\u00c5"); setSymbol("AE", "\u00c6"); setSymbol("O", "\u00d8"); setSymbol("SS", "SS"); setSymbol("aa", "\u00e5"); setSymbol("ae", "\u00e6"); setSymbol("o", "\u00f8"); setSymbol("ss", "\u00df"); // Text-mode commands setSymbol("textasciicircum", "^"); setSymbol("textasciitilde", "~"); setSymbol("textbackslash", "\\"); setSymbol("textbar", "|"); setSymbol("textbraceleft", "{"); setSymbol("textbraceright", "}"); setSymbol("textcopyrigh", "\u00a9"); setSymbol("textdollar", "$"); setSymbol("textellipsis", "\u2026"); setSymbol("textemdash", "\u2014"); setSymbol("textendash", "\u2013"); setSymbol("textgreater", ">"); setSymbol("textless", "<"); setSymbol("textquotedblleft", "\u201c"); setSymbol("textquotedblright", "\u201d"); setSymbol("textquoteleft", "\u2018"); setSymbol("textquoteright", "\u2019"); setSymbol("textregistered", "\u00ae"); setSymbol("texttrademark", "\u2122"); setSymbol("textunderscore", "_"); // Math- and text-mode commands setSymbol("slash", "/"); setSymbol("backslash", "\\"); setSymbol("endash", "\u2013"); setSymbol("emdash", "\u2014"); setSymbol("ldots", "\u2026"); // Greek alphabet setSymbol("alpha", "\u03b1"); setSymbol("beta", "\u03b2"); setSymbol("gamma", "\u03b3"); setSymbol("delta", "\u03b4"); setSymbol("epsilon", "\u03b5"); setSymbol("zeta", "\u03b6"); setSymbol("eta", "\u03b7"); setSymbol("theta", "\u03b8"); setSymbol("iota", "\u03b9"); setSymbol("kappa", "\u03ba"); setSymbol("lambda", "\u03bb"); setSymbol("mu", "\u03bc"); setSymbol("nu", "\u03bd"); setSymbol("xi", "\u03be"); setSymbol("omicron", "\u03bf"); // XXX setSymbol("pi", "\u03c0"); setSymbol("rho", "\u03c1"); setSymbol("sigma", "\u03c2"); setSymbol("tau", "\u03c3"); setSymbol("upsilon", "\u03c4"); setSymbol("phi", "\u03c5"); setSymbol("chi", "\u03c6"); setSymbol("psi", "\u03c7"); setSymbol("omega", "\u03c8"); // Ready-made strings setSymbol("today", today()); setSymbol("TeX", "TeX"); setSymbol("LaTeX", "LaTeX"); setSymbol("LaTeXe", "LaTeX\u03b5"); } static private class TextBuilder { private StringBuilder sb = new StringBuilder(); private char accent = 0; public void append(String string){ char accent = getAccent(); if(accent > 0){ if(string.length() > 0){ string = applyAccent(accent, string.charAt(0)) + string.substring(1); } setAccent((char)0); } this.sb.append(string); } public char getAccent(){ return this.accent; } private void setAccent(char accent){ this.accent = accent; } public String buildString(){ return this.sb.toString(); } } }jbibtex-1.0.20/src/main/java/org/jbibtex/LaTeXString.java000066400000000000000000000005311421433304700231020ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; public class LaTeXString extends LaTeXObject { private String value = null; LaTeXString(){ } public LaTeXString(String value){ setValue(value); } public String getValue(){ return this.value; } private void setValue(String value){ this.value = value; } }jbibtex-1.0.20/src/main/java/org/jbibtex/LiteralValue.java000066400000000000000000000006551421433304700233360ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; abstract public class LiteralValue extends Value { private String string = null; LiteralValue(){ } public LiteralValue(String string){ setString(string); } @Override public String toUserString(){ return getString(); } public String getString(){ return this.string; } private void setString(String string){ this.string = string; } }jbibtex-1.0.20/src/main/java/org/jbibtex/ObjectResolutionException.java000066400000000000000000000003331421433304700261070ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; public class ObjectResolutionException extends IllegalArgumentException { public ObjectResolutionException(Key key){ super(key.getValue()); } }jbibtex-1.0.20/src/main/java/org/jbibtex/ReferenceValue.java000066400000000000000000000017551421433304700236420ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; public class ReferenceValue extends Value implements Resolvable { private KeyValue value = null; private BibTeXString string = null; ReferenceValue(){ } public ReferenceValue(KeyValue value, BibTeXString string){ setValue(value); setString(string); } @Override protected String format(){ return getValue().format(); } @Override public String toUserString(){ BibTeXString string = getString(); if(string != null){ return (string.getValue()).toUserString(); } return getValue().toUserString(); } /** * @see BibTeXParser#checkStringResolution(Key, BibTeXString) */ @Override public boolean isResolved(){ return getString() != null; } public KeyValue getValue(){ return this.value; } private void setValue(KeyValue value){ this.value = value; } public BibTeXString getString(){ return this.string; } public void setString(BibTeXString string){ this.string = string; } }jbibtex-1.0.20/src/main/java/org/jbibtex/Resolvable.java000066400000000000000000000003001421433304700230260ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; import com.fasterxml.jackson.annotation.JsonIgnore; public interface Resolvable { @JsonIgnore boolean isResolved(); }jbibtex-1.0.20/src/main/java/org/jbibtex/StringUtil.java000066400000000000000000000012661421433304700230500ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; public class StringUtil { private StringUtil(){ } static public String addIndent(String string, String indent){ return addIndent(string, 1, indent); } static public String addIndent(String string, int level, String indent){ if(string.indexOf('\n') > -1){ String levelIndent = indent; for(int i = 1; i < level; i++){ levelIndent += indent; } string = string.replaceAll("\\n", "\n" + levelIndent); } return string; } static public String removeIndent(String string){ if(string.indexOf('\n') > -1){ string = string.replaceAll("\\n([\\ ,\\t])*", "\n"); } return string; } }jbibtex-1.0.20/src/main/java/org/jbibtex/StringValue.java000066400000000000000000000016731421433304700232110ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; public class StringValue extends LiteralValue { private Style style = null; StringValue(){ } public StringValue(String string, Style style){ super(string); setStyle(style); } @Override protected String format(){ Style style = getStyle(); return style.getBegin() + getString() + style.getEnd(); } public Style getStyle(){ return this.style; } private void setStyle(Style style){ this.style = style; } static public enum Style { BRACED("{", "}"), QUOTED("\"", "\""), ; private String begin = null; private String end = null; Style(String begin, String end){ setBegin(begin); setEnd(end); } public String getBegin(){ return this.begin; } private void setBegin(String begin){ this.begin = begin; } public String getEnd(){ return this.end; } private void setEnd(String end){ this.end = end; } } }jbibtex-1.0.20/src/main/java/org/jbibtex/Value.java000066400000000000000000000010551421433304700220140ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; import java.io.Serializable; import com.fasterxml.jackson.annotation.JsonTypeInfo; @JsonTypeInfo ( use = JsonTypeInfo.Id.CLASS ) abstract public class Value implements Serializable { Value(){ } abstract protected String format(); /** * Returns a string representation of the object which is suitable for displaying to end users. * The result may contain LaTeX language markup. * * @see LaTeXParser * @see LaTeXPrinter */ abstract public String toUserString(); }jbibtex-1.0.20/src/main/javacc/000077500000000000000000000000001421433304700161645ustar00rootroot00000000000000jbibtex-1.0.20/src/main/javacc/bibtex.jj000066400000000000000000000362341421433304700177760ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ options { JAVA_TEMPLATE_TYPE = "modern"; JDK_VERSION = "1.8"; KEEP_LINE_COLUMN = true; STATIC = false; } PARSER_BEGIN(BibTeXParser) package org.jbibtex; import java.io.File; import java.io.FileReader; import java.io.Reader; import java.util.Collections; import java.util.ArrayList; import java.util.List; import java.util.Map; public class BibTeXParser { private KeyMap macros = new KeyMap(); private BibTeXDatabase database = null; private List exceptions = new ArrayList(); private long id = 1L; public BibTeXParser() throws ParseException, TokenMgrException { this(""); // Default macros addMacro("jan", "January"); addMacro("feb", "February"); addMacro("mar", "March"); addMacro("apr", "April"); addMacro("may", "May"); addMacro("jun", "June"); addMacro("jul", "July"); addMacro("aug", "August"); addMacro("sep", "September"); addMacro("oct", "October"); addMacro("nov", "November"); addMacro("dec", "December"); } /** * Parses the BibTeX document in "normal" mode. * The parser throws an exception is an error condition is detected. * * @throws ObjectResolutionException If the database is inconsistent. * * @throws TokenMgrException If a token cannot be produced. * @throws ParseException If the produced sequence of tokens cannot be consumed. * * @see CharacterFilterReader */ public BibTeXDatabase parse(Reader reader) throws ObjectResolutionException, ParseException, TokenMgrException { ReInit(new StreamProvider(reader)); token_source.SwitchTo(IN_HEADER); return Database(false); } /** * Parses the BibTeX document in "error recovery" mode. * The parser does its best to recover from typical error conditions by skipping the problematic object definition. * The parser maintains a {@link #getExceptions() list of exceptions}. This list is cleared when a parse method is invoked again. * * @throws ObjectResolutionException If the database is inconsistent. * * @see CharacterFilterReader */ public BibTeXDatabase parseFully(Reader reader) throws ObjectResolutionException { ReInit(new StreamProvider(reader)); token_source.SwitchTo(IN_HEADER); try { return Database(true); } catch(TokenMgrException tme){ throw new RuntimeException(tme); } catch(ParseException pe){ throw new RuntimeException(pe); } } /** * Checks the string argument before constructing a new {@link ReferenceValue} instance. * The default behaviour is to prohibit unresolved references. * * @throws ObjectResolutionException If the string is null. * * @see BibTeXDatabase#resolveString(Key) * @see BibTeXParser#getMacros() */ public void checkStringResolution(Key key, BibTeXString string){ if(string == null){ throw new ObjectResolutionException(key); } } private void resolveCrossReferences(){ Map entries = getDatabase().getEntries(); for(BibTeXEntry entry : entries.values()){ Map fields = entry.getFields(); Value value = fields.get(BibTeXEntry.KEY_CROSSREF); if((value == null) || (value instanceof CrossReferenceValue)){ continue; } Key key = new Key(value.toUserString()); BibTeXEntry object = getDatabase().resolveEntry(key); checkCrossReferenceResolution(key, object); entry.addField(BibTeXEntry.KEY_CROSSREF, new CrossReferenceValue(value, object)); } } /** * Checks the entry argument before constructing a new {@link CrossReferenceValue} instance. * The default behaviour is to prohibit unresolved references. * * @throws ObjectResolutionException If the entry is null. * * @see BibTeXDatabase#resolveEntry(Key) */ public void checkCrossReferenceResolution(Key key, BibTeXEntry entry){ if(entry == null){ throw new ObjectResolutionException(key); } } /** * Generates a key value for an anonymous BibTeX bibliography database entry. * * @see BibTeXEntry#getKey * @see BibTeXDatabase#resolveEntry(Key) */ public String nextKey(){ return String.valueOf("jbibtex-" + this.id++); } public BibTeXDatabase getDatabase(){ return this.database; } private void setDatabase(BibTeXDatabase database){ this.database = database; } public List getExceptions(){ return Collections.unmodifiableList(this.exceptions); } public KeyMap getMacros(){ return this.macros; } public void addMacro(String key, String value){ addMacro(new BibTeXString(new Key(key), new StringValue(value, StringValue.Style.BRACED))); } public void addMacro(BibTeXString macro){ this.macros.put(macro.getKey(), macro); } public void removeMacro(String key){ this.macros.remove(new Key(key)); } public void removeMacro(BibTeXString macro){ this.macros.remove(macro.getKey()); } private void handleException(E e, boolean performErrorRecovery) throws E { if(!performErrorRecovery){ throw e; } this.exceptions.add(e); } static private boolean isDigitString(String string){ for(int i = 0; i < string.length(); i++){ char c = string.charAt(i); // Only ASCII digits from '0' to '9' if(c < '0' || c > '9'){ return false; } } return (string.length() > 0); } static private BibTeXDatabase parseBibTeXDatabase(File file) throws ParseException { try { Reader reader = new FileReader(file); try { BibTeXParser parser = new BibTeXParser(); return parser.parse(reader); } finally { reader.close(); } } catch(Exception e){ throw new ParseException(e.getMessage()); } } static private class Field { private Key key = null; private Value value = null; private Field(Key key, Value value){ setKey(key); setValue(value); } public Key getKey(){ return this.key; } private void setKey(Key key){ this.key = key; } public Value getValue(){ return this.value; } private void setValue(Value value){ this.value = value; } } } PARSER_END(BibTeXParser) TOKEN_MGR_DECLS : { void backup(int n){ input_stream.backup(n); } } SKIP : { < ( ~["%", "@"] )* > : DEFAULT } MORE : { "%" : IN_INLINE_COMMENT } SPECIAL_TOKEN : { < INLINE_COMMENT : ( ~["\r", "\n"] )* ("\r" | "\n" | "\r\n")? > : DEFAULT } MORE : { < ~[] > } TOKEN : { < TEXT : ~[] > } SKIP : { "\t" | "\n" | "\f" | "\r" | " " } TOKEN : { < AT : "@" > | < COMMA : "," > | < EQUALS : "=" > | < HASH : "#" > | < LBRACE : "{"> | < LPAREN : "(" > | < QUOTE : "\"" > | < RBRACE : "}" > | < RPAREN : ")" > } TOKEN : { < COMMENT : ( ["c", "C"] ["o", "O"] ["m", "M"] ["m", "M"] ["e", "E"] ["n", "N"] ["t", "T"] ) > | < INCLUDE : ( ["i", "I"] ["n", "N"] ["c", "C"] ["l", "L"] ["u", "U"] ["d", "D"] ["e", "E"] ) > | < PREAMBLE : ( ["p", "P"] ["r", "R"] ["e", "E"] ["a", "A"] ["m", "M"] ["b", "B"] ["l", "L"] ["e", "E"] ) > | < STRING : ( ["s", "S"] ["t", "T"] ["r", "R"] ["i", "I"] ["n", "N"] ["g", "G"] ) > } TOKEN : { // NAME is a subtype (restriction) of IDENTIFIER, therefore it must be declared first < NAME : ( | ) ( | )* > | < IDENTIFIER: ( | ) ( | )* > | < #LETTER_OR_DIGIT: ( | | | ) > | < #ASCII_LETTER : ["a"-"z", "A"-"Z"] > | < #ASCII_DIGIT : ["0"-"9"] > | < #LATIN_LETTER : ["\u00c0"-"\u00d6", "\u00d8"-"\u00f6", "\u00f8"-"\u00ff"] > | < #UNICODE_LETTER : ["\u0100"-"\u1fff", "\u20ac", "\u2122"] > | < #NAME_START_SYMBOL: [".", "_"] > | < #NAME_CONTINUATION_SYMBOL: ["+", "-", ".", ":", "_"] > | < #IDENTIFIER_START_SYMBOL : ["(", "-", ".", "[", "_"] > | < #IDENTIFIER_CONTINUATION_SYMBOL : ["!", "#", "$", "%", "&", "'", "(", ")", "*", "+", "-", ".", "/", ":", ";", "<", ">", "?", "[", "\\", "]", "^", "_", "|", "~" ] > } private BibTeXDatabase Database(boolean performErrorRecovery) : { BibTeXDatabase database = new BibTeXDatabase(); BibTeXObject object = null; } { { setDatabase(database); this.exceptions.clear(); } ( try { | object = Object() { database.addObject(object); } } catch(TokenMgrException tme){ handleException(tme, performErrorRecovery); SkipTo("@"); } catch(ParseException pe){ handleException(pe, performErrorRecovery); SkipTo("@"); } )* { resolveCrossReferences(); setDatabase(null); return database; } } private BibTeXObject Object() : { BibTeXObject object; } { ( LOOKAHEAD( ) object = Comment() | LOOKAHEAD( ) object = Include() | LOOKAHEAD( ) object = Preamble() | LOOKAHEAD( ) object = String() | object = Entry() ) { return object; } } private BibTeXComment Comment() : { String string; } { ( string = Literal(1, "}") ) { return new BibTeXComment(new StringValue(string, StringValue.Style.BRACED)); } } private BibTeXInclude Include(): { String string; } { ( string = Literal(1, "}") ) { BibTeXDatabase database = parseBibTeXDatabase(new File(string)); return new BibTeXInclude(new StringValue(string, StringValue.Style.BRACED), database); } } private BibTeXPreamble Preamble() : { Value value; } { ( value = Value() | value = Value() ) { return new BibTeXPreamble(value); } } private BibTeXString String() : { Field field; } { ( field = Assignment() | field = Assignment() ) { return new BibTeXString(field.getKey(), field.getValue()); } } private BibTeXEntry Entry() : { Token type; Token key = null; List fields; } { type = ( ( LOOKAHEAD( Identifier() ) key = Identifier() { fields = Collections.emptyList(); } | LOOKAHEAD( Identifier() ) key = Identifier() fields = AssignmentList() ( )? | ( )? fields = AssignmentList() ( )? ) | ( LOOKAHEAD( Identifier() ) key = Identifier() { fields = Collections.emptyList(); } | LOOKAHEAD( Identifier() ) key = Identifier() fields = AssignmentList() ( )? | ( )? fields = AssignmentList() ( )? ) ) { BibTeXEntry entry = new BibTeXEntry(new Key(type.image), key != null ? new Key(key.image) : new Key(nextKey())); for(Field field : fields){ entry.addField(field.getKey(), field.getValue()); } return entry; } } private Field Assignment() : { Key key; Value value; } { key = Key() value = Value() { return new Field(key, value); } } private List AssignmentList() : { List fields = new ArrayList(); Field field; } { field = Assignment() { fields.add(field); } ( LOOKAHEAD( Name() ) field = Assignment() { fields.add(field); } )* { return fields; } } private Token Name() : { Token token; } { ( token = | token = | token = | token = | token = ) { return token; } } private Token Identifier() : { Token token; } { ( token = | token = | token = | token = | token = | token = ) { return token; } } private Key Key() : { Token token; } { token = Name() { return new Key(token.image); } } private Value Value() : { Value left; Value right = null; } { left = SimpleValue() ( right = Value() )? { if(right != null){ return new ConcateValue(left, right); } return left; } } private Value SimpleValue() : { String string; Token token; Value result; } { ( string = Literal(1, "}") { result = new StringValue(string, StringValue.Style.BRACED); } | string = Literal(0, "\"") { result = new StringValue(string, StringValue.Style.QUOTED); } | token = Identifier() { boolean digits = isDigitString(token.image); if(!digits){ KeyValue value = new KeyValue(token.image); Key key = value.toKey(); BibTeXString object = getDatabase().resolveString(key); if(object == null){ KeyMap macros = getMacros(); object = macros.get(key); } checkStringResolution(key, object); result = new ReferenceValue(value, object); } else { result = new DigitStringValue(token.image); } } ) { return result; } } JAVACODE private void SkipTo(String symbol) throws ParseException { if(symbol == null){ throw new IllegalArgumentException(); } SetState(IN_LITERAL); for(Token prevToken = null, token = getNextToken(); true; prevToken = token, token = getNextToken()){ if(token.kind == BibTeXParserConstants.EOF){ throw new ParseException("Reached unexpected EOF token"); } // End if if(symbol.equals(token.image)){ break; } } token_source.backup(symbol.length()); SetState(DEFAULT); } JAVACODE private String Literal(int braceLevel, String delimiter) throws ParseException { StringBuilder sb = new StringBuilder(64); if(braceLevel < 0){ throw new IllegalArgumentException(); } SetState(IN_LITERAL); for(Token prevToken = null, token = getNextToken(); true; prevToken = token, token = getNextToken()){ if(token.kind == BibTeXParserConstants.EOF){ throw new ParseException("Reached unexpected EOF token"); } boolean escaped = (prevToken != null && "\\".equals(prevToken.image)); if(!escaped){ if("{".equals(token.image)){ braceLevel++; } else if("}".equals(token.image)){ braceLevel--; } } // End if if(delimiter.equals(token.image) && braceLevel == 0){ break; } sb.append(token.image); } SetState(DEFAULT); return StringUtil.removeIndent(sb.toString()); } /** * JavaCC hack for doing lexical state transitions syntactically * * http://www.engr.mun.ca/~theo/JavaCC-FAQ/SetState.txt */ JAVACODE private void SetState(int state) { if (state != token_source.curLexState) { Token root = new Token(), last=root; root.next = null; // First, we build a list of tokens to push back, in backwards order while (token.next != null) { Token t = token; // Find the token whose token.next is the last in the chain while (t.next != null && t.next.next != null) t = t.next; // put it at the end of the new chain last.next = t.next; last = t.next; // If there are special tokens, these go before the regular tokens, // so we want to push them back onto the input stream in the order // we find them along the specialToken chain. if (t.next.specialToken != null) { Token tt=t.next.specialToken; while (tt != null) { last.next = tt; last = tt; tt.next = null; tt = tt.specialToken; } } t.next = null; }; while (root.next != null) { token_source.backup(root.next.image.length()); root.next = root.next.next; } jj_ntk = -1; token_source.SwitchTo(state); } } jbibtex-1.0.20/src/main/javacc/latex.jj000066400000000000000000000070531421433304700176330ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ options { GENERATE_BOILERPLATE = false; JAVA_TEMPLATE_TYPE = "modern"; JDK_VERSION = "1.8"; KEEP_LINE_COLUMN = true; STATIC = false; } PARSER_BEGIN(LaTeXParser) package org.jbibtex; import java.io.Reader; import java.io.StringReader; import java.util.ArrayList; import java.util.List; public class LaTeXParser { public LaTeXParser() throws ParseException { this(""); } /** * @see LaTeXParser#parse(Reader) */ public List parse(String string) throws ParseException, TokenMgrException { return parse(new StringReader(string)); } /** * @throws TokenMgrException If the input contains invalid characters * * @see CharacterFilterReader */ public List parse(Reader reader) throws ParseException, TokenMgrException { ReInit(new StreamProvider(reader)); return LaTeX(); } } PARSER_END(LaTeXParser) TOKEN : { < BACKSLASH : "\\" > | < LBRACE : "{" > | < RBRACE : "}" > } TOKEN : { < WHITESPACE : ["\t", "\n", " "] > | < SPECIAL : ["#", "$", "%", "&", "^", "_", "~"] > | < NON_SPECIAL : ["!"-"\"", "\'"-"/", ":"-"@", "[", "]", "`", "|", "\u007f", "\u2013", "\u2014", "\u2018", "\u2019", "\u201c", "\u201d", "\u2212"] > } TOKEN : { < ASCII_LETTER : ["a"-"z", "A"-"Z"] > | < ASCII_DIGIT : ["0"-"9"] > | < LATIN_SUPPLEMENT : ["\u00a0"-"\u00ff"] > | < UNICODE_LETTER : ["\u0100"-"\u1fff", "\u20ac", "\u2122"] > } private List LaTeX() : { List objects; } { objects = ObjectList() { return objects; } } private List ObjectList() : { List objects = new ArrayList(); LaTeXObject object; } { ( object = Object() { objects.add(object); } )* { return objects; } } private LaTeXObject Object() : { LaTeXObject object; } { ( object = Command() | object = Group() | object = String() ) { return object; } } private LaTeXCommand Command() : { String name; } { ( name = Name() Whitespace() | name = SpecialCharacter() | name = NonSpecialCharacter() ) { return new LaTeXCommand(name); } } private String Name() : { StringBuilder sb = new StringBuilder(16); Token token; } { token = { sb.append(token.image); } ( LOOKAHEAD( ) token = { sb.append(token.image); } )* { return sb.toString(); } } private void Whitespace() : {} { ( LOOKAHEAD( WhitespaceCharacter() ) WhitespaceCharacter() )* } private String WhitespaceCharacter() : { Token token; } { token = { return token.image; } } private String SpecialCharacter() : { Token token; } { ( token = | token = | token = | token = ) { return token.image; } } private String NonSpecialCharacter() : { Token token; } { token = { return token.image; } } private LaTeXGroup Group() : { List objects; } { objects = ObjectList() { return new LaTeXGroup(objects); } } private LaTeXString String() : { StringBuilder sb = new StringBuilder(64); String string; } { string = TextCharacter() { sb.append(string); } ( LOOKAHEAD( TextCharacter() ) string = TextCharacter() { sb.append(string); } )* { return new LaTeXString(sb.toString()); } } private String TextCharacter() : { Token token; } { ( token = | token = | token = | token = | token = | token = ) { return token.image; } }jbibtex-1.0.20/src/test/000077500000000000000000000000001421433304700147705ustar00rootroot00000000000000jbibtex-1.0.20/src/test/java/000077500000000000000000000000001421433304700157115ustar00rootroot00000000000000jbibtex-1.0.20/src/test/java/org/000077500000000000000000000000001421433304700165005ustar00rootroot00000000000000jbibtex-1.0.20/src/test/java/org/jbibtex/000077500000000000000000000000001421433304700201275ustar00rootroot00000000000000jbibtex-1.0.20/src/test/java/org/jbibtex/BibTeXParserTest.java000066400000000000000000000140621421433304700241270ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; import java.io.InputStream; import java.io.InputStreamReader; import java.io.Reader; import java.util.Collection; import java.util.List; import java.util.Map; import org.junit.Test; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; public class BibTeXParserTest { @Test public void parseBibtex() throws Exception { BibTeXParser parser = new BibTeXParser(); BibTeXDatabase database = parseFully(parser, "/bibtex.bib"); ensureSerializability(database); ensureJsonSerializability(database); Map entries = database.getEntries(); assertNotNull(entries.get(new Key("first"))); assertNotNull(entries.get(new Key("last"))); List exceptions = parser.getExceptions(); assertEquals(1, exceptions.size()); } @Test public void parseJava() throws Exception { BibTeXParser parser = new BibTeXParser(); parser.addMacro("ack-bnb", "Barbara N. Beeton"); parser.addMacro("ack-bs", "Bruce Schneier"); parser.addMacro("ack-kl", "Ken Lunde"); BibTeXDatabase database = parse(parser, "/java.bib"); ensureSerializability(database); ensureJsonSerializability(database); List objects = database.getObjects(); assertEquals(4498, objects.size()); Map strings = database.getStrings(); assertEquals(467, strings.size()); Map entries = database.getEntries(); assertEquals(4030, entries.size()); Collection values = entries.values(); assertEquals(1890, countType(values, BibTeXEntry.TYPE_ARTICLE)); assertEquals(1675, countType(values, BibTeXEntry.TYPE_BOOK)); assertEquals(232, countType(values, BibTeXEntry.TYPE_INPROCEEDINGS)); assertEquals(8, countType(values, BibTeXEntry.TYPE_MANUAL)); assertEquals(13, countType(values, BibTeXEntry.TYPE_MASTERSTHESIS)); assertEquals(62, countType(values, BibTeXEntry.TYPE_MISC)); assertEquals(6, countType(values, new Key("periodical"))); assertEquals(1, countType(values, BibTeXEntry.TYPE_PHDTHESIS)); assertEquals(114, countType(values, BibTeXEntry.TYPE_PROCEEDINGS)); assertEquals(20, countType(values, BibTeXEntry.TYPE_TECHREPORT)); assertEquals(9, countType(values, BibTeXEntry.TYPE_UNPUBLISHED)); } @Test public void parseMendeley() throws Exception { BibTeXParser parser = new BibTeXParser(); BibTeXDatabase database = parse(parser, "/mendeley.bib"); ensureSerializability(database); ensureJsonSerializability(database); } @Test public void parseUnix() throws Exception { BibTeXParser parser = new BibTeXParser(); parser.addMacro("ack-hk", "Hanna K{\\\"o}lodziejska"); parser.addMacro("ack-kl", "Ken Lunde"); parser.addMacro("ack-kr", "Karin Remington"); parser.addMacro("ack-pb", "Preston Briggs"); parser.addMacro("ack-rfb", "Ronald F. Boisvert"); BibTeXDatabase database = parse(parser, "/unix.bib"); ensureSerializability(database); ensureJsonSerializability(database); List objects = database.getObjects(); assertEquals(2632, objects.size()); Map strings = database.getStrings(); assertEquals(358, strings.size()); Map entries = database.getEntries(); assertEquals(2273, entries.size()); Collection values = entries.values(); assertEquals(645, countType(values, BibTeXEntry.TYPE_ARTICLE)); assertEquals(1447, countType(values, BibTeXEntry.TYPE_BOOK)); assertEquals(6, countType(values, BibTeXEntry.TYPE_INCOLLECTION)); assertEquals(48, countType(values, BibTeXEntry.TYPE_INPROCEEDINGS)); assertEquals(31, countType(values, BibTeXEntry.TYPE_MANUAL)); assertEquals(12, countType(values, BibTeXEntry.TYPE_MASTERSTHESIS)); assertEquals(7, countType(values, BibTeXEntry.TYPE_MISC)); assertEquals(6, countType(values, new Key("periodical"))); assertEquals(2, countType(values, BibTeXEntry.TYPE_PHDTHESIS)); assertEquals(34, countType(values, BibTeXEntry.TYPE_PROCEEDINGS)); assertEquals(33, countType(values, BibTeXEntry.TYPE_TECHREPORT)); assertEquals(2, countType(values, BibTeXEntry.TYPE_UNPUBLISHED)); } @Test public void parseWiley() throws Exception { BibTeXParser parser = new BibTeXParser(); BibTeXDatabase database = parse(parser, "/wiley.bib"); ensureSerializability(database); ensureJsonSerializability(database); } @Test public void parseZotero() throws Exception { BibTeXParser parser = new BibTeXParser(); BibTeXDatabase database = parse(parser, "/zotero.bib"); ensureSerializability(database); ensureJsonSerializability(database); } static private void ensureSerializability(BibTeXDatabase database){ BibTeXDatabase clonedDatabase; try { clonedDatabase = SerializationUtil.clone(database); } catch(Exception e){ throw new AssertionError(); } assertEquals((database.getObjects()).size(), (clonedDatabase.getObjects()).size()); } static private void ensureJsonSerializability(BibTeXDatabase database){ BibTeXDatabase clonedDatabase; try { clonedDatabase = SerializationUtil.jsonClone(database); } catch(Exception e){ throw new AssertionError(); } assertEquals((database.getObjects()).size(), (clonedDatabase.getObjects()).size()); } static private BibTeXDatabase parse(BibTeXParser parser, String path) throws Exception { InputStream is = (BibTeXParserTest.class).getResourceAsStream(path); try { Reader reader = new InputStreamReader(is, "US-ASCII"); try { return parser.parse(reader); } finally { reader.close(); } } finally { is.close(); } } static private BibTeXDatabase parseFully(BibTeXParser parser, String path) throws Exception { InputStream is = (BibTeXParserTest.class).getResourceAsStream(path); try { Reader reader = new InputStreamReader(is, "US-ASCII"); try { return parser.parseFully(reader); } finally { reader.close(); } } finally { is.close(); } } static private int countType(Collection entries, Key type){ int count = 0; for(BibTeXEntry entry : entries){ if((entry.getType()).equals(type)){ count++; } } return count; } }jbibtex-1.0.20/src/test/java/org/jbibtex/CharacterFilterReaderTest.java000066400000000000000000000017271421433304700260260ustar00rootroot00000000000000/* * Copyright (c) 2014 University of Tartu */ package org.jbibtex; import java.io.CharArrayReader; import java.io.IOException; import java.io.Reader; import org.junit.Test; import static org.junit.Assert.assertEquals; public class CharacterFilterReaderTest { @Test public void readCharacter() throws IOException { Reader reader = new CharacterFilterReader(new CharArrayReader(buffer)); assertEquals('a', reader.read()); assertEquals('1', reader.read()); // EOF assertEquals(-1, reader.read()); reader.close(); } @Test public void readCharacterArray() throws IOException { Reader reader = new CharacterFilterReader(new CharArrayReader(buffer)); char[] result = new char[512]; int count = reader.read(result); assertEquals(2, count); assertEquals('a', result[0]); assertEquals('1', result[1]); // EOF assertEquals(-1, reader.read()); reader.close(); } private static final char[] buffer = {(char)0, 'a', (char)0, '1', (char)0}; }jbibtex-1.0.20/src/test/java/org/jbibtex/KeyMapTest.java000066400000000000000000000007731421433304700230270ustar00rootroot00000000000000/* * Copyright (c) 2014 University of Tartu */ package org.jbibtex; import org.junit.Test; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; public class KeyMapTest { @Test public void putAndRemove(){ KeyMap map = new KeyMap<>(); assertTrue(map.putIfMissing(new Key("Test"), null)); assertFalse(map.putIfMissing(new Key("test"), null)); assertTrue(map.removeIfPresent(new Key("test"))); assertFalse(map.removeIfPresent(new Key("Test"))); } }jbibtex-1.0.20/src/test/java/org/jbibtex/LaTeXPrinterTest.java000066400000000000000000000032111421433304700241500ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; import java.io.Reader; import java.io.StringReader; import java.util.List; import org.junit.Test; import static org.junit.Assert.assertEquals; public class LaTeXPrinterTest { @Test public void printDash() throws Exception { assertEquals("\u2013", print("--")); assertEquals("\u2013", print("\\endash")); assertEquals("\u2014", print("---")); assertEquals("\u2014", print("\\emdash")); } @Test public void printQuote() throws Exception { assertEquals("\u201c", print("``")); assertEquals("\u2018", print("`")); assertEquals("\u201d", print("''")); assertEquals("\u2019", print("'")); } @Test public void printGreek() throws Exception { assertEquals("\u03b1", print("\\alpha")); assertEquals("\u03b2", print("\\beta")); assertEquals("\u03b3", print("\\gamma")); } @Test public void printAccent() throws Exception { String string = "H\u00e4id p\u00fchi!"; assertEquals(string, print("H\\\"aid p\\\"uhi!")); assertEquals(string, print("H{\\\"a}id p{\\\"u}hi!")); assertEquals(string, print("H\\\"{a}id p\\\"{u}hi!")); } @Test public void printToday() throws Exception { assertEquals(LaTeXPrinter.today(), print("\\today")); } private String print(String string) throws Exception { LaTeXPrinter printer = new LaTeXPrinter(); List objects = parse(string); return printer.print(objects); } private List parse(String string) throws Exception { LaTeXParser parser = new LaTeXParser(); Reader reader = new StringReader(string); try { return parser.parse(reader); } finally { reader.close(); } } }jbibtex-1.0.20/src/test/java/org/jbibtex/SerializationUtil.java000066400000000000000000000024321421433304700244460ustar00rootroot00000000000000/* * Copyright (c) 2018 Villu Ruusmann */ package org.jbibtex; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.io.Serializable; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.jackson.databind.ObjectMapper; public class SerializationUtil { private SerializationUtil(){ } static public E clone(E object) throws IOException { ByteArrayOutputStream os = new ByteArrayOutputStream(); ByteArrayInputStream is; ObjectOutputStream oos = new ObjectOutputStream(os); try { oos.writeObject(object); oos.flush(); is = new ByteArrayInputStream(os.toByteArray()); } finally { oos.close(); } ObjectInputStream ois = new ObjectInputStream(is); try { return (E)ois.readObject(); } catch(ClassNotFoundException cnfe){ throw new RuntimeException(cnfe); } finally { ois.close(); } } static public E jsonClone(E object) throws IOException, JsonProcessingException { ObjectMapper objectMapper = new ObjectMapper(); String string = objectMapper.writeValueAsString(object); return (E)objectMapper.readValue(string, object.getClass()); } }jbibtex-1.0.20/src/test/java/org/jbibtex/StringUtilTest.java000066400000000000000000000012041421433304700237330ustar00rootroot00000000000000/* * Copyright (c) 2012 University of Tartu */ package org.jbibtex; import org.junit.Test; import static org.junit.Assert.assertEquals; public class StringUtilTest { @Test public void addIndent(){ String string = "First\nSecond\nThird"; assertEquals("First\n Second\n Third", StringUtil.addIndent(string, " ")); assertEquals("First\n\tSecond\n\tThird", StringUtil.addIndent(string, "\t")); } @Test public void removeIndent(){ String string = "First\nSecond\nThird"; assertEquals(string, StringUtil.removeIndent("First\n Second\n Third")); assertEquals(string, StringUtil.removeIndent("First\n\tSecond\n\tThird")); } }jbibtex-1.0.20/src/test/resources/000077500000000000000000000000001421433304700170025ustar00rootroot00000000000000jbibtex-1.0.20/src/test/resources/bibtex.bib000066400000000000000000000005211421433304700207330ustar00rootroot00000000000000% No content @misc {first, } % No identifier @misc { key = "Value" } % Dot as identifier @misc {., } % Leading comma @misc {, key = "Value" } % Leading comma, trailing comma @misc {, key = "Value", } % Trailing comma @misc { key = "Value", } % No identifier, no content - invalid entry @misc { } @misc {last, key = "Value" } jbibtex-1.0.20/src/test/resources/java.bib000066400000000000000000145147421421433304700204230ustar00rootroot00000000000000%%% -*-BibTeX-*- %%% ==================================================================== %%% BibTeX-file{ %%% author = "Nelson H. F. Beebe", %%% version = "3.216", %%% date = "15 March 2012", %%% time = "08:39:27 MST", %%% filename = "java.bib", %%% address = "University of Utah %%% Department of Mathematics, 110 LCB %%% 155 S 1400 E RM 233 %%% Salt Lake City, UT 84112-0090 %%% USA", %%% telephone = "+1 801 581 5254", %%% FAX = "+1 801 581 4148", %%% URL = "http://www.math.utah.edu/~beebe", %%% checksum = "06652 85989 309336 3316194", %%% email = "beebe at math.utah.edu, beebe at acm.org, %%% beebe at computer.org (Internet)", %%% codetable = "ISO/ASCII", %%% keywords = "bibliography; BibTeX; HotJava; HotJava; %%% HotJavaBean; HTML; Java; Java3D; JavaBean; %%% JavaChip; JavaCUP; JavaDev; JavaDump; %%% JavaEngine; JavaLanche; JavaLex; JavaMan; %%% JavaManagement; JavaOne; JavaOS; JavaPVM; %%% JavaQ; JavaScript; JavaSoft; JavaSpace; %%% JavaStation; JavaStations; JavaStudio; %%% JavaTalk; JBuilder; JChat; JClass; Jcon; %%% JDKs; JetAssist; JetForm; JFactory; JLex; %%% JPython; JRes; JSafe; JScape; JScript; %%% JScriptTest; JSpace; JTable; JTAPI; KJPrice; %%% MacJava; MetaJava; NexusJava; PersonalJava; %%% picoJava; PJAmi; PowerJ; SpecJava; TclJava; %%% TowerJ; World Wide Web; WWW", %%% license = "public domain", %%% supported = "yes", %%% docstring = "This bibliography records books and other %%% publications about the Java programming %%% language, and related software, for the years %%% 1995--1999. The companion bibliography, %%% java2000.bib, covers later years. %%% %%% At version 3.216, the year coverage looked %%% like this: %%% %%% 1995 ( 255) 1997 (1154) 1999 ( 396) %%% 1996 (1068) 1998 ( 717) %%% 19xx ( 440) %%% %%% Article: 1890 %%% Book: 1675 %%% InProceedings: 232 %%% Manual: 8 %%% MastersThesis: 13 %%% Misc: 62 %%% Periodical: 6 %%% PhdThesis: 1 %%% Proceedings: 114 %%% TechReport: 20 %%% Unpublished: 9 %%% %%% Total entries: 4030 %%% %%% Further information on Java development and %%% the HotJava WorldWideWeb browser can be %%% found at the URL http://java.sun.com/. %%% Netscape versions 2.03-beta or later %%% support Java as well. %%% %%% A Java applet index and repository is %%% available at http://www.gamelan.com/. %%% %%% Visix has extended their %%% platform-independent window systems support %%% to include Java; details are at %%% http://www.visix.com/ %%% %%% A tutorial on Java is available at %%% http://java.sun.com/tutorial, a white paper %%% on the Java language is at %%% http://java.sun.com/1.0alpha3/doc/overview/ %%% java/index.html, and a white paper on the %%% HotJava browser is at http://java.sun.com/ %%% 1.0alpha3/doc/overview/hotjava/index.html. %%% %%% A status report on Java security problems %%% is available at http://java.sun.com/sfaq; %%% a good discussion of these issues can be %%% found in the reference Hamilton:1996:JSN %%% below. %%% %%% John December maintains a Java bibliography %%% that includes press releases and online %%% references at http://www.december.com/john// %%% works/java/bib.html; a snapshot of that %%% collection was incorporated in this %%% bibliography on 17-Dec-1995. %%% %%% The Web site for Java World magazine is at %%% http://www.javaworld.com/; many entries in %%% this bibliography were found in resources %%% there. %%% %%% An interesting press release detailing %%% plans about Java-on-a-chip is available %%% at http://www.sun.com:80/sparc/newsreleases/nr95-042.html. %%% %%% LINPACK benchmark results for Java on a %%% number of different machines have recently %%% been offered at %%% http://www.netlib.org/benchmark/linpackjava/. %%% If you use a Java-aware browser to visit %%% that URL, you can run the benchmark on your %%% own machine, and report the results back to %%% the LINPACK developers. %%% %%% Other Java sites on the Internet include %%% (see entry DeRoest:1996:PHP below): %%% %%% Java FAQS: %%% http://www-net.com/java/faq %%% http://lightyear.ncsa.uiuc.edu/~srp/java/javabooks.html %%% http://www.digitalfocus.com/faq/ %%% http://www.afu.com/javafaq.html %%% %%% JavaScript handbook: %%% http://home.netscape.com/eng/mozilla/2.0/handbook/javascript/index.html %%% %%% Java tutorials: %%% http://www.neca.com/~vmis/java.html %%% http://sunsite.unc.edu/javafaq/javafaq.html %%% http://www.phrantic.com/scoop/onjava.html %%% %%% JavaScript tutorials: %%% http://www.freqgrafx.com/411/tutorial.html %%% http://ourworld.compuserve.com/homepages/voodoo/script.html %%% %%% Java and porting projects: %%% http://www.javasoft.com/ %%% ftp://ftp4.netscape.com/pub/MacJava %%% http://java.blackdown.org/java-linux.html %%% http://www.osf.org/mall/web/javaport.htm %%% http://www.lls.se/~matjo/PJAmi/PJAmi.html %%% http://ncc.hursley.ibm.com/javainfo/ (IBM's %%% official Java home page) %%% http://www.hp.com/go/JAVA (Hewlett--Packard' %%% official Java home page) %%% %%% Java books in languages other than English: %%% http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html %%% http://wwwiz.com/books/european.html %%% %%% Java books at Amazon bookstore (warning: %%% also contains many entries for books about %%% the island of Java in Indonesia): %%% http://www.wholesaleproducts.com/computer-javascript.html %%% http://www.wholesaleproducts.com/computer-java.html %%% %%% This bibliography was initially built from %%% searches in the OCLC Content1st database. %%% Additions were then made from all of the %%% bibliographies in the TeX User Group %%% collection, from bibliographies in the %%% author's personal files, from the IEEE %%% INSPEC CD-ROM database (1995--Sept 1996), %%% from the Compendex database, from the %%% UnCover database, and from the OCLC %%% BooksInPrint database. %%% %%% Numerous errors in the sources noted above %%% have been corrected. Spelling has been %%% verified with the UNIX spell and GNU ispell %%% programs using the exception dictionary %%% stored in the companion file with extension %%% .sok. %%% %%% BibTeX citation tags are uniformly chosen as %%% name:year:abbrev, where name is the family %%% name of the first author or editor, year is a %%% 4-digit number, and abbrev is a 3-letter %%% condensation of important title %%% words. Citation tags were automatically %%% generated by software developed for the %%% BibNet Project. %%% %%% In this bibliography, entries are sorted %%% first by ascending year, and within each %%% year, alphabetically by author or editor, and %%% then, if necessary, by the 3-letter %%% abbreviation at the end of the BibTeX %%% citation tag, using the bibsort -byyear %%% utility. Year order has been chosen to make %%% it easier to identify the most recent work. %%% %%% The checksum field above contains a CRC-16 %%% checksum as the first value, followed by the %%% equivalent of the standard UNIX wc (word %%% count) utility output of lines, words, and %%% characters. This is produced by Robert %%% Solovay's checksum utility.", %%% } %%% ==================================================================== @Preamble{"\input bibnames.sty " # "\input path.sty " # "\ifx \undefined \circled \def \circled #1{(#1)}\fi" # "\ifx \undefined \reg \def \reg {\circled{R}}\fi" # "\ifx \undefined \TM \def \TM {${}^{\sc TM}$} \fi" # "\hyphenation{ Aero-space Gur-e-wich Horst-mann ROAST-ER Rich-ard Sep-tem-ber data-bases roast-er }" } %%% ==================================================================== %%% Acknowledgement abbreviations: @String{ack-jd = "John December, December Communications, e-mail: \path|john@december.com|, URL: \path|http://www.december.com/john/index.html|"} @String{ack-nhfb = "Nelson H. F. Beebe, University of Utah, Department of Mathematics, 110 LCB, 155 S 1400 E RM 233, Salt Lake City, UT 84112-0090, USA, Tel: +1 801 581 5254, FAX: +1 801 581 4148, e-mail: \path|beebe@math.utah.edu|, \path|beebe@acm.org|, \path|beebe@computer.org| (Internet), URL: \path|http://www.math.utah.edu/~beebe/|"} %%% ==================================================================== %%% Institution abbreviations: @String{inst-CSC = "Center for Scientific Computing, Department of Mathematics, University of Utah"} @String{inst-CSC:adr = "Salt Lake City, UT 84112, USA"} @String{inst-UTK = "University of Tennessee, Knoxville"} @String{inst-UTK:adr = "Knoxville, TN 37996, USA"} %%% ==================================================================== %%% Journal abbreviations: @String{j-ADA-USER-J = "Ada User Journal"} @String{j-AEROSPACE-AMERICA = "Aerospace America"} @String{j-AIXTRA = "/{AIXtra}: {IBM}'s Magazine for {AIX} Professionals"} @String{j-AM-PROG = "American Programmer"} @String{j-AMER-LIBRARIES = "American Libraries"} @String{j-AMERICAS-NETWORK = "America's network: technology for the information highway"} @String{j-BANKING-TECH = "Banking Technology"} @String{j-BIOINFORMATICS = "Bioinformatics"} @String{j-BULL-ASSOC-SUISE-ELECTRICIENS = "Bulletin de l'Association Suisse des Electriciens"} @String{j-BULL-SCHWEIZ-ELEKTROTECH = "Bulletin des Schweizerischen Elektrotechnischen Vereins and des Verbandes Schweizerischer Elektrizitaetswerke"} @String{j-BUSINESS-INFO-REV = "Business Information Review"} @String{j-BUSINESS-MARKETING = "Business Marketing"} @String{j-BUSINESS-WEEK = "Business Week"} @String{j-BYTE = "BYTE Magazine"} @String{j-C-PLUS-PLUS-REPORT = "C++ Report"} @String{j-CACM = "Communications of the ACM"} @String{j-CCCUJ = "C/C++ Users Journal"} @String{j-CD-ROM-PROF = "CD-ROM Professional"} @String{j-CG-WORLD = "Computer Graphics World"} @String{j-CHRON-HIGHER-ED = "The Chronicle of Higher Education"} @String{j-CISCO-WORLD = "Cisco World: The Independent Journal for Internetworking Professionals"} @String{j-CLIENT-SERVER-ECONOMICS-LETT = "Client\slash Server Economics Letter"} @String{j-CLNET = "c$\|$net central"} @String{j-CMCM = "Computer-Mediated Communication Magazine"} @String{j-COMMUN-NEWS = "Communications news (Geneva, IL)"} @String{j-COMP-ARCH-NEWS = "ACM SIGARCH Computer Architecture News"} @String{j-COMP-DESIGN = "Computer Design"} @String{j-COMP-ECONOMICS-REP = "Computer Economics Report (International Edition)"} @String{j-COMP-EDU = "Computers and Education"} @String{j-COMP-GRAPHICS = "Computer Graphics"} @String{j-COMP-LANGS = "Computer Languages"} @String{j-COMP-NET-ISDN = "Computer Networks and ISDN Systems"} @String{j-COMP-PHYS-COMM = "Computer Physics Communications"} @String{j-COMP-PHYSICS = "Computers in Physics"} @String{j-COMP-SURV = "ACM Computing Surveys"} @String{j-COMP-SYS = "Computing Systems"} @String{j-COMPUTER = "Computer"} @String{j-COMPUTER-SHOPPER = "Computer Shopper"} @String{j-COMPUTERS-AND-GRAPHICS = "Computers and Graphics"} @String{j-COMPUTERWORLD = "Computerworld"} @String{j-COMPUTERWORLD-HONG-KONG = "Computerworld Hong Kong"} @String{j-COMPUTING = "Computing"} @String{j-CONSPECTUS = "Conspectus"} @String{j-CONTRACT-PROFESSIONAL = "Contract Professional"} @String{j-CPE = "Concurrency: Prac\-tice and Experience"} @String{j-DATA-COMMUNICATIONS = "Data communications"} @String{j-DATABASE-DIRECTORY = "Database Directory: the buyer's guide to database products and services"} @String{j-DATABASES-J = "Databases Journal"} @String{j-DATAMATION = "Datamation"} @String{j-DBMS = "DBMS"} @String{j-DDDU = "Dr. Dobb's Developer Update"} @String{j-DDJ = "Dr. Dobb's Journal of Software Tools"} @String{j-DIGITAL-MEDIA = "Digital Media"} @String{j-DIGITAL-NEWS-REVIEW = "Digital News and Review"} @String{j-DIGITAL-SYS-REP = "Digital Systems Report"} @String{j-EDPACS = "EDPACS"} @String{j-EDUCOM-REV = "Educom review"} @String{j-ELECTRONIC-DESIGN = "Electronic Design"} @String{j-ELECTRONIC-MUSICIAN = "Electronic Musician"} @String{j-ELECTRONIC-PRODUCTS = "Electronic Products"} @String{j-ELECTRONIK = "Elektronik"} @String{j-ELETTRONICA-OGGI = "Elettronica Oggi"} @String{j-EMBED-SYS-PROG = "Embedded Systems Programming"} @String{j-ENEWS = "Electronic News"} @String{j-EXE = ".EXE: the software developers' magazine"} @String{j-FIRST-MONDAY = "First Monday"} @String{j-FORTH-DIMENSIONS = "Forth Dimensions"} @String{j-FORTUNE = "Fortune"} @String{j-FUT-GEN-COMP-SYS = "Future Generation Computer Systems"} @String{j-GRAPHIC-ARTS-MONTHLY = "Graphic arts monthly: the magazine of the printing industry"} @String{j-HP-CHRONICLE = "HP Chronicle"} @String{j-I-S-ANALYZER = "I/S Analyzer"} @String{j-IBM-SYS-J = "IBM Systems Journal"} @String{j-IDG-INT-NEWS-SERVICE = "IDG International News Service"} @String{j-IEE-REV = "IEE Review"} @String{j-IEEE-APM = "IEEE Antennas and Propagation Magazine"} @String{j-IEEE-CGA = "IEEE Computer Graphics and Applications"} @String{j-IEEE-COMPUT-SCI-ENG = "IEEE Computational Science \& Engineering"} @String{j-IEEE-CONCURR = "IEEE Concurrency"} @String{j-IEEE-EXPERT = "IEEE expert: intelligent systems and their applications"} @String{j-IEEE-INT-SYMP-HIGH-PERF-DIST-COMP-PROC = "IEEE International Symposium on High Performance Distributed Computing, Proceedings"} @String{j-IEEE-MICRO = "IEEE Micro"} @String{j-IEEE-MULTIMEDIA = "IEEE MultiMedia"} @String{j-IEEE-PAR-DIST-TECH = "IEEE parallel and distributed technology: systems and applications"} @String{j-IEEE-SOFTWARE = "IEEE Software"} @String{j-IEEE-SPECTRUM = "IEEE Spectrum"} @String{j-IEEE-TRANS-KNOWL-DATA-ENG = "IEEE Transactions on Knowledge and Data Engineering"} @String{j-IEEE-TRANS-VIS-COMPUT-GRAPH = "IEEE transactions on visualization and computer graphics"} @String{j-IJHPCA = "The International Journal of High Performance Computing Applications"} @String{j-IJQC = "International Journal of Quantum Chemistry"} @String{j-IM-INFORMATION-MANAGEMENT = "IM Information Management"} @String{j-IMAGING-MAGAZINE = "Imaging Magazine"} @String{j-INC = "Inc"} @String{j-IND-WEEK = "Industry Week"} @String{j-INF-INTELL-ONLINE-LIB-MICROCOMPUT = "Information Intelligence, Online Libraries, and Microcomputers"} @String{j-INFO-PROC-LETT = "Information Processing Letters"} @String{j-INFORMATIE = "Informatie"} @String{j-INFORMATION-WEEK = "Information Week"} @String{j-INFOWORLD = "InfoWorld"} @String{j-INT-GEOSCIENCE-REMOTE-SENSING-SYMPOSIUM = "International Geoscience and Remote Sensing Symposium (IGARSS)"} @String{j-INT-J-INFO-TECH = "International Journal of Information Technology"} @String{j-INT-J-PARALLEL-PROG = "International Journal of Parallel Programming"} @String{j-INTERAGE = "InteractiveAge"} @String{j-INTERNATIONAL-DATA-CORP-RESEARCH = "International Data Corp. (research)"} @String{j-INTERNET-WORLD = "Internet World"} @String{j-INTERNETWORK = "Internetwork"} @String{j-INTRANET-NETWORKING-STRATEGIES-REP = "Intranet and Networking Strategies Report"} @String{j-IRISH-COMP = "Irish Computer"} @String{j-J-FUNCT-PROGRAMMING = "Journal of Functional Programming"} @String{j-J-INFO-SCI-PRINCIPLES-PRACTICE = "Journal of Information Science, Principles and Practice"} @String{j-J-MANUFACTURING-SYS = "Journal of Manufacturing Systems"} @String{j-J-OOP = "Journal of Object Oriented Programming"} @String{j-J-STAT-SOFT = "Journal of Statistical Software"} @String{j-J-UCS = "J.UCS: Journal of Universal Computer Science"} @String{j-JAVAWORLD = "JavaWorld: IDG's magazine for the Java community"} @String{j-JOHO-SHORI = "Joho-Shori (J. Information Processing Soc. Japan)"} @String{j-LAN = "LAN: the network solutions magazine"} @String{j-LAN-TIMES = "LAN times"} @String{j-LECT-NOTES-COMP-SCI = "Lecture Notes in Computer Science"} @String{j-LIB-SYSTEMS = "Library Systems"} @String{j-LINUX-J = "Linux Journal"} @String{j-LOGIN = ";login: the USENIX Association newsletter"} @String{j-M-COMPUTING = "M Computing"} @String{j-MACUSER = "MacUser"} @String{j-MACWEEK = "MacWEEK"} @String{j-MANUFACTURING-SYSTEMS = "Manufacturing systems"} @String{j-MECH-ENG = "Mechanical Engineering: the journal of the American Society of Mechanical Engineers"} @String{j-NEC-TECH-J = "NEC Technical Journal = NEC giho"} @String{j-NETWORK-COMPUTING = "Network Computing"} @String{j-NETWORK-WEEK = "Network Week"} @String{j-NETWORK-WORLD = "Network World"} @String{j-NEW-YORK = "New York"} @String{j-NEW-YORK-TIMES-SYNDICATE = "New York Times Syndicate"} @String{j-NEWSWEEK = "Newsweek"} @String{j-NTT-R-D = "NTT R and D"} @String{j-OBJECT-EXPERT = "Object Expert"} @String{j-OBJECT-MAG = "Object Magazine"} @String{j-ONLINE = "Online"} @String{j-ONLINE-CDROM-REV = "Online \& CDROM review: the international journal of online \& optical information systems"} @String{j-OPEN-COMPUTING = "Open Computing"} @String{j-OPER-SYS-REV = "Operating Systems Review"} @String{j-ORACLE-INTEGRATOR = "Oracle Integrator"} @String{j-PARALLEL-DIST-COMP-PRACT = "Parallel and Distributed Computing Practices"} @String{j-PC-COMPUTING = "PC\slash Computing"} @String{j-PC-MAGAZINE = "PC Magazine"} @String{j-PC-USER = "PC User"} @String{j-PC-WEEK = "PC Week"} @String{j-PC-WORLD = "PC World"} @String{j-PROC-PETROLEUM-COMPUT-CONF = "Proceedings --- Petroleum Computer Conference"} @String{j-PROC-SPIE = "Proceedings of the SPIE --- The International Society for Optical Engineering"} @String{j-PUBLISHING = "Publishing"} @String{j-REAL-TIME-SYST = "Real-Time Systems"} @String{j-REP-OBJECT-ANA-DESIGN = "Report on Object Analysis and Design"} @String{j-RES-DEV = "Research \& Development"} @String{j-RS-MAGAZINE = "RS\slash Magazine"} @String{j-SAN-JOSE-MERCURY-NEWS = "San Jose Mercury News"} @String{j-SCI-AMER = "Scientific American"} @String{j-SCI-PROG = "Scientific Programming"} @String{j-SCIENCE = "Science"} @String{j-SCITECH-J = "SciTech Journal"} @String{j-SEYBOLD-REP-INTERNET-PUBLISHING = "Seybold Report on Internet Publishing"} @String{j-SIGADA-LETTERS = "ACM SIGADA Ada Letters"} @String{j-SIGCSE = "SIGCSE Bulletin (ACM Special Interest Group on Computer Science Education)"} @String{j-SIGMOD = "SIGMOD Record (ACM Special Interest Group on Management of Data)"} @String{j-SIGPLAN = "ACM SIG{\-}PLAN Notices"} @String{j-SIGSAC-REVIEW = "SIG security, audit \& control review"} @String{j-SIGSAM = "SIGSAM Bulletin (ACM Special Interest Group on Symbolic and Algebraic Manipulation)"} @String{j-SILICON-GRAPHICS-WORLD = "Silicon Graphics World"} @String{j-SOFTWARE-ECONOMICS-LETTER = "Software Economics Letter"} @String{j-SOFTWARE-MAG = "Software magazine"} @String{j-SPE = "Soft\-ware\emdash Prac\-tice and Experience"} @String{j-SPIE = "SPIE Proceedings"} @String{j-SUN-DEVELOPER-NEWS = "Sun Developer NEWS"} @String{j-SUN-OBSERVER = "Sun Observer"} @String{j-SUNEXPERT = "SunExpert Magazine"} @String{j-SUNSERVER = "SunServer"} @String{j-SUNWORLD-ONLINE = "Sunworld Online"} @String{j-SYS-ADMIN = "SysAdmin"} @String{j-TECHTRENDS = "TechTrends: for leaders in education and training"} @String{j-TELECOMMUNICATIONS-AMERICAS-ED = "Telecommunications (Americas Edition)"} @String{j-TELEPHONY = "Telephony"} @String{j-TIME = "Time"} @String{j-TISSEC = "ACM Transactions on Information and System Security"} @String{j-TOCHI = "ACM Transactions on Computer-Human Interaction"} @String{j-TODAES = "ACM Transactions on Design Automation of Electronic Systems"} @String{j-TODS = "ACM Transactions on Database Systems"} @String{j-TOPLAS = "ACM Transactions on Programming Languages and Systems"} @String{j-TUGboat = "TUGboat"} @String{j-UNIX-DEVELOPER = "UNIX Developer"} @String{j-UNIX-REVIEW = "UNIX review"} @String{j-US-NEWS-WORLD-REP = "U.S. news and world report"} @String{j-WALL-ST-TECH = "Wall Street and Technology"} @String{j-WEB-APPS = "Web Apps Magazine"} @String{j-WEB-REVIEW = "Web Review"} @String{j-WEB-TECHNIQUES = "Web Techniques"} @String{j-WEB-WEEK = "Web Week"} @String{j-WEBSERVER = "WebServer Magazine: For Managers of World Wide Web Sites"} @String{j-WINDOWS-MAG = "Windows Magazine"} @String{j-WIRED = "Wired"} @String{j-X-J = "{The X Journal}"} @String{j-X-RESOURCE = "The X Resource"} %%% ==================================================================== %%% Publishers and their addresses: @String{pub-ACADEMIC-SERVICE = "Academic Service"} @String{pub-ACADEMIC-SERVICE:adr = "Postbus 81, 2870 AB Schoonhoven, The Netherlands"} @String{pub-ACADEMIC-SERVICE-VERLAG = "Academic Service Verlag"} @String{pub-ACADEMIC-SERVICE-VERLAG:adr = "????"} @String{pub-ACM = "ACM Press"} @String{pub-ACM:adr = "New York, NY 10036, USA"} @String{pub-ANAYA-MULTIMEDIA = "Anaya Multimedia"} @String{pub-ANAYA-MULTIMEDIA:adr = "Madrid, Spain"} @String{pub-AP = "Academic Press"} @String{pub-AP:adr = "New York, NY, USA"} @String{pub-AP-PROFESSIONAL = "AP Professional"} @String{pub-AP-PROFESSIONAL:adr = "Boston, MA, USA"} @String{pub-APOGEO = "Apogeo srl"} @String{pub-APOGEO:adr = "Viale Papiniano 38, 20123 Milano, Italy"} @String{pub-ASCII = "ASCII Corporation"} @String{pub-ASCII:adr = "Tokyo, Japan"} @String{pub-AW = "Ad{\-d}i{\-s}on-Wes{\-l}ey"} @String{pub-AW:adr = "Reading, MA, USA"} @String{pub-AW-ITALIA = "Addison Wesley Italia Editoriale"} @String{pub-AW-ITALIA:adr = "Via Deffenu, 7, 20133 Milano, Italy"} @String{pub-AW-LONGMAN = "Ad{\-d}i{\-s}on-Wes{\-l}ey Longman"} @String{pub-AW-LONGMAN:adr = "Reading, MA, USA"} @String{pub-AW-NL = "Ad{\-d}i{\-s}on-Wes{\-l}ey Nederland"} @String{pub-AW-NL:adr = "????"} @String{pub-AWDP = "Ad{\-d}i{\-s}on-Wes{\-l}ey Developers Press"} @String{pub-AWDP:adr = "Reading, MA, USA"} @String{pub-AWV = "Ad{\-}di{\-}son-Wes{\-}ley Verlag"} @String{pub-AWV:adr = "Bonn, Germany"} @String{pub-BHV = "BHV"} @String{pub-BHV:adr = "??, Germany"} @String{pub-CARL-HANSER = "Carl Hanser"} @String{pub-CARL-HANSER:adr = "M{\"{u}}nchen, Germany"} @String{pub-CBT-SYSTEMS = "CBT Systems"} @String{pub-CBT-SYSTEMS:adr = "????"} @String{pub-CHARLES-RIVER-MEDIA = "Charles River Media, Inc."} @String{pub-CHARLES-RIVER-MEDIA:adr = "403 VFW Drive, PO Box 417, Rockland, MA 02370, USA"} @String{pub-CORIOLIS = "Coriolis Group Books"} @String{pub-CORIOLIS:adr = "Scottsdale, AZ, USA"} @String{pub-CRC = "CRC Press"} @String{pub-CRC:adr = "2000 N.W. Corporate Blvd., Boca Raton, FL 33431-9868, USA"} @String{pub-CUP = "Cambridge University Press"} @String{pub-CUP:adr = "Cambridge, UK"} @String{pub-DAERIM = "DaeRim Publishing"} @String{pub-DAERIM:adr = "Seoul, Korea"} @String{pub-DATA-BECKER = "DATA-Becker"} @String{pub-DATA-BECKER:adr = "????"} @String{pub-DP = "Digital Press"} @String{pub-DP:adr = "12 Crosby Drive, Bedford, MA 01730, USA"} @String{pub-DPUNKT-VERLAG = "dpunkt-Verlag"} @String{pub-DPUNKT-VERLAG:adr = "Heidelberg, Germany"} @String{pub-EASY-COMPUTING = "Easy Computing SA-NV"} @String{pub-EASY-COMPUTING:adr = "Chauss{\'e}e d'Alsemberg 610 - Alsembergsesteenweg 610, 1180 Brussels, Belgium; Korte Kleverlaan, 34Bf, 2061 EE Bloemendaal, The Netherlands"} @String{pub-EASY-COMPUTING-BELGIUM = "Easy Computing (Belgium)"} @String{pub-EASY-COMPUTING-BELGIUM:adr = "????"} @String{pub-EDITION-MICRO-APPLICATIONS = "Edition Micro Application"} @String{pub-EDITION-MICRO-APPLICATIONS:adr = "Paris, France"} @String{pub-EDITORE-CAMPUS = "Editore Campus Ltda."} @String{pub-EDITORE-CAMPUS:adr = "Rua Sete de Setembro, 111/16, Rio de Janeiro - RJ - 20050-002, Brazil"} @String{PUB-EDITORIAL-INFORBOOKS = "Editorial Inforbooks"} @String{PUB-EDITORIAL-INFORBOOKS:adr = "????"} @String{pub-EDITORIAL-MARCOMBO = "Editorial Marcombo, S.A."} @String{pub-EDITORIAL-MARCOMBO:adr = "Barcelona, Spain"} @String{pub-EDITORIAL-PARANINFO = "Editorial Paraninfo"} @String{pub-EDITORIAL-PARANINFO:adr = "Madrid, Spain"} @String{pub-ELS = "Elsevier Science Publishers B.V."} @String{pub-ELS:adr = "Amsterdam, The Netherlands"} @String{pub-EYROLLES = "Eyrolles"} @String{pub-EYROLLES:adr = "Paris, France"} @String{pub-FLAG = "Flag Publishing"} @String{pub-FLAG:adr = "??, Taiwan"} @String{pub-FRANZIS-VERLAG = "Franzis-Verlag"} @String{pub-FRANZIS-VERLAG:adr = "Feldkirchen, Germany"} @String{pub-GOTOP-INFORMATION = "GOTOP Information Inc."} @String{pub-GOTOP-INFORMATION:adr = "5F, No.7, Lane 50, Sec.3 Nan Kang Road Taipei, Taiwan; Unit 1905,Metro Plaza Tower 2, No.223 Hing Fong Road, Kwai Chung, N.T., Hong Kong"} @String{pub-HANLEY-BELFUS = "Hanley and Belfus"} @String{pub-HANLEY-BELFUS:adr = "Philadelphia, PA, USA"} @String{pub-HAYDEN = "Hayden Books"} @String{pub-HAYDEN:adr = "4300 West 62nd Street, Indianapolis, IN 46268, USA"} @String{pub-HEINZ-HEISE = "Verlag Heinz Heise"} @String{pub-HEINZ-HEISE:adr = "Helsdorfer Stra{\ss}e 7, D-30625, Hannover, Germany"} @String{pub-HENRY-HOLT = "Henry Holt and Company, Incorporated"} @String{pub-HENRY-HOLT:adr = "New York, NY, USA"} @String{pub-HWS = "Howard W. Sams"} @String{pub-HWS:adr = "Indianapolis, IN 46268, USA"} @String{pub-IBM = "IBM Corporation"} @String{pub-IBM:adr = "San Jose, CA, USA"} @String{pub-IBM-REDBOOKS = "IBM Redbooks"} @String{pub-IBM-REDBOOKS:adr = "11400 Burnet Road, Austin, TX 78758-3493, USA"} @String{pub-IDG = "IDG Books"} @String{pub-IDG:adr = "San Mateo, CA, USA"} @String{pub-IDG-WORLDWIDE = "I D G Books Worldwide"} @String{pub-IDG-WORLDWIDE:adr = "Indianapolis, IN, USA"} @String{pub-IEE = "IEE"} @String{pub-IEE:adr = "London, UK"} @String{pub-IEEE = "IEEE Computer Society Press"} @String{pub-IEEE:adr = "1109 Spring Street, Suite 300, Silver Spring, MD 20910, USA"} @String{pub-IMAGE-ART = "Image Art Publishing"} @String{pub-IMAGE-ART:adr = "????"} @String{pub-IMPRESS = "Impress Corporation"} @String{pub-IMPRESS:adr = "??, Japan"} @String{pub-INT-SOC-TECH-EDU = "International Society for Technology in Education"} @String{pub-INT-SOC-TECH-EDU:adr = "Eugene, OR, USA"} @String{pub-IOS = "IOS Press"} @String{pub-IOS:adr = "Amsterdam, The Netherlands"} @String{pub-IRWIN = "Richard D. Irwin"} @String{pub-IRWIN:adr = "Chicago, IL"} @String{pub-IRWIN-MCGRAW-HILL = "Irwin\slash McGraw Hill"} @String{pub-IRWIN-MCGRAW-HILL:adr = "Boston, MA, USA"} @String{pub-ITCP = "International Thomson Computer Press"} @String{pub-ITCP:adr = "20 Park Plaza Suite 1001, Boston, MA 02116 USA"} @String{pub-ITP-FRANCE = "International Thomson Publishing France"} @String{pub-ITP-FRANCE:adr = "Paris, France"} @String{pub-JACKSON-LIBRI = "Jackson Libri"} @String{pub-JACKSON-LIBRI:adr = "via XXV Aprile, 39 - 20091 Bresso (MI), Italy"} @String{pub-JAMSA = "Jamsa Press"} @String{pub-JAMSA:adr = "Las Vegas, NV, USA"} @String{pub-MACMILLAN = "MacMillan Publishing Company"} @String{pub-MACMILLAN:adr = "New York, NY, USA"} @String{pub-MACMILLAN-COMPUTER = "Macmillan Computer Publishing"} @String{pub-MACMILLAN-COMPUTER:adr = "Indianapolis, IN, USA"} @String{pub-MAKRON = "Makron Books do Brasil Editora Ltda."} @String{pub-MAKRON:adr = "Rua Tabapu{\~a} 1348, S{\~a}o Paulo SP - 04533-004 - Brasil"} @String{pub-MANNING = "Manning Publications"} @String{pub-MANNING:adr = "Greenwich, CT, USA"} @String{pub-MARKT-TECHNIK = "Markt \& Technik"} @String{pub-MARKT-TECHNIK:adr = "Haar bei M{\"u}nchen, Germany"} @String{pub-MASSON = "Masson Editeur"} @String{pub-MASSON:adr = "Masson, France"} @String{pub-MCGRAW-HILL = "Mc{\-}Graw-Hill"} @String{pub-MCGRAW-HILL:adr = "New York, NY, USA"} @String{pub-MCGRAW-HILL-SPAIN = "Mc{\-}Graw-Hill Spain"} @String{pub-MCGRAW-HILL-SPAIN:adr = "????"} @String{pub-MICROSOFT = "Microsoft Press"} @String{pub-MICROSOFT:adr = "Bellevue, WA, USA"} @String{pub-MINDQ = "MindQ Publishing, Inc."} @String{pub-MINDQ:adr = "450 Springpark Place Ste. 1200, Herndon, VA 20170, USA, Tel: +1 703 708-9380"} @String{pub-MIS = "MIS Press"} @String{pub-MIS:adr = "P. O. Box 5277, Portland, OR 97208-5277, USA, Tel: (503) 282-5215"} @String{pub-MIT = "MIT Press"} @String{pub-MIT:adr = "Cambridge, MA, USA"} @String{pub-MONDADORI-INFORMATICA = "Mondadori Informatica"} @String{pub-MONDADORI-INFORMATICA:adr = "??, Italy"} @String{pub-MORGAN-KAUFMANN = "Morgan Kaufmann Publishers"} @String{pub-MORGAN-KAUFMANN:adr = "Los Altos, CA 94022, USA"} @String{pub-MORGAN-KAUFMANN:adrnew = "2929 Campus Drive, Suite 260, San Mateo, CA 94403, USA"} @String{pub-MT = "M\&T Books"} @String{pub-MT:adr = "M\&T Publishing, Inc., 501 Galveston Drive, Redwood City, CA 94063, USA"} @String{pub-NIST = "National Institute for Standards and Technology"} @String{pub-NIST:adr = "Gaithersburg, MD, USA"} @String{pub-NORTON = "W. W. Norton \& Co."} @String{pub-NORTON:adr = "New York, NY, USA"} @String{pub-NRP = "New Riders Publishing"} @String{pub-NRP:adr = "Carmel, IN, USA"} @String{pub-NUOVA-ITALIA = "La Nuova Italia"} @String{pub-NUOVA-ITALIA:adr = "Firenze, Italy"} @String{pub-OHMSHA = "Ohmsha"} @String{pub-OHMSHA:adr = "????"} @String{pub-OMH = "Osborne\slash Mc{\-}Graw-Hill"} @String{pub-OMH:adr = "Berkeley, CA, USA"} @String{pub-ORA = "O'Reilly \& {Associates, Inc.}"} @String{pub-ORA:adr = "981 Chestnut Street, Newton, MA 02164, USA"} @String{pub-ORA-IT = "Editions O'Reilly International Thomson"} @String{pub-ORA-IT:adr = "Paris, France"} @String{pub-OSBORNE = "Osborne/McGraw-Hill"} @String{pub-OSBORNE:adr = "Berkeley, CA, USA"} @String{pub-PAGINA = "Pagina F{\"o}rlags AB"} @String{pub-PAGINA:adr = "Box 706, Travgatan 92, 194 27 Upplands-V{\"a}sby, Sweden"} @String{pub-PEACHPIT = "Peachpit Press, Inc."} @String{pub-PEACHPIT:adr = "1085 Keith Avenue, Berkeley, CA 94708, USA"} @String{pub-PH = "Pren{\-}tice-Hall"} @String{pub-PH:adr = "Englewood Cliffs, NJ 07632, USA"} @String{pub-PH-HISPANOAMERICANA = "Prentice Hall HispanoAmericana"} @String{pub-PH-HISPANOAMERICANA:adr = "Mexico, DF, Mexico / Nueva York, NY, USA"} @String{pub-PHPTR = "P T R Pren{\-}tice-Hall"} @String{pub-PHPTR:adr = "Englewood Cliffs, NJ 07632, USA"} @String{pub-PITER-PUBLISHING = "Piter Publishing Company"} @String{pub-PITER-PUBLISHING:adr = "St. Petersburg, Russia"} @String{pub-PRIMA = "Prima Publishing"} @String{pub-PRIMA:adr = "Rocklin, CA, USA"} @String{pub-PWS = "PWS-Kent Publishing Company, Division of Wadsworth, Inc."} @String{pub-PWS:adr = "20 Park Plaza, Boston, MA 02116, USA"} @String{pub-QUE = "Que Corporation"} @String{pub-QUE:adr = "Indianapolis, IN, USA"} @String{pub-SAMS = "Howard W. Sams"} @String{pub-SAMS:adr = "Indianapolis, IN 46268, USA"} @String{pub-SAMS-NET = "Sams.net"} @String{pub-SAMS-NET:adr = "Indianapolis, IN 46268, USA"} @String{pub-SAS = "SAS Institute"} @String{pub-SAS:adr = "SAS Circle, Box 8000, Cary, NC 27512-8000, USA"} @String{pub-SIGS = "SIGS Books"} @String{pub-SIGS:adr = "71 W 23rd St., New York, NY 10010, USA"} @String{pub-SIGS-BOOKS-MULTIMEDIA = "SIGS Books and Multimedia"} @String{pub-SIGS-BOOKS-MULTIMEDIA:adr = "71 W 23rd St., New York, NY 10010, USA"} @String{pub-SIMON-SCHUSTER-FRANCE = "Simon \& Schuster Macmillan (France)"} @String{pub-SIMON-SCHUSTER-FRANCE:adr = "Paris, France"} @String{pub-SOFTBANK = "Softbank Publishing"} @String{pub-SOFTBANK:adr = "??, Japan"} @String{pub-SPIE = "SPIE Optical Engineering Press"} @String{pub-SPIE:adr = "Bellingham, WA, USA"} @String{pub-SSC = "Specialized Systems Consultants"} @String{pub-SSC:adr = "P.O. Box 55549, Seattle, WA 98155"} @String{pub-SUN = "Sun Microsystems"} @String{pub-SUN:adr = "2550 Garcia Avenue, Mountain View, CA 94043, USA"} @String{pub-SUNSOFT = "SunSoft Press"} @String{pub-SUNSOFT:adr = "2550 Garcia Avenue, Mountain View, CA 94043-1100, USA"} @String{pub-SV = "Spring{\-}er-Ver{\-}lag"} @String{pub-SV:adr = "Berlin, Germany~/ Heidelberg, Germany~/ London, UK~/ etc."} @String{pub-SYBEX = "Sybex, Inc."} @String{pub-SYBEX:adr = "2021 Challenger Driver, Suite 100, Alameda, CA 94501, USA"} @String{pub-SYBEX-FRANCE = "Sybex France"} @String{pub-SYBEX-FRANCE:adr = "Paris, France"} @String{pub-SYBEX-NEDERLAND = "Sybex Nederland"} @String{pub-SYBEX-NEDERLAND:adr = "????"} @String{pub-SYBEX-VERLAG = "Sybex Verlag GmbH"} @String{pub-SYBEX-VERLAG:adr = "Erkrather Stra{\ss}e 345-349, 40231 D{\"u}sseldorf, Germany"} @String{pub-SYS-CON = "Sys-con publications"} @String{pub-SYS-CON:adr = "????"} @String{pub-TECHNICE-NUOVE = "Tecniche Nuove"} @String{pub-TECHNICE-NUOVE:adr = "??, Italy"} @String{pub-TEUBNER = "Teubner"} @String{pub-TEUBNER:adr = "Stuttgart, Germany; Leipzig, Germany"} @String{pub-TEWI = "te-wi"} @String{pub-TEWI:adr = "M{\"{u}}nchen, Germany"} @String{pub-UNALIS = "Unalis Corporation"} @String{pub-UNALIS:adr = "??, Taiwan"} @String{pub-UNICODE = "The Unicode Consortium"} @String{pub-UNICODE:adr = "Mountain View, CA, USA"} @String{pub-UNICODE-CAMBRIDGE:adr = "Cambridge, MA, USA"} @String{pub-UNICODE-SAN-JOSE:adr = "P.O. Box 700519, San Jose, CA 95170-0519, USA, Phone: +1-408-777-5870, Fax: +1-408-777-5082, E-mail: \path=unicode-inc@unicode.org="} @String{pub-UNIV-VIDEO-COMM = "University Video Communications"} @String{pub-UNIV-VIDEO-COMM:adr = "Stanford, CA, USA"} @String{pub-UNIVERSAL-CD-ROM = "Universal CD-ROM"} @String{pub-UNIVERSAL-CD-ROM:adr = "????"} @String{pub-USENIX = "USENIX"} @String{pub-USENIX:adr = "Berkeley, CA, USA"} @String{pub-VENTANA = "Ventana Press"} @String{pub-VENTANA:adr = "Chapel Hill, NC, USA"} @String{pub-VENTANA-COMM-GROUP = "Ventana Communications Group, Incorporated"} @String{pub-VENTANA-COMM-GROUP:adr = "Research Triangle Park, NC, USA"} @String{pub-VIEWEG = "Vieweg \& Son"} @String{pub-VIEWEG:adr = "Braunschweig, Germany"} @String{pub-VNR = "Van Nostrand Reinhold Co."} @String{pub-VNR:adr = "New York, NY, USA"} @String{pub-W-C-BROWN = "Wm. C. Brown Publishers"} @String{pub-W-C-BROWN:adr = "Dubuque, IA, USA"} @String{pub-WAITE-GROUP = "Waite Group Press"} @String{pub-WAITE-GROUP:adr = "Corte Madera, CA, USA"} @String{pub-WILEY = "John Wiley and Sons"} @String{pub-WILEY:adr = "New York, NY, USA; London, UK; Sydney, Australia"} @String{pub-WILEY-COMPUTER = "Wiley Computer Publishers"} @String{pub-WILEY-COMPUTER:adr = "New York, NY, USA"} @String{pub-WROX = "Wrox Press"} @String{pub-WROX:adr = "Chicago, IL, USA"} @String{pub-YGGDRASIL = "Yggdrasil Computing, Inc."} @String{pub-YGGDRASIL:adr = "Berkeley, CA, USA"} @String{pub-YOURDON = "Yourdon Press"} @String{pub-YOURDON:adr = "Upper Saddle River, NJ, USA"} @String{pub-ZD = "Ziff-Davis Press"} @String{pub-ZD:adr = "Emeryville, CA, USA"} %%% ==================================================================== %%% Series abbreviations: @String{ser-LNCS = "Lecture Notes in Computer Science"} %%% ==================================================================== %%% Bibliography entries, sorted by year, and then by citation key. @Misc{Adobe:1995:AIJ, author = "{Adobe Systems Inc.}", title = "{Adobe} To Integrate {Java} Technology for {Web} Publishing", howpublished = "press release", day = "7", month = dec, year = "1995", bibdate = "Sun Dec 17 08:39:34 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.adobe.com/PDFs/PR/9512/951206.java.pdf", acknowledgement = ack-jd, } @Article{Alsop:1995:CDTa, author = "Stewart Alsop", title = "Column: Distributed Thinking --- {Netscape} Is One Big Fish", journal = j-INFOWORLD, pages = "??--??", day = "11", month = apr, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Alsop:1995:CDTb, author = "Stewart Alsop", title = "Column: Distributed Thinking --- {HotJava} Could be Really Hot", journal = j-INFOWORLD, pages = "??--??", day = "30", month = may, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Alsop:1995:CDTc, author = "Stewart Alsop", title = "Column: Distributed Thinking --- {Java}'s Hot but May Cool", journal = j-INFOWORLD, pages = "??--??", day = "18", month = dec, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Anonymous:1995:FMS, author = "Anonymous", title = "{UP FRONT} --- {Mac} solution for writing {Java} applets", journal = j-MACWEEK, volume = "9", number = "42", pages = "4--4", month = "????", year = "1995", CODEN = "MWEEEI", ISSN = "0892-8118", bibdate = "Thu Jan 04 18:52:00 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "MacWEEK", } @Article{Anonymous:1995:GNS, author = "Anonymous", title = "{GATEWAYS} --- {Navigator} 2.0 splits windows, talks {Java}", journal = j-MACWEEK, volume = "9", number = "41", pages = "18--18", month = "????", year = "1995", CODEN = "MWEEEI", ISSN = "0892-8118", bibdate = "Thu Jan 04 18:51:58 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "MacWEEK", } @Article{Anonymous:1995:HJ, author = "Anonymous", title = "Help From `{Java}'", journal = j-CHRON-HIGHER-ED, volume = "42", number = "6", pages = "A25", day = "6", month = oct, year = "1995", ISSN = "0009-5982", ISSN-L = "0009-5982", bibdate = "Sat Dec 30 10:48:19 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "The Chronicle of Higher Education", } @Article{Anonymous:1995:IJJ, author = "Anonymous", title = "{IBM} Jumps on {Java} Bandwagon", journal = j-ENEWS, volume = "41", number = "2095", pages = "22--22", month = dec, year = "1995", CODEN = "ELNEAU", ISSN = "0013-4937, 1061-6624", bibdate = "Tue Dec 19 07:43:43 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Electronic News", } @Article{Anonymous:1995:INS, author = "Anonymous", title = "{Internet}: Now for Some {HotJava}", journal = j-NEWSWEEK, volume = "126", number = "20", pages = "87--87", year = "1995", ISSN = "0028-9604", bibdate = "Sat Dec 30 10:10:59 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Newsweek", } @Article{Anonymous:1995:JBS, author = "Anonymous", title = "{JAVA}: {Borland} And {Spyglass} Sign Up", journal = j-INFORMATION-WEEK, volume = "554", pages = "20--20", day = "20", month = nov, year = "1995", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Sat Dec 30 10:28:54 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Sun's Web language will buoy Borland's TCP/IP toolset, Spyglass' Web browser", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1995:JGN, author = "Anonymous", title = "{Java} Gets The Nod From {IBM}", journal = j-INFORMATION-WEEK, pages = "24--24", day = "18", month = dec, year = "1995", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Sat Dec 30 10:25:05 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Sun's scripting language will be ported to AIX, OS/2, and Windows 3.1.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1995:JSW, author = "Anonymous", title = "{Java} set for {World Wide Web}", journal = j-GRAPHIC-ARTS-MONTHLY, volume = "67", number = "12", pages = "66--66", month = "????", year = "1995", CODEN = "GAMOE4", ISSN = "1047-9325", ISSN-L = "1047-9325", bibdate = "Sat Dec 30 10:30:49 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Graphic arts monthly: the magazine of the printing industry", } @Article{Anonymous:1995:JTB, author = "Anonymous", title = "{Java} tools --- {Borland} will create a {Delphi}-like visual development tool set for {Sun}'s {Java}", journal = j-COMPUTERWORLD, volume = "29", number = "46", pages = "10--10", month = "????", year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Sat Dec 30 10:33:07 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Anonymous:1995:LSM, author = "Anonymous", title = "{OS Lite} --- {Sun Microsystems} plans to create a lightweight {OS} that builds on {Java}", journal = j-LAN-TIMES, volume = "12", number = "26", pages = "37--??", year = "1995", ISSN = "1040-5917", bibdate = "Wed Jan 24 10:05:19 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "LAN times", } @Article{Anonymous:1995:MJI, author = "Anonymous", title = "Meet {Java}, the Invisible Computer", journal = j-BUSINESS-WEEK, volume = "3453", pages = "82--82", day = "04", month = dec, year = "1995", CODEN = "BUWEA3", ISSN = "0007-7135", bibdate = "Sat Dec 30 10:26:52 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Sun's hot new networking language", acknowledgement = ack-nhfb, fjournal = "Business week", } @Article{Anonymous:1995:NB, author = "Anonymous", title = "News Briefs", journal = j-DDDU, pages = "1--1", month = oct, year = "1995", ISSN = "1079-8595", bibdate = "Sun Dec 17 08:19:58 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses impact of an existing patent on executable content on Java.", URL = "http://www.ddj.com/dddu/issues/u510_bri.htm", acknowledgement = ack-jd, fjournal = "Dr. Dobb's Developer Update", } @Article{Anonymous:1995:NNA, author = "Anonymous", title = "{Netscape Navigator}: {Acrobat}, {Director}, and {Java} support", journal = j-MACUSER, volume = "11", number = "9", pages = "30--30", month = "????", year = "1995", CODEN = "MCUSEY", ISSN = "0884-0997", bibdate = "Sat Dec 30 10:43:30 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "MacUser", } @Article{Anonymous:1995:NNW, author = "Anonymous", title = "{Netscape Navigator} will incorporate {Sun}'s {Java} programming language", journal = j-INFOWORLD, volume = "17", number = "22", pages = "16", day = "29", month = may, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibdate = "Sat Dec 30 10:49:58 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Anonymous:1995:NSD, author = "Anonymous", title = "News: {Sun} Doubles First Quarter Earnings", journal = j-NETWORK-WORLD, pages = "??--??", day = "20", month = oct, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Misc{Anonymous:1995:SBT, author = "Anonymous", title = "{Sun} Brings True Interactivity To The {World Wide Web}", howpublished = "SunFlash", month = may, year = "1995", bibdate = "Sun Dec 17 09:56:33 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Number 77.25", URL = "http://www.flashback.com/www/may.1995/sunflash/77.25.www.html", acknowledgement = ack-jd, } @Misc{Anonymous:1995:SDJ, author = "Anonymous", title = "{SunSoft} to Deliver {Java} Development Tools", howpublished = "SunFlash", day = "10", month = sep, year = "1995", bibdate = "Sun Dec 17 09:55:27 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Number 81.30", URL = "http://www.flashback.com/www/september.1995/sunflash/81.30.java_dev_tools.html", acknowledgement = ack-jd, } @Misc{Anonymous:1995:SJQ, author = "Anonymous", title = "{SunScreen} and {Java} Questions \& Answers", howpublished = "SunFlash", month = jul, year = "1995", bibdate = "Sun Dec 17 09:54:21 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Number 79.05", URL = "http://www.flashback.com/www/july.1995/sunflash/79.05.sunscreen_qa.html", acknowledgement = ack-jd, } @Misc{Anonymous:1995:SLF, author = "Anonymous", title = "{Sun} Launches First Interactive {WWW} Site Powered By {Java}", howpublished = "SunFlash", month = may, year = "1995", bibdate = "Sun Dec 17 09:57:37 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Number 77.27", URL = "http://www.flashback.com/www/may.1995/sunflash/77.27.java.html", acknowledgement = ack-jd, } @Article{Anonymous:1995:SMI, author = "Anonymous", title = "{Sun Microsystems Inc} --- {Java}, the racy new programming language for the {World Wide Web}, ``is driving {Sun} in some completely new directions.''", journal = j-IND-WEEK, volume = "244", number = "23", pages = "36--??", year = "1995", CODEN = "IWEEA4", ISSN = "0039-0895", ISSN-L = "0039-0895", bibdate = "Wed Jan 24 10:05:19 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Industry Week", } @Article{Anonymous:1995:SOU, author = "Anonymous", title = "{Sun} offers users a cupful of '{Net} software to support electronic commerce applications, including its {HotJava Web} browser", journal = j-NETWORK-WORLD, volume = "12", number = "21", pages = "10--10", day = "22", month = may, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibdate = "Sat Dec 30 10:13:05 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Anonymous:1995:SRS, author = "Anonymous", title = "{SunWorld} readers speak: {Java} is hot!", journal = j-SUNWORLD-ONLINE, volume = "10", pages = "??--??", year = "1995", ISSN = "1091-8914", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sun.com/sunworldonline/swol-10-1995/swol-10-javadigest.html", abstract = "Results from our reader survey indicate a craving for Java, and offer some insight into the Java applets of the future.", acknowledgement = ack-nhfb, fjournal = "SunWorld online", } @Misc{Applix:1995:ADO, author = "{Applix}", title = "{Applix} Demos one of the first Enterprise-aware {Sun Microsystems Java Web} Applications", howpublished = "press release", day = "8", month = nov, year = "1995", bibdate = "Sun Dec 17 08:42:04 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.applix.com/pr/Java11-8-95.html", acknowledgement = ack-jd, } @Article{Babcock:1995:SJI, author = "Charles Babcock", title = "{Sun}'s {Java} is steaming hot", journal = j-COMPUTERWORLD, volume = "29", number = "50", pages = "142--142", day = "11", month = dec, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Sun Dec 17 15:01:38 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Baker:1995:NMA, author = "J. E. Baker and I. F. Cruz and G. Liotta and R. Tamassia", title = "A new model for algorithm animation over the {WWW}", journal = j-COMP-SURV, volume = "27", number = "4", pages = "568--572", month = dec, year = "1995", CODEN = "CMSVAN", ISSN = "0360-0300 (print), 1557-7341 (electronic)", ISSN-L = "0360-0300", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Dept. of Comput. Sci., Brown Univ., Providence, RI, USA", classcodes = "C6150G (Diagnostic, testing, debugging and evaluating systems); C6130B (Graphics techniques); C6110V (Visual programming); C6130M (Multimedia); C6180 (User interfaces); C6150N (Distributed systems software); C6130S (Data security)", corpsource = "Dept. of Comput. Sci., Brown Univ., Providence, RI, USA", fjournal = "ACM Computing Surveys", keywords = "accessibility; algorithm; algorithm animation; algorithms; animation; authoring; capabilities; client-server architecture; client-server systems; code protection; communication load; computationally expensive; computer; computer aided instruction; computer science education; data visualisation; dissemination; distributed model; education; HTML; hypermedia; hypertext narratives; hypertextual user interface; interactive platform-independent multimedia applications; Internet; Java language; Mocha; optimal software component partitioning; program diagnostics; responsiveness; security; security of data; step-by-step execution; user friendliness; user interfaces; visual programming; World Wide Web", treatment = "P Practical", } @Article{Bank:1995:JSS, author = "David Bank", title = "The {Java} Saga --- {Sun}'s {Java} is the hottest thing on the {Web} since {Netscape}. Maybe hotter. But for all the buzz, {Java} nearly became a business-school case study in how a good product fails. The inside story of bringing {Java} to \ldots", journal = j-WIRED, volume = "3", number = "12", pages = "166--166", month = "????", year = "1995", CODEN = "WREDEM", ISSN = "1059-1028", ISSN-L = "1059-1028", bibdate = "Sat Dec 30 10:34:44 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Wired", } @Article{Banks:1995:WST, author = "David Banks", title = "Why {Sun} thinks {Hot Java} will give you a lift", journal = j-SAN-JOSE-MERCURY-NEWS, pages = "??--??", day = "23", month = mar, year = "1995", ISSN = "0747-2099", bibdate = "Sun Dec 17 08:36:54 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sjmercury.com/archives/hotjava.htm", acknowledgement = ack-jd, fjournal = "San Jose Mercury News", } @Article{Barney:1995:NNN, author = "Doug Barney", title = "News: {Notes} Navigates {Web}", journal = j-COMPUTERWORLD, pages = "??--??", day = "10", month = oct, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Barr:1995:WTY, author = "C. Barr", title = "Wait till you see the {Net} on {Java}", journal = j-CLNET, pages = "??--??", day = "30", month = oct, year = "1995", bibdate = "Sun Dec 17 08:44:40 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cnet.com/Central/Columns/Old/Barr/10/", acknowledgement = ack-jd, fjournal = "c$\|$net central", } @Misc{Behme:1995:IKH, author = "Henning Behme", title = "{Im Kaffeehaus. HotJava: objektorientierte Programmiersprache und Web-Viewer} ({English}: In the Coffee House. {HotJava}: object-oriented programming language and {Web} viewer)", howpublished = "WWW URL", month = jul, year = "1995", bibdate = "Sun Dec 17 08:47:20 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ix.de/ix/raven/Web/9507/HotJava.html", acknowledgement = ack-jd, } @Article{Betts:1995:NSF, author = "Mitch Betts", title = "News: Small Firms' Patent Claims May Slow {Internet} Commerce", journal = j-COMPUTERWORLD, pages = "??--??", day = "01", month = sep, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Misc{Borland:1995:BID, author = "{Borland International}", title = "{Borland International} to Deliver Tools For {Sun}'s {Java Internet} Programming Language", howpublished = "press release", day = "8", month = nov, year = "1995", bibdate = "Sun Dec 17 08:48:47 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.borland.com/Product/java/javapress.html", acknowledgement = ack-jd, } @Article{Bozman:1995:NSN, author = "Jean S. Bozman", title = "News: {Sun} Needs Commercial Users for Hot {Java} to Percolate", journal = j-COMPUTERWORLD, pages = "??--??", day = "09", month = jun, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Bozman:1995:NSTa, author = "Jean S. Bozman", title = "News: {Sun} Turns Focus on {Java}", journal = j-COMPUTERWORLD, pages = "??--??", day = "08", month = sep, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Bozman:1995:NSTb, author = "Jean S. Bozman", title = "News: {Sun} Ties {Internet} Software to {DOE}", journal = j-COMPUTERWORLD, pages = "??--??", day = "22", month = sep, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Bozman:1995:NTS, author = "Jean S. Bozman", title = "News: {Telecom} '95: {Sun} to Plunge into Consumer Market", journal = j-COMPUTERWORLD, pages = "??--??", day = "06", month = oct, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Brown:1995:NIW, author = "Jim Brown", title = "News: {Internet} Workshop Draw Numbers", journal = j-NETWORK-WORLD, pages = "??--??", day = "22", month = nov, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Brown:1995:NTP, author = "Jim Brown", title = "News: 1996 Technology Planning Survey", journal = j-NETWORK-WORLD, pages = "??--??", day = "22", month = dec, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Busse:1995:NCA, author = "Torsten Busse", title = "News: {Comdex}: {AT\&T} Announces Electronic Commerce, {Web} Services", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "14", month = nov, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Carlson:1995:UJJ, author = "Bob Carlson", title = "Update: {A} jolt of {Java} could shake up the computing community", journal = j-COMPUTER, volume = "28", number = "11", pages = "81--82", month = nov, year = "1995", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Sat Dec 30 10:37:27 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computer", keywords = "Database software; Java (Computer language)", } @Misc{CBS:1995:JIJ, author = "{CBS}", title = "{Java} Isn't Just Coffee Anymore", howpublished = "news report", day = "2", month = jun, year = "1995", bibdate = "Sun Dec 17 08:50:14 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://uttm.com/drive/june_1995/june2.html", acknowledgement = ack-jd, } @Article{Cole:1995:NMD, author = "Barb Cole", title = "News: More Database-to-{Web} Products Announced", journal = j-NETWORK-WORLD, pages = "??--??", day = "08", month = dec, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Computerworld:1995:NAJ, author = "{Computerworld staff}", title = "News: {Adobe} Joins {Java} Licensees", journal = j-COMPUTERWORLD, pages = "??--??", day = "08", month = dec, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Computerworld:1995:NIO, author = "{Computerworld staff}", title = "News: {Internet} Object Standard Promised", journal = j-COMPUTERWORLD, pages = "??--??", day = "15", month = dec, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Computerworld:1995:NPC, author = "{Computerworld staff}", title = "News: Patching up {CC:Mail}", journal = j-COMPUTERWORLD, pages = "??--??", day = "22", month = nov, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Computerworld:1995:NSOa, author = "{Computerworld staff}", title = "News: {Sun} Offers Classes in {Java} Language", journal = j-COMPUTERWORLD, pages = "??--??", day = "02", month = nov, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Computerworld:1995:NST, author = "{Computerworld staff}", title = "News: {Sun}, {Toshiba} Strike {PDA} deal", journal = j-COMPUTERWORLD, pages = "??--??", day = "29", month = sep, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Computerworld:1995:NWJ, author = "{Computerworld staff}", title = "News: Will {Java} Be {IBM}'s Cup of Tea?", journal = j-COMPUTERWORLD, pages = "??--??", day = "20", month = nov, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Misc{Corcoran:1995:EZS, author = "Cate T. Corcoran", title = "{Ed Zander} speaks out", howpublished = "WWW URL", month = nov, year = "1995", bibdate = "Sun Dec 17 08:51:33 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sun.com/sunworldonline/swol-11-1995/swol-11-fusion.zander.html", acknowledgement = ack-jd, } @Misc{Corporation:1995:OPI, author = "{Oracle Corporation}", title = "{Oracle PowerBrowser} to Integrate {Java} Technology with {Oracle}'s {Network Loadable Objects}", howpublished = "press release", day = "30", month = oct, year = "1995", bibdate = "Sun Dec 17 09:44:21 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.oracle.com/info/news/java.html", acknowledgement = ack-jd, } @Article{Cox:1995:NIA, author = "John Cox", title = "News: {IBM} to Add {Web} Support to {VisualAge}", journal = j-NETWORK-WORLD, pages = "??--??", day = "10", month = nov, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Cox:1995:NMS, author = "John Cox", title = "News: Move Slowly with {Java}, Still in Beta", journal = j-NETWORK-WORLD, pages = "??--??", day = "11", month = dec, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Cox:1995:NNS, author = "John Cox", title = "News: {National Semiconductor} to Launch {Java}-based {Web} Product", journal = j-NETWORK-WORLD, pages = "??--??", day = "18", month = nov, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Cox:1995:NSR, author = "John Cox", title = "News: {SunSoft} Rolls Out {WorkShop Tool Set} for {Solaris} 2.5", journal = j-NETWORK-WORLD, pages = "??--??", day = "10", month = nov, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Crothers:1995:NOS, author = "Brooke Crothers", title = "News: {Oracle} Set to Outline {Internet PC} Designs", journal = j-INFOWORLD, pages = "??--??", day = "10", month = dec, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Crotty:1995:NNN, author = "Cameron Crotty", title = "News: {Net Navigator} Shatters Static {Web} Pages", journal = "MW (??)", pages = "??--??", day = "21", month = nov, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Davis:1995:NIP, author = "Jessica Davis and Ed Scannell", title = "News: {Internet} Pushes {Lotus} to Alter {Notes} Pricing", journal = j-INFOWORLD, pages = "??--??", day = "10", month = dec, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Davis:1995:NLJ, author = "Jessica Davis and Ed Scannell", title = "News: {Lotus} Jockeys {Notes} into Better Spot in On-line Race", journal = j-INFOWORLD, pages = "??--??", day = "16", month = dec, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{December:1995:IJD, author = "John December", title = "Impressions of {Java} Day", journal = j-CMCM, pages = "??--??", day = "1", month = oct, year = "1995", ISSN = "1076-027X", bibdate = "Sun Dec 17 08:52:43 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://sunsite.unc.edu/cmc/mag/1995/oct/java.html", acknowledgement = ack-jd, fjournal = "Computer-Mediated Communication Magazine", } @Article{December:1995:JTM, author = "John December", title = "{Java} Takes {Manhattan}", journal = j-CMCM, pages = "??--??", day = "1", month = oct, year = "1995", ISSN = "1076-027X", bibdate = "Sun Dec 17 08:53:46 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://sunsite.unc.edu/cmc/mag/1995/oct/december.html", acknowledgement = ack-jd, fjournal = "Computer-Mediated Communication Magazine", } @Book{December:1995:PJI, author = "John December", title = "Presenting {Java}: An Introduction to {Java} and {HotJava}", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xii + 207", day = "1", month = oct, year = "1995", ISBN = "1-57521-039-8", ISBN-13 = "978-1-57521-039-1", LCCN = "QA76.75.J38D43 1995", bibdate = "Tue May 04 13:01:54 1999", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575210398.html; http://www.amazon.com/exec/obidos/ISBN=1575210398/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Also available in Hebrew translation \cite{December:1997:PJ}.", price = "US\$25.00, CDN\$34.95, UK\pounds 22.95", URL = "http://www.december.com/john//", acknowledgement = ack-nhfb, dimensions = "9.13in x 7.40in x 0.59in", paperback = "yes", } @Article{DeVoe:1995:NCG, author = "Deborah DeVoe", title = "News: {Compaq} Gets Friendly with {Internet}", journal = j-INFOWORLD, pages = "??--??", day = "16", month = dec, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Misc{DiGiorgio:1995:JBT, author = "Rinaldo DiGiorgio", title = "{Java} braintrust tells all", howpublished = "SunWorld Online", month = dec, year = "1995", bibdate = "Sun Dec 17 08:55:26 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sun.com/sunworldonline/swol-12-1995/swol-12-java.html", acknowledgement = ack-jd, } @Article{DiGiorgio:1995:JDB, author = "Rinaldo DiGiorgio", title = "{Java} Developer: Brain trust spills the beans", journal = j-SUNWORLD-ONLINE, volume = "12", pages = "??--??", year = "1995", ISSN = "1091-8914", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sun.com/sunworldonline/swol-12-1995/swol-12-java.html", abstract = "Sun's Arthur van Hoff and Kim Polese spill the Java beans, and four applets demonstrate Java tips and tricks.", acknowledgement = ack-nhfb, fjournal = "SunWorld online", } @Article{DiGiorgio:1995:JDF, author = "Rinaldo DiGiorgio", title = "{Java} Developer: The first {JavaDev} column", journal = j-SUNWORLD-ONLINE, volume = "11", pages = "??--??", year = "1995", ISSN = "1091-8914", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sun.com/sunworldonline/swol-11-1995/swol-11-java.html", abstract = "Debut of our new monthly column dedicated to the revolutionary new language sweeping the world. This month: Features and advantages; a comparison of the alpha and Java Developers Kit versions; some code examples -- in short, Why Java Is Good.", acknowledgement = ack-nhfb, fjournal = "SunWorld online", } @Misc{DiGiorgio:1995:WJD, author = "Rinaldo DiGiorgio", title = "Welcome to {Java Developer}", howpublished = "SunWorld Online", month = nov, year = "1995", bibdate = "Sun Dec 17 08:56:33 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.Sun.COM/sunworldonline/swol-11-1995/swol-11-java.html", acknowledgement = ack-jd, } @PhdThesis{Doerr:1995:LSA, author = "Rita McCardell Doerr", title = "A Lexical-semantic and Statistical Approach to Lexical Collocation Extraction for Natural Language Generation", type = "Thesis (Ph.D.)", school = "University of Maryland Baltimore County", address = "Baltimore, MD, USA", pages = "408", year = "1995", bibdate = "Tue Aug 19 17:18:46 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "See Dissertation Abstracts Index, DAI, Vol. 56-02B, Page 0915.", acknowledgement = ack-nhfb, adviser = "Chair: James C. Mayfield", keywords = "Computer Science", } @Article{Ess:1995:SMB, author = "Robert Ess", title = "{Sun}, {Metrowerks} brew {Mac Java}", journal = j-MACWEEK, pages = "??--??", day = "13", month = nov, year = "1995", CODEN = "MWEEEI", ISSN = "0892-8118", bibdate = "Sun Dec 17 08:57:34 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ziff.com/~macweek/mw_11-13-95/sunmetro.html", acknowledgement = ack-jd, fjournal = "MacWEEK", } @Article{Ferranti:1995:NIF, author = "Marc Ferranti", title = "News: {IT Forum}: {Ellison}, {Gates} Jockey for Position on Info Highway", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "04", month = sep, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Flynn:1995:BN, author = "Mary-Kathleen Flynn", title = "The battle for the {Net}", journal = j-US-NEWS-WORLD-REP, volume = "119", pages = "55--56", day = "18", month = dec, year = "1995", CODEN = "XNWRAV", ISSN = "0041-5537", bibdate = "Sat Sep 07 18:44:35 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Intense competitive pressures have prompted Microsoft, the largest PC software purveyor, to dramatically shift its strategy for competing and cashing in on the Internet. Microsoft will now use Net technology developed by one of its competitors, Sun Microsystems, and Oracle, the leading database vendor. It will also create its own Internet software, reposition its online service, and revamp product line to take advantage of the Net. The biggest surprise is Microsoft chairman Bill Gates's decision to license Java, an acclaimed Internet programming language developed by Sun Microsystems, so that it will be able to run in future versions of Microsoft's browser, called Internet Explorer. The increase in Internet competition should benefit consumers.", acknowledgement = ack-nhfb, fjournal = "U.S. news and world report", keywords = "Java Computer language; McNealy, Scott; SPARC microprocessors; Sun Microsystems Inc", } @Article{Fogarty:1995:NSR, author = "Kevin Fogarty and John Cox", title = "News: {SunSoft} Rolls Out Object Offering", journal = j-NETWORK-WORLD, pages = "??--??", day = "22", month = sep, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Misc{Frentzen:1995:JBO, author = "Jeffrey Frentzen", title = "{Java} brewing online publishing change", howpublished = "PC Week Online", day = "23", month = oct, year = "1995", bibdate = "Sun Dec 17 09:00:38 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.zdnet.com/~pcweek/navigator/1023/nav1023.html", acknowledgement = ack-jd, } @Article{Gibbs:1995:NDL, author = "Mark Gibbs", title = "News: {A} Devilish Letter to {Bill Gates}", journal = j-NETWORK-WORLD, pages = "??--??", day = "19", month = dec, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Gonzalez:1995:IJH, author = "Sean Gonz{\'a}lez", title = "{InternetWorking} --- {Java} and {HotJava}", journal = j-PC-MAGAZINE, volume = "14", number = "18", pages = "265--265", year = "1995", CODEN = "PCMGEP", ISSN = "0888-8507", ISSN-L = "0888-8507", bibdate = "Thu Jan 04 18:52:08 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "PC Magazine", } @Article{Gonzalez:1995:JHW, author = "Sean Gonz{\'a}lez", title = "{Java \& HotJava}: Waking Up the {Web}", journal = j-PC-MAGAZINE, pages = "??--??", day = "24", month = oct, year = "1995", CODEN = "PCMGEP", ISSN = "0888-8507", ISSN-L = "0888-8507", bibdate = "Sun Dec 17 09:04:48 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.zdnet.com/~pcmag/issues/1418/pcm00085.htm", acknowledgement = ack-jd, fjournal = "PC Magazine", } @Article{Gosling:1995:JIB, author = "James Gosling", title = "{Java} intermediate bytecodes", journal = j-SIGPLAN, volume = "30", number = "3", pages = "111--118", month = mar, year = "1995", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Wed Dec 17 07:22:52 2003", bibsource = "http://portal.acm.org/; http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/plan/202529/p111-gosling/", abstract = "Java is a programming language loosely related to C++. Java originated in a project to produce a software development environment for small distributed embedded systems. Programs needed to be small, fast, `safe' and portable. These needs led to a design that is rather different from standard practice. In particular the form of compiled programs is machine independent bytecodes. But we needed to manipulate programs in ways usually associated with higher level, more abstract intermediate representations. This lets us build systems that are safer, less fragile, more portable, and yet show little performance penalty while still being simple.", acknowledgement = ack-nhfb, affiliation = "Sun Microsystems Lab., Mountain View, CA, USA", classcodes = "C6140D (High level languages); C6115 (Programming support); C6150N (Distributed systems software); C6110B (Software engineering techniques); C6150C (Compilers, interpreters and other processors); C6110J (Object-oriented programming)", classification = "C6110B (Software engineering techniques); C6110J (Object-oriented programming); C6115 (Programming support); C6140D (High level languages); C6150C (Compilers, interpreters and other processors); C6150N (Distributed systems software)", confdate = "22 Jan. 1995", conflocation = "San Francisco, CA, USA; 22 Jan. 1995", conftitle = "ACM SIGPLAN Workshop on Intermediate Representations (IR'95)", corpsource = "Sun Microsystems Lab., Mountain View, CA, USA", fjournal = "ACM SIGPLAN Notices", keywords = "ACM SIGPLAN workshop; C++-like; C++-like language; compiled; Compiled programs; development systems; distributed embedded systems; distributed processing; high level; intermediate; Intermediate representations; Java intermediate bytecodes; language; languages; Machine independent bytecodes; machine independent bytecodes; object-oriented languages; Performance; performance; Portability; portability; program compilers; programming environments; Programming language; programming language; programs; real-time systems; representations; Safe programs; safe programs; small; Small distributed embedded systems; Small programs; small programs; software; Software development environment; software development environment", pubcountry = "USA", thesaurus = "Development systems; Distributed processing; High level languages; Object-oriented languages; Program compilers; Programming environments; Real-time systems; Software portability", treatment = "P Practical", } @Article{Gosling:1995:WJ, author = "James Gosling and Arthur {van Hoff}", title = "Winner: {Java}", journal = j-PC-MAGAZINE, pages = "??--??", day = "19", month = dec, year = "1995", CODEN = "PCMGEP", ISSN = "0888-8507", ISSN-L = "0888-8507", bibdate = "Thu Apr 30 13:05:05 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.zdnet.com/~pcmag/issues/1422/pcm00073.htm", acknowledgement = ack-jd, fjournal = "PC Magazine", } @Article{Green:1995:MLS, author = "Heather Green", title = "{Microsoft} to License {Sun Java} Program", journal = j-NEW-YORK-TIMES-SYNDICATE, pages = "??--??", day = "7", month = dec, year = "1995", bibdate = "Sun Dec 17 09:06:41 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://nytsyn.com/live/News3/341_120795_134125_6450.html", acknowledgement = ack-jd, fjournal = "New York Times Syndicate", } @Article{Guth:1995:IAV, author = "Rob Guth", title = "Interview: {Arthur van Hoff}, Creator of {Hot Java}", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "14", month = dec, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Guth:1995:NCAa, author = "Rob Guth", title = "News: {Comdex Asia}: {Sun} Plans to License {Java} to {Lotus}, {Intuit}", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "26", month = oct, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Guth:1995:NCAb, author = "Rob Guth", title = "News: {Comdex Asia}: Network to Shift Power Balance, {Gage} Says", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "31", month = oct, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Guth:1995:NFL, author = "Rob Guth", title = "News: {Fujitsu} to License {Java}, Plans Broad Implementation", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "19", month = dec, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Guth:1995:NFS, author = "Rob Guth", title = "News: {Fujitsu}, {Sega} Partner Over Network Game Services", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "31", month = oct, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Guth:1995:NJV, author = "Rob Guth", title = "News: {Japanese} Vendors Wake Up to Smell of {Java}", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "12", month = dec, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Guth:1995:NPB, author = "Rob Guth", title = "News: {3Com} Plans Bundles with {Netscape}, {Whiteboard}, {Java}", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "04", month = dec, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Guth:1995:NSB, author = "Rob Guth", title = "News: {Sun} Brews {Java} Scheme for {General Magic}", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "08", month = dec, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Guth:1995:NSS, author = "Rob Guth", title = "News: {Sun} Sees {Visual Basic} in {Microsoft}'s {Java} License", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "11", month = dec, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Guth:1995:NST, author = "Rob Guth", title = "News: {Sun}, {Toshiba} to Announce Broad Agreement", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "21", month = sep, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Guth:1995:NTD, author = "Rob Guth", title = "News: {Toshiba}-{Sun} Deal Highlights {Japan}'s Interest in {Java}", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "25", month = sep, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Misc{Hacking:1995:INW, author = "Edwin Hacking and Denise Marcucci and John Gage and Arthur {van Hoff} and Bill Joy and Geoffrey Baehr and Karl Jacob", title = "{Internet}: the next wave", day = "11", month = jul, year = "1995", bibdate = "Sat Aug 17 16:45:43 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "1 videocassette (60 min.)", acknowledgement = ack-nhfb, alttitle = "Sunergy, 15 [videorecording] Next wave [videorecording]", annote = "Teleconference broadcast live from Transvideo Studios, Mountain View, CA on July 11, 1995. Taped from a satellite transmission by the University of California, Berkeley, Office of Media Services. Closed captioned for the hearing impaired. Producers, Edwin Hacking, Denise Marcucci. Host: John Gage (Sun Microsystems). Panel: Arthur Van Hoff (Sun Microcystems), Bill Joy (Sun Microsystems), Geoffrey Baehr (Sun Microsystems), Karl Jacob (Dimension X) In this teleconference a panel of experts examines changes in the fundamental programming language infrastructure on Internet brought about by Java, a new simple object-oriented secure language that's based on message passing across the Net. VHS.", keywords = "Compiling (Electronic computers); Computer networks -- Management; Computer software -- Development; Films for the hearing impaired; Information technology; Internet (Computer network); Java (Computer program language); Object-oriented programming (Computer science)", } @Article{Hayes:1995:EBJ, author = "Frank Hayes", title = "{Espresso} brews up {Java} apps", journal = j-COMPUTERWORLD, volume = "29", number = "51", pages = "8--8", month = dec, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Thu Dec 21 14:19:20 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1995:NJI, author = "Frank Hayes", title = "News: {Java} is Hot", journal = j-COMPUTERWORLD, pages = "??--??", day = "08", month = dec, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1995:NSH, author = "Frank Hayes", title = "News: {Symantec} Hopes {Espresso} Will Make {Java} Go Down Easier", journal = j-COMPUTERWORLD, pages = "??--??", day = "15", month = dec, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1995:NSM, author = "Frank Hayes and Jean S. Bozman", title = "News: {Sun Micro} to Field Apps, Tools with {Java}", journal = j-COMPUTERWORLD, pages = "??--??", day = "10", month = nov, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1995:NTF, author = "Frank Hayes", title = "News: Toolmakers Focus on {Internet} Development", journal = j-COMPUTERWORLD, pages = "??--??", day = "22", month = dec, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1995:NVU, author = "Frank Hayes", title = "News: {VB} Users Wait and See About {Web} Scripting Tools", journal = j-COMPUTERWORLD, pages = "??--??", day = "14", month = dec, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Headden:1995:GS, author = "Susan Headden", title = "The glow of success", journal = j-US-NEWS-WORLD-REP, volume = "119", pages = "63--64", day = "4", month = dec, year = "1995", CODEN = "XNWRAV", ISSN = "0041-5537", bibdate = "Sat Sep 07 18:48:06 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Scott McNealy's longtime commitment to nonproprietary technologies and network computing has resulted in a dramatic turnaround in the fortunes of Sun Microsystems. Between the fiscal years 1990 and 1995 Sun's revenues increased 139 percent and its net income rose 221 percent. Over the past six months the company's stock has tripled and its new computer language, Java, has taken the Internet by storm. Java is a type of international language that understands all computers. According to McNealy, Java not only proves that the network is the computer, but it may even loosen the grip of Microsoft because it can be used with any system", acknowledgement = ack-nhfb, fjournal = "U.S. news and world report", } @Article{Heck:1995:PRN, author = "Mike Heck", title = "Product Review: {Netscape Navigator} Sets Own Standards", journal = j-INFOWORLD, pages = "??--??", day = "29", month = nov, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Heskett:1995:NCW, author = "Ben Heskett", title = "News: Companies to Watch in 1996 --- {SunSoft Inc.}", journal = j-NETWORK-WORLD, pages = "??--??", day = "22", month = dec, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Misc{IBM:1995:ILJ, author = "{IBM Corporation}", title = "{IBM} licenses {Java} technology from {Sun Microsystems} for use in {Internet} products", howpublished = "press release", day = "6", month = dec, year = "1995", bibdate = "Sun Dec 17 09:08:02 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ibm.com/News/javapr.html", acknowledgement = ack-jd, } @Article{InfoWorld:1995:NOA, author = "{InfoWorld staff}", title = "News: {Oracle} to Announce {Java} Support, Progress to Release {Ole} Controls", journal = j-INFOWORLD, pages = "??--??", day = "21", month = oct, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{InfoWorld:1995:NP, author = "{InfoWorld staff}", title = "News: Pipeline", journal = j-INFOWORLD, pages = "??--??", day = "22", month = nov, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{InfoWorld:1995:NPJ, author = "{InfoWorld staff}", title = "News: Pipeline --- {Java} Due in 1996", journal = j-INFOWORLD, pages = "??--??", day = "03", month = oct, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{InfoWorld:1995:NSOb, author = "{InfoWorld staff}", title = "News: {SunService} Offers {Java} Programming Courses", journal = j-INFOWORLD, pages = "??--??", day = "20", month = dec, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{InfoWorld:1995:NSS, author = "{InfoWorld staff}", title = "News: {Sun} Set to Release {DOE} on {Solaris}", journal = j-INFOWORLD, pages = "??--??", day = "16", month = sep, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{InfoWorld:1995:NTS, author = "{InfoWorld staff}", title = "News: Tool Set Plugs {Java} Apps into {CORBA}", journal = j-INFOWORLD, pages = "??--??", day = "12", month = dec, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Johnston:1995:CML, author = "Stuart J. Johnston and Kim S. Nash", title = "Capitulation! {Microsoft} to license {Java}; {Internet} standards war avoided", journal = j-COMPUTERWORLD, volume = "29", number = "50", pages = "1, 141", day = "11", month = dec, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Sun Dec 17 10:18:53 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Johnston:1995:NMO, author = "Stuart J. Johnston and Kim S. Nash", title = "News: {Microsoft} Opts to Avoid {Internet} Standards War", journal = j-COMPUTERWORLD, pages = "??--??", day = "08", month = dec, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Johnston:1995:NMP, author = "Stuart J. Johnston and Kim S. Nash", title = "News: {Microsoft} Plans to Unveil {Internet} Products", journal = j-COMPUTERWORLD, pages = "??--??", day = "01", month = dec, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Kalin:1995:NIW, author = "Sari Kalin", title = "News: {Internet World} 95: {Sun}'s {Schmidt} Foresees {Net} Appliance", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "30", month = oct, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Kalin:1995:NWC, author = "Sari Kalin", title = "News: {WWW Conference}: {Web Consortium} Forges {Active Object} Agreement", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "12", month = dec, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Karpinski:1995:HJA, author = "Richard Karpinski", title = "{Hot Java} arrives: {Sun} aims to revolutionize the {Web}", journal = j-INTERAGE, pages = "??--??", day = "22", month = may, year = "1995", bibdate = "Sun Dec 17 09:09:42 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://techweb.cmp.com/ia/15issue/15hotjava.html", acknowledgement = ack-jd, } @Article{Karpinski:1995:SLC, author = "Richard Karpinski", title = "{ScriptX} language could give {Sun}'s {Hot Java} a run for its money---{IBM} adds {Web} hooks to multimedia tools", journal = j-INTERAGE, pages = "??--??", day = "17", month = jul, year = "1995", bibdate = "Sun Dec 17 09:10:35 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://techweb.cmp.com/ia/19issue/19ibm.html", acknowledgement = ack-jd, } @Unpublished{Keishiro:1995:JJC, author = "T. Keishiro", title = "{J2C Java} {.class} to {C} translator", year = "1995", bibdate = "Tue Mar 3 12:27:33 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "J2C is compared with Harissa in \cite{Muller:1997:HFE}.", URL = "http://www.webity.co.jp/info/andoh/java/j2c.html", } @Article{Knowles:1995:NUE, author = "Anne Knowles", title = "News: {Unix} Expo: Second-Tier Vendors Unveil Hardware", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "21", month = sep, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Kohlhepp:1995:NGW, author = "Robert J. Kohlhepp", title = "Next Generation {Web} Browsing", journal = j-NETWORK-COMPUTING, volume = "6", number = "9", pages = "48--??", day = "1", month = aug, year = "1995", CODEN = "NCOMEV", ISSN = "1046-4468", bibdate = "Wed May 22 12:48:55 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", URL = "http://techweb.cmp.com/techweb/nc/609/609sneak1.html", abstract = "Today's Web browsers may be limited by HTML specifications, but VRML and Java are two new languages designed to enhance browsing and take the on-line world to another level.", acknowledgement = ack-jd # " and " # ack-nhfb, fjournal = "Network Computing", } @Article{Laberis:1995:EHJ, author = "Bill Laberis", title = "Editorial: {Hot Java}!", journal = j-COMPUTERWORLD, volume = "29", number = "50", pages = "36--36", day = "11", month = dec, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Sun Dec 17 15:00:15 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{LaMonica:1995:NCC, author = "Martin LaMonica", title = "News: Counting the component change", journal = j-INFOWORLD, pages = "??--??", day = "14", month = nov, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{LaMonica:1995:NIW, author = "Martin LaMonica", title = "News: {IBM} to Woo {Windows} Developers for {OpenDoc}", journal = j-INFOWORLD, pages = "??--??", day = "04", month = nov, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{LaMonica:1995:NND, author = "Martin LaMonica", title = "News: {Neuron Data}, {SunSoft} Take Different Paths to {Web}", journal = j-INFOWORLD, pages = "??--??", day = "16", month = dec, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{LaMonica:1995:NOE, author = "Martin LaMonica", title = "News: {Openscape} Emulates, Augments {Visual Basic}", journal = j-INFOWORLD, pages = "??--??", day = "03", month = dec, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{LaMonica:1995:NSH, author = "Martin LaMonica", title = "News: {Symantec} Hot to Deliver {Espresso}", journal = j-INFOWORLD, pages = "??--??", day = "16", month = dec, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{LaMonica:1995:NSN, author = "Martin LaMonica", title = "News: {SunSoft}'s {Neo} Object Framework Embraces {Internet}", journal = j-INFOWORLD, pages = "??--??", day = "23", month = sep, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{LaMonica:1995:NTV, author = "Martin LaMonica", title = "News: Tool Vendors Tie {Web} to Client/Server Apps", journal = j-INFOWORLD, pages = "??--??", day = "10", month = dec, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Leinfuss:1995:FSY, author = "Emily Leinfuss", title = "Feature: Sorting out your {Web}-Database Options", journal = j-INFOWORLD, pages = "??--??", day = "05", month = dec, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Leonard:1995:JJJ, author = "Andrew Leonard", title = "{Java Java Java}: Is it the Future or the End?", journal = j-WEB-REVIEW, pages = "??--??", day = "22", month = nov, year = "1995", bibdate = "Sun Dec 17 09:15:58 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.gnn.com/gnn/wr/nov22/features/java/index.html", acknowledgement = ack-jd, fjournal = "Web Review", } @Article{Liederman:1995:DEY, author = "Erica Liederman", title = "`{Java Day}' event: You are there", journal = j-SUNWORLD-ONLINE, volume = "11", pages = "??--??", year = "1995", ISSN = "1091-8914", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sun.com/sunworldonline/swol-11-1995/swol-11-java.event.html", abstract = "Couldn't get a ticket for the hottest show in Silicon Valley? Here's what our reporter saw and heard at the event that was equal parts tent revival and technical conference.", acknowledgement = ack-nhfb, fjournal = "SunWorld online", } @Misc{Liederman:1995:JDY, author = "Erica Liederman", title = "{Java} Day: You are there", howpublished = "SunWorld Online", month = nov, year = "1995", bibdate = "Sun Dec 17 09:17:36 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.Sun.COM/sunworldonline/swol-11-1995/swol-11-java.event.html", acknowledgement = ack-jd, } @Article{Liederman:1995:MLJ, author = "Erica Liederman", title = "{Microsoft} licenses {Java}", journal = j-SUNWORLD-ONLINE, volume = "12", pages = "??--??", month = dec, year = "1995", ISSN = "1091-8914", bibdate = "Thu Apr 4 07:27:37 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sun.com/sunworldonline/swol-12-1995/swol-12-microsoft.html", abstract = "In a stunning announcement, Microsoft said it had signed a source-code agreement for Java, and plans to Java-enable its browser.", acknowledgement = ack-jd, fjournal = "SunWorld online", } @Article{Lim:1995:BDE, author = "W. Lim", title = "The {BALI} development environment for small mobile robots", journal = j-PROC-SPIE, volume = "2591", pages = "55--65", month = "????", year = "1995", CODEN = "PSISDG", ISSN = "0277-786X (print), 1996-756X (electronic)", ISSN-L = "0277-786X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7420 (Control engineering computing); C3390C (Mobile robots)C6180G (Graphical user interfaces); C6110J (Object-oriented programming); C6115 (Programming support); C6140D (High level languages); C5130 (Microprocessor chips)", conflocation = "Philadelphia, PA, USA; 23-24 Oct. 1995", conftitle = "Mobile Robots X", fjournal = "Proceedings of the SPIE --- The International Society for Optical Engineering", keywords = "68HC11-based motherboard; BALI development environment; environment maps; graphical user interfaces; Java; microcontrollers; MIT 6.270; mobile robots; object-oriented languages; object-oriented methods; orientation maps; project; robot; robot programming; sensor readings; small mobile robots; status information; support environments", sponsororg = "SPIE", treatment = "P Practical", } @Misc{Lotus:1995:LOP, author = "{Lotus Development Corporation.}", title = "{Lotus} Outlines Plans to Deliver Powerful Integration of {Notes} And {World Wide Web}---Announces {Lotus Notes} Server That Includes Native {Notes} Support for {HTTP}, {HTML} and {Java} Technology", howpublished = "press release", day = "13", month = dec, year = "1995", bibdate = "Sun Dec 17 09:19:31 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.Lotus.com/corpcomm/3406.htm", acknowledgement = ack-jd, } @Article{Louis:1995:JMC, author = "Tristan Louis", title = "{Java} on the Menu: Causing Jitters?", journal = j-WEB-WEEK, pages = "??--??", month = jun, year = "1995", CODEN = "WEWEFP", bibdate = "Sun Dec 17 09:22:39 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.mecklerweb.com/ww/news/june-95/paper/df/1-2java.html", acknowledgement = ack-jd, fjournal = "Web Week", } @Article{Louis:1995:JPN, author = "Tristan Louis", title = "{Java}: Promising, But Needs Work", journal = j-WEB-WEEK, pages = "??--??", month = aug, year = "1995", CODEN = "WEWEFP", bibdate = "Sun Dec 17 09:21:06 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.mecklerweb.com/ww/news/aug-95/1-4java.html", acknowledgement = ack-jd, fjournal = "Web Week", } @Article{Louis:1995:SBH, author = "Tristan Louis", title = "{Sun} Brews {HotJava}", journal = j-INTERNET-WORLD, pages = "??--??", month = sep, year = "1995", CODEN = "IERNE8", ISSN = "1064-3923", bibdate = "Sun Dec 17 09:24:18 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.mecklerweb.com/iw/v6n9/news.htm#sun", acknowledgement = ack-jd, fjournal = "Internet World", } @Misc{Macromedia:1995:MSM, author = "{Macromedia}", title = "{Macromedia} \& {Sun Microsystems} To Develop {Internet} Tools And Technology", howpublished = "press release", day = "30", month = oct, year = "1995", bibdate = "Sun Dec 17 09:27:10 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.macromedia.com/Industry/Macro/Ucon/News/sun.html", acknowledgement = ack-jd, } @Article{Maguire:1995:HJH, author = "John G. Maguire", title = "{Hot Java} for {Homer Simpson}: {Sun Microsystems Inc} revives its interactive technology for {Fox Broadcasting Co}'s {3-D Web} site", journal = j-OPEN-COMPUTING, volume = "12", number = "11", pages = "72--??", month = nov, year = "1995", CODEN = "OPCOEB", ISSN = "1078-2370", bibdate = "Sun Dec 17 09:25:52 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.wcmh.com/oc/products/reviews/java9511.html", acknowledgement = ack-jd, fjournal = "Open Computing", } @Article{Mason:1995:NOD, author = "Sara Mason", title = "News: {OSF} Debuts {Open Software ``Mall''} on {Web}", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "01", month = aug, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Misc{McChesney:1995:RJ, author = "John McChesney", title = "Report on {Java}", howpublished = "National Public Radio Morning Edition", day = "27", month = oct, year = "1995", bibdate = "Sun Dec 17 09:29:18 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.realaudio.com/rafiles/npr/password/nb-102701-7.ram", acknowledgement = ack-jd, } @Misc{McChesney:1995:RNS, author = "John McChesney", title = "Report on {Netscape} and {Sun Microsystems}' {JavaScript}", howpublished = "National Public Radio All Things Considered", day = "4", month = dec, year = "1995", bibdate = "Sun Dec 17 09:31:10 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.realaudio.com/rafiles/npr/password/120401-9.ram", acknowledgement = ack-jd, } @Article{McKay:1995:NIP, author = "Niall McKay", title = "News: {IBM} To Preload {Unix} System Software on {RS6000}", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "18", month = dec, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{McKay:1995:NPG, author = "Niall McKay", title = "News: {PowerBuilder} 5.0 Gives Increased {Internet} Support", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "14", month = dec, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{McKenzie:1995:ERS, author = "Bruce J. McKenzie and Corey Yeatman and Lorraine {De Vere}", title = "Error Repair in Shift-Reduce Parsers", journal = j-TOPLAS, volume = "17", number = "4", pages = "672--689", month = jul, year = "1995", CODEN = "ATPSDT", ISSN = "0164-0925 (print), 1558-4593 (electronic)", ISSN-L = "0164-0925", bibdate = "Mon Jul 26 07:49:28 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "See failure report \cite{Bertsch:1999:FPT}.", URL = "http://www.acm.org/pubs/toc/Abstracts/0164-0925/210193.html", abstract = "Local error repair of strings during CFG parsing requires the insertion and deletion of symbols in the region of a syntax error to produce a string that is error free. Rather than precalculating tables at parser generation time to assist in finding such repairs, this article shows how such repairs can be found during shift-reduce parsing by using the parsing tables themselves. This results in a substantial space saving over methods that require precalculated tables. Furthermore, the article shows how the method can be integrated with lookahead to avoid finding repairs that immediately result in further syntax errors. The article presents the results of experiments on a version of the LALR(1)-based parser generator {\em Bison\/} to which the algorithm was added.", acknowledgement = ack-nhfb, fjournal = "ACM Transactions on Programming Languages and Systems", keywords = "algorithms; languages; theory", subject = "{\bf D.3.4}: Software, PROGRAMMING LANGUAGES, Processors, Parsing. {\bf D.3.4}: Software, PROGRAMMING LANGUAGES, Processors, Translator writing systems and compiler generators. {\bf D.3.4}: Software, PROGRAMMING LANGUAGES, Processors, Compilers. {\bf D.2.5}: Software, SOFTWARE ENGINEERING, Testing and Debugging, Error handling and recovery.", } @Article{Messmer:1995:NNIa, author = "Ellen Messmer and Peggy Watt", title = "News: {Networld}+{Interop}: {Microsoft} Sets Sights on {Internet}", journal = j-NETWORK-WORLD, pages = "??--??", day = "29", month = sep, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Messmer:1995:NNIb, author = "Ellen Messmer", title = "News: New {Internet} Commerce Tools Launched", journal = j-NETWORK-WORLD, pages = "??--??", day = "06", month = oct, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Messmer:1995:NNU, author = "Ellen Messmer", title = "News: {Netscape} to Unveil Multimedia {Web} Browser, Tools Suite", journal = j-NETWORK-WORLD, pages = "??--??", day = "15", month = sep, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Messmer:1995:NSL, author = "Ellen Messmer", title = "News: {Sun} to Launch {Internet} Software for Commerce", journal = j-NETWORK-WORLD, pages = "??--??", day = "19", month = may, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Messmer:1995:NWS, author = "Ellen Messmer", title = "News: Which Standard for Future {Web} Development?", journal = j-NETWORK-WORLD, pages = "??--??", day = "11", month = dec, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Metcalfe:1995:CEH, author = "Bob Metcalfe", title = "Column: From the Ether --- Hit the Iway, But Leave the Microwave", journal = j-INFOWORLD, pages = "??--??", day = "12", month = dec, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Metcalfe:1995:CEI, author = "Bob Metcalfe", title = "Column: From the Ether --- Info Appliances", journal = j-INFOWORLD, pages = "??--??", day = "24", month = oct, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Metcalfe:1995:CET, author = "Bob Metcalfe", title = "Column: From the Ether --- {Telescript} on the {Web}", journal = j-INFOWORLD, pages = "??--??", day = "06", month = nov, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Misc{Metrowerks:1995:MCS, author = "Inc. Metrowerks", title = "{Metrowerks} Collaborates with {Sun Microsystems} to Provide {Java} Programming Tools in {CodeWarrior} Product for {Macintosh}", howpublished = "press release", day = "10", month = nov, year = "1995", bibdate = "Sun Dec 17 09:32:21 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.metrowerks.com/news/press/java.html", acknowledgement = ack-jd, } @Misc{Microsoft:1995:ISD, author = "{Microsoft Corporation}", title = "{Internet} Strategy Day", howpublished = "press release", day = "7", month = dec, year = "1995", bibdate = "Sun Dec 17 09:33:44 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.microsoft.com/internet/press.htm", acknowledgement = ack-jd, } @Article{Mills:1995:NBS, author = "Elinor Mills", title = "News: {Borland}, {Spyglass} License {Sun}'s {Java Internet} Technology", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "08", month = nov, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Mills:1995:NMS, author = "Elinor Mills", title = "News: {Macromedia}, {Sun} Join to Put Multimedia on the {Internet}", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "31", month = oct, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Mills:1995:NPO, author = "Elinor Mills", title = "News: {PC} Outlook: Servers, Portables, {Starfish} and {Netscape}", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "05", month = dec, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Mills:1995:NVD, author = "Elinor Mills", title = "News: Vendors Debate {Internet} Appliance Feasibility", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "08", month = dec, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Moore:1995:NWT, author = "Steve Moore", title = "News: {Web} Technologies Promise to Eliminate Enterprise Woes", journal = j-COMPUTERWORLD, pages = "??--??", day = "11", month = aug, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Morin:1995:OW, author = "Richard Morin", title = "{Oak} and {WebRunner}", journal = j-SUNEXPERT, volume = "6", number = "2", pages = "??--??", month = feb, year = "1995", ISSN = "1053-9239", bibdate = "Sat Dec 16 14:59:28 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Oak was the internal name at Sun Microsystems for this project, but was changed to Java for trademark reasons.", URL = "http://java.sun.com/./press/940200sunexpert/index.html", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Nance:1995:WOG, author = "Barry Nance", title = "A Whole Other Galaxy: quickly {develop} object-oriented applications without the shortcomings of high-level abstraction", journal = j-BYTE, volume = "20", number = "7", pages = "155--??", month = jul, year = "1995", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Aug 23 07:18:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Nash:1995:NIU, author = "Kim S. Nash", title = "News: {Iband} Unveils Backstage at {Web Innovation Show}", journal = j-COMPUTERWORLD, pages = "??--??", day = "08", month = dec, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Nash:1995:NNE, author = "Kim S. Nash", title = "News: {Netscape} Expands Beyond Roots", journal = j-COMPUTERWORLD, pages = "??--??", day = "29", month = sep, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Nash:1995:NNI, author = "Kim S. Nash", title = "News: {Netscape} to Introduce {Web} Developer Tools", journal = j-COMPUTERWORLD, pages = "??--??", day = "15", month = sep, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Nash:1995:NSN, author = "Kim S. Nash and Stuart J. Johnston", title = "News: {Sun}, {Netscape} Gun for {Microsoft} with {Java} Script", journal = j-COMPUTERWORLD, pages = "??--??", day = "01", month = dec, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Misc{NaturalIntelligence:1995:RA, author = "{Natural Intelligence, Inc.}", title = "`{ROASTER}' Announcement", howpublished = "press release", day = "18", month = oct, year = "1995", bibdate = "Sun Dec 17 09:34:56 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.natural.com/pages/products/roaster/roasterpr.html", acknowledgement = ack-jd, } @Misc{Nelson:1995:HJW, author = "Brian Nelson", title = "{Hot Java} Wakes up {Internet}", howpublished = "Cable News Network Computer Connection", day = "9", month = dec, year = "1995", bibdate = "Sun Dec 17 09:36:12 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cnn.com/TRANSCRIPTS/conn/conn120995+1.html", acknowledgement = ack-jd, } @Misc{Nelson:1995:WWW, author = "Brian Nelson", title = "{World Wide Web} gets jolt from {Java} and {Shockwave}", howpublished = "Cable News Network", day = "8", month = dec, year = "1995", bibdate = "Sun Dec 17 09:37:33 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cnn.com/TECH/9512/java/index.html", acknowledgement = ack-jd, } @Misc{Netscape:1995:NLS, author = "{Netscape Communications Corporation}", title = "{Netscape} to License {Sun}'s {Java} Programming Language", howpublished = "press release", day = "23", month = may, year = "1995", bibdate = "Sun Dec 17 09:39:49 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://home.netscape.com/newsref/pr/newsrelease25.html", acknowledgement = ack-jd, } @Misc{Netscape:1995:NSA, author = "{Netscape Communications Corporation}", title = "{Netscape} and {Sun} Announce {Javascript}, the Open, Cross-Platform Object Scripting Language for Enterprise Networks and the {Internet}", howpublished = "press release", day = "4", month = dec, year = "1995", bibdate = "Sun Dec 17 09:38:36 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://home.netscape.com/newsref/pr/newsrelease67.html", acknowledgement = ack-jd, } @Article{NetworkWorld:1995:NIN, author = "{Network World staff}", title = "News: {InterCon}, {Navisoft} Boost Profiles on {Web} Browser Scene", journal = j-NETWORK-WORLD, pages = "??--??", day = "19", month = sep, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Niemeyer:1995:EJA, author = "Pat Niemeyer", title = "Exploring {Java}: {A} Tutorial Introduction", journal = j-X-RESOURCE, volume = "16", number = "1", pages = "77--102", month = dec, year = "1995", CODEN = "XRESEA", ISBN = "0-937175-79-X", ISBN-13 = "978-0-937175-79-8", ISSN = "1058-5591", bibdate = "Sat Jan 13 11:42:58 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "The X Resource", } @Article{OConnell:1995:JIS, author = "Michael O'Connell", title = "{Java}: The Inside Story", journal = j-SUNWORLD-ONLINE, volume = "07", pages = "??--??", month = jul, year = "1995", ISSN = "1091-8914", bibdate = "Sun Dec 17 09:40:55 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sun.com/sunworldonline/swol-07-1995/swol-07-java.html", abstract = "When a handful of Sun engineers started work on what's become Java, none imagined it would appear in a graphical Internet browser. In fact, such browsers didn't even exist! We reveal what Java was meant to be, its development, and what its future holds.", acknowledgement = ack-jd, fjournal = "SunWorld online", } @Misc{OConnell:1995:JPT, author = "Michael O'Connell", title = "{Java} proliferates through licensing deals", howpublished = "SunWorld Online", month = dec, year = "1995", bibdate = "Sun Dec 17 09:41:50 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sun.com/sunworldonline/swol-12-1995/swol-12-javadeal.html", acknowledgement = ack-jd, } @Article{OConnell:1995:JWD, author = "Michael O'Connell", title = "{Java} wheeling and dealing", journal = j-SUNWORLD-ONLINE, volume = "12", pages = "??--??", year = "1995", ISSN = "1091-8914", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sun.com/sunworldonline/swol-12-1995/swol-12-javadeal.html", abstract = "Sun's Java group has been making waves and making deals. Here's a roundup of the latest Java business partnerships.", acknowledgement = ack-nhfb, fjournal = "SunWorld online", } @Article{OConnell:1995:NAJ, author = "Michael O'Connell", title = "{Netscape} adds {Java} and more", journal = j-SUNWORLD-ONLINE, volume = "10", pages = "??--??", year = "1995", ISSN = "1091-8914", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sun.com/sunworldonline/swol-10-1995/swol-10-netscape.html", abstract = "Increased functionality enhances the present, support for Java makes for a robust future for Netscape's next-generation browser, shipping soon.", acknowledgement = ack-nhfb, fjournal = "SunWorld online", } @Misc{OConnell:1995:NNG, author = "Michael O'Connell", title = "{Netscape}'s next generation", howpublished = "SunWorld Online", month = oct, year = "1995", bibdate = "Sun Dec 17 09:43:15 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sun.com/sunworldonline/swol-10-1995/swol-10-netscape.html", acknowledgement = ack-jd, } @Article{Ouellette:1995:NLP, author = "Tim Ouellette", title = "News: {Lotus} Prepares to Meet {Internet} Head On", journal = j-COMPUTERWORLD, pages = "??--??", day = "15", month = dec, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Ouellette:1995:NNU, author = "Tim Ouellette", title = "News: {Notes} Users Eager to Get Upgrade", journal = j-COMPUTERWORLD, pages = "??--??", day = "22", month = dec, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Parr:1995:APL, author = "Terence J. Parr and Russell W. Quong", title = "{ANTLR}: {A} Predicated-{LL}(k) Parser Generator", journal = j-SPE, volume = "25", number = "7", pages = "789--810", month = jul, year = "1995", CODEN = "SPEXBL", ISSN = "0038-0644 (print), 1097-024X (electronic)", ISSN-L = "0038-0644", bibdate = "Sat Sep 13 15:27:10 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "ftp://ftp.parr-research.com/pub/pccts/papers/antlr.ps; ftp://ftp.parr-research.com/pub/pccts/papers/needlook.ps; ftp://ftp.parr-research.com/pub/pccts/papers/predicates.ps.Z; ftp://ftp.parr-research.com/pub/pccts/papers/sorcerer.ps.Z; http://java.magelang.com/antlr/entry.html; http://www.parr-research.com/antlr/parr.phd.thesis.ps.zip", acknowledgement = ack-nhfb, fjournal = "Software---Practice and Experience", } @Article{Parsons:1995:IEH, author = "Michael Parsons", title = "Interview: {Eric Hahn} of {Collabra} Talks {Netscape} Futures", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "06", month = oct, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Parsons:1995:INC, author = "Michael Parsons", title = "Interview: {Next Computer's Landwehr} Talks {WebObjects}", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "15", month = aug, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Parsons:1995:NIJ, author = "Michael Parsons", title = "News: {IBM} Jumps on {Java} Bandwagon", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "06", month = dec, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Parsons:1995:NML, author = "Michael Parsons", title = "News: {Microsoft} Launches {VB Script}, Deals with {Oracle}, {Spyglass}", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "07", month = dec, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Parsons:1995:NMW, author = "Michael Parsons", title = "News: {Microsoft} Will License {Java} and Give Away Browser", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "07", month = dec, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Parsons:1995:NSS, author = "Michael Parsons", title = "News: {SunWorld}: {Sun} Takes Lid Off {Java}, {Netscape} Smells Coffee", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "24", month = may, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Parsons:1995:NWIa, author = "Michael Parsons", title = "News: {Web} Innovation: {SGI}, {Sun} and {Netscape} Boost {VRML}, {Java}", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "05", month = dec, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Parsons:1995:NWIb, author = "Michael Parsons", title = "News: {Web} Innovations: {Andreessen} Launches {Java}Script", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "05", month = dec, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Pelline:1995:NSJ, author = "Jeff Pelline", title = "New Simpler {Java Script} Program To Help {Web} Builders", journal = j-NEW-YORK-TIMES-SYNDICATE, pages = "??--??", day = "2", month = dec, year = "1995", bibdate = "Sun Dec 17 09:45:35 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://nytsyn.com/live/News3/336_120295_185637_6719.html", acknowledgement = ack-jd, fjournal = "New York Times Syndicate", } @Article{Petreley:1995:CW, author = "Nicholas Petreley", title = "Column: Down to the Wire", journal = j-INFOWORLD, pages = "??--??", day = "18", month = dec, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Misc{Postmodern:1995:PCA, author = "Postmodern Computing", title = "{PostModern Computing} announces {Black Widow} --- an {Object Request Broker} that connects {Web} browsers to {CORBA} objects using {Sun}'s {Java} language", howpublished = "press release", day = "11", month = dec, year = "1995", bibdate = "Sun Dec 17 09:46:37 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.pomoco.com/bwdprs.html", acknowledgement = ack-jd, } @Article{Ricciuti:1995:NDM, author = "Mike Ricciuti", title = "News: Database Makers Head for the {Web}", journal = j-INFOWORLD, pages = "??--??", day = "10", month = dec, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Ricciuti:1995:NPD, author = "Mike Ricciuti", title = "News: {Paradox}, {dBase} Future Grim", journal = j-INFOWORLD, pages = "??--??", day = "03", month = dec, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Richman:1995:NOO, author = "Dan Richman", title = "News: {Oracle} Offers Free {Web} Browser and Software", journal = j-COMPUTERWORLD, pages = "??--??", day = "27", month = oct, year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Ritchey:1995:J, author = "Tim Ritchey", title = "{Java}!", publisher = pub-NRP, address = pub-NRP:adr, pages = "x + 366", year = "1995", ISBN = "1-56205-533-X", ISBN-13 = "978-1-56205-533-2", LCCN = "TK5105.888.R58 1995", bibdate = "Thu Mar 28 05:30:36 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", URL = "http://java.sun.com/", acknowledgement = ack-nhfb, annote = "Gives examples of how to write your own Java code. Examples from book are on CD-ROM disk. System requirements: Microsoft Windows; download additional software, Java and Hot Java by Sun Microsystems.", keywords = "Computer Science; Internet (Computer network); Java (Computer program language)", xxnote = "This ISBN occurs in \cite{Ritchey:1996:PJ,Ritchey:1995:PJB,Ritchey:1995:J}.", } @Book{Ritchey:1995:PJB, author = "Tim Ritchey", title = "Programming with {Java}. Beta 2.0 {Java}", publisher = pub-NRP, address = pub-NRP:adr, pages = "xiii + 389", day = "1", month = nov, year = "1995", ISBN = "1-56205-533-X", ISBN-13 = "978-1-56205-533-2", LCCN = "QA 76.73 J3 R482 1995", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/newriders/; http://www.amazon.com/exec/obidos/ISBN=156205533X/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35.00", URL = "http://java.sun.com/; http://www.mcp.com/113779062800198/cgi-bin/bag?isbn=1-56205-533-X&last=/bookstore", acknowledgement = ack-nhfb, annote = "CD-ROM includes: Java developers kit for Windows 95, Windows NT, and Sun Solaris 2.x, Java applet tools, example applets from the text. Explains the differences between Java, C, and C++ and how you can exploit those differences on the Internet. Covers Beta 2.0.", dimensions = "9.09in x 7.37in x 1.12in", keywords = "Computer Science; Internet (Computer network); Java (Computer program language)", paperback = "yes", xxnote = "This ISBN occurs in \cite{Ritchey:1996:PJ,Ritchey:1995:PJB,Ritchey:1995:J}.", xxtitle = "Programming With {Java}!", } @Article{Rodley:1995:PHA, author = "John Rodley", title = "Programming {HotJava} Applets", journal = j-DDJ, volume = "20", type = "SB", number = "??", pages = "7--??", month = nov # "\slash " # dec, year = "1995", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Mon Sep 2 09:09:39 MDT 1996", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Rodriguez:1995:SSL, author = "Arturo A. Rodriguez and Martin Fisher and Brian Markey", title = "Standards: Scripting languages emerge in standards bodies", journal = j-IEEE-MULTIMEDIA, volume = "2", number = "4", pages = "88--92", month = "Winter", year = "1995", CODEN = "IEMUE4", DOI = "http://dx.doi.org/10.1109/93.482300", ISSN = "1070-986X (print), 1941-0166 (electronic)", ISSN-L = "1070-986X", bibdate = "Mon Jan 29 16:49:41 MST 2001", bibsource = "http://www.computer.org/multimedia/mu1995/; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses the proposed Standard Multimedia\slash Hypermedia Scripting Language (SMSL), a superset of Java.", URL = "http://dlib.computer.org/mu/books/mu1995/pdf/u40088.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE MultiMedia", } @Article{Rymer:1995:CCI, author = "John Rymer", title = "Column: The Challenge of Incompatible Object Systems", journal = j-NETWORK-WORLD, pages = "??--??", day = "24", month = may, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Schlender:1995:WII, author = "Brent Schlender", title = "Whose {Internet} is it, Anyway?", journal = j-FORTUNE, pages = "??--??", day = "11", month = dec, year = "1995", CODEN = "FORTAP", ISSN = "0015-8259", bibdate = "Sun Dec 17 09:47:58 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://pathfinder.com/fortune/magazine/1995/951211/infotech.internet.html", acknowledgement = ack-jd, fjournal = "Fortune", } @Misc{SGI:1995:SGS, author = "{Silicon Graphics, Inc.}", title = "{Silicon Graphics}, {Sun Microsystems} and {Netscape} join forces to take the {Web} to the next level", howpublished = "press release", day = "4", month = dec, year = "1995", bibdate = "Sun Dec 17 09:49:25 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sgi.com/Products/cosmo/sgisun.htm", acknowledgement = ack-jd, } @Article{Shah:1995:SRS, author = "Rawn Shah", title = "Show report: {SIGGRAPH} 95/{Java BOF}", journal = j-SUNWORLD-ONLINE, volume = "09", pages = "??--??", year = "1995", ISSN = "1091-8914", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sun.com/sunworldonline/swol-09-1995/swol-09-siggraph.html", abstract = "Javatize! The view from the graphics show in LA, scene of the world's first Java BOF meeting -- though VRML did a better job of dazzling the crowds.", acknowledgement = ack-nhfb, fjournal = "SunWorld online", } @Article{Singh:1995:CNDa, author = "Jai Singh", title = "Column: From the News Desk --- The {Cold War} of the {Internet}", journal = j-INFOWORLD, pages = "??--??", day = "04", month = dec, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Singh:1995:CNDb, author = "Jai Singh", title = "Column: From the News Desk --- It Seems Pigs Can Fly", journal = j-INFOWORLD, pages = "??--??", day = "12", month = dec, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Singh:1995:IOB, author = "Jai Singh and Nick Wingfield", title = "Interview: {Oracle}'s {Benioff} Jabs at {Netscape}, {Microsoft}", journal = j-INFOWORLD, pages = "??--??", day = "14", month = nov, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Sklar:1995:EGA, author = "David F. Sklar", title = "Embedding Graphics Applications inside {Web} Pages", journal = j-X-J, volume = "5", number = "5", pages = "68--69", month = may, year = "1995", CODEN = "XJOUEA", ISSN = "1056-7003", bibdate = "Tue May 07 07:00:27 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses {Java} use on the {Web}.", acknowledgement = ack-nhfb, fjournal = "The X Journal", } @Misc{Spyglass:1995:SLS, author = "{Spyglass, Inc.}", title = "{Spyglass} Licenses {Sun Microsystems}' {Java} for {Spyglass Mosaic}", howpublished = "press release", day = "8", month = nov, year = "1995", bibdate = "Sun Dec 17 09:50:32 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.spyglass.com/current/nov895.html", acknowledgement = ack-jd, } @Article{Sullivan-Trainor:1995:IRN, author = "Michael Sullivan-Trainor and Richard Villars", title = "{IDC} Report: {Netscape} Launches {Navigator} 2.0", journal = j-INTERNATIONAL-DATA-CORP-RESEARCH, pages = "??--??", day = "21", month = sep, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.idcresearch.com/", acknowledgement = ack-nhfb, } @Article{Sullivan:1995:JFS, author = "Eamonn Sullivan", title = "{Java} falls short of hype, but showcases technology's potential", journal = j-PC-WEEK, pages = "??--??", day = "9", month = nov, year = "1995", ISSN = "0740-1604", bibdate = "Sun Dec 17 09:51:50 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.pcmag.ziff.com/~pcweek/reviews/1106/tr45java.html", acknowledgement = ack-jd, fjournal = "PC Week", } @Misc{Sullivan:1995:SJT, author = "Eamonn Sullivan", title = "{Sun}'s {Java} technology perks up {WWW}", howpublished = "PC Week Online", day = "5", month = jun, year = "1995", bibdate = "Sun Dec 17 09:53:26 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ziff.com/~pcweek/reviews/june_1995/java.html", acknowledgement = ack-jd, } @Manual{Sun:1995:JVMa, title = "The {Java} Virtual Machine Specification", organization = "Sun Microsystems", edition = "1.0 Beta", month = aug, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://java.sun.com/doc/vmspec/VMSpec.ps", added-by = "sti", annote = "a virtual machine similar to UCSD p-code or smalltalk. stack-machine. dynamic loading. direct support for object orientation (e.g. virtual method calls)", keywords = "java, virtual machine, bytecode", } @Manual{Sun:1995:JVMb, author = "{Sun Microsystems}", key = "JVMPI", title = "{Java Virtual Machine Profiling Interface (JVMPI)}", organization = "Sun Microsystems", year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "http://java.sun.com/j2se/1.3/docs/guide/jvmpi/", URL = "http://java.sun.com/j2se/1.3/docs/guide/jvmpi/", comment = "Profiling interface for {J}ava", } @Misc{Symantec:1995:SRF, author = "{Symantec Corporation}", title = "{Symantec} Releases first {Java} development environment for {Windows 95/NT}", howpublished = "press release", day = "13", month = dec, year = "1995", bibdate = "Sun Dec 17 09:58:53 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.Symantec.com/lit/dev/javapress.html", acknowledgement = ack-jd, } @Article{Tennant:1995:IBG, author = "Don Tennant", title = "Interview: {Bill Gates} on {Microsoft}'s ``Only Sin'' and Other Subjects", journal = j-COMPUTERWORLD-HONG-KONG, pages = "??--??", day = "19", month = dec, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Tennant:1995:NHE, author = "Don Tennant", title = "News: {HP} Eyes {Sun}'s {Java} for Possible Licensing Deal", journal = j-COMPUTERWORLD-HONG-KONG, pages = "??--??", day = "30", month = nov, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Thomas:1995:JA, author = "Wes Thomas", title = "{Java}, Anyone?", journal = j-WEB-REVIEW, pages = "??--??", day = "29", month = sep, year = "1995", bibdate = "Sun Dec 17 09:59:56 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.gnn.com/gnn/wr/sept29/tech/safari/index.html", acknowledgement = ack-jd, fjournal = "Web Review", } @Book{Tittel:1995:MOI, author = "Ed Tittel and Mark Gaither", title = "{Mecklermedia}'s official {Internet} world: 60 minute guide to {Java}", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xxiii + 253", day = "1", month = oct, year = "1995", ISBN = "1-56884-711-4", ISBN-13 = "978-1-56884-711-5", LCCN = "TK 5105.888 T58 1995", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1568847114/wholesaleproductA/; http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$19.99", URL = "http://db.www.idgbooks.com/database/book/isbn/generic-book.tmpl?query=1-56884-711-4", acknowledgement = ack-nhfb, dimensions = "9.13in x 7.34in x 0.89in", keywords = "computer networks; electronic mail; handbooks; Internet (Computer network); Java (Computer program language); local area networks; protocol (computers); telecommunication; World Wide Web (Information retrieval system)", paperback = "yes", xxtitle = "The Official {Internet} World 60 Minute Guide to {Java}", } @Article{Trager:1995:JBC, author = "Louis Trager", title = "{Java} Becoming Cool New Computer Language", journal = j-NEW-YORK-TIMES-SYNDICATE, pages = "??--??", day = "1", month = nov, year = "1995", bibdate = "Sun Dec 17 10:01:02 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://nytsyn.com/live/Features1/305_110195_061353_32246.html", acknowledgement = ack-jd, fjournal = "New York Times Syndicate", } @Article{Trager:1995:JCL, author = "Louis Trager", title = "{Java} Computer Language Brings Gee-whiz Futurism", journal = j-NEW-YORK-TIMES-SYNDICATE, pages = "??--??", day = "31", month = oct, year = "1995", bibdate = "Sun Dec 17 10:01:59 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://nytsyn.com/live/Features1/304_103195_083533_21012.html", acknowledgement = ack-jd, fjournal = "New York Times Syndicate", } @Article{Trinkle:1995:NHK, author = "Veronika Trinkle", title = "News: {Hong Kong University} Brews {Chinese} Version of {HotJava}", journal = j-COMPUTERWORLD-HONG-KONG, pages = "??--??", day = "04", month = oct, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Tubbs:1995:PFD, author = "Dave Tubbs", title = "Pop, Fizz, and Dance --- {Java} and {VRML} are new graphics technologies that will alter the state of the {Net}", journal = j-INTERNET-WORLD, volume = "6", number = "11", pages = "72--72", month = "????", year = "1995", CODEN = "IERNE8", ISSN = "1064-3923", bibdate = "Sat Aug 23 09:08:50 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Internet World", } @Misc{Tyma:1995:JPF, author = "Paul Tyma and {Computer Channel, Inc}", title = "{Java} programming fundamentals: part 1", publisher = "Computer Channel", address = "Syosset, NY, USA", year = "1995", bibdate = "Fri May 31 08:36:17 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "1 videocassette.", acknowledgement = ack-nhfb, annote = "Presenter: Paul Tyma. VHS.", keywords = "Internet (Computer network); Java (Computer program language)", } @Article{Uimonen:1995:NTE, author = "Terho Uimonen", title = "News: {Taiwan} Eyes {Java}, Ready to Jump on ``{Internet} Appliance'' Bandwagon", journal = j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "14", month = dec, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Vadlamudi:1995:NKO, author = "Pardhu Vadlamudi", title = "News: {Kodak} Offers Software to Enhance Images on the {Web}", journal = j-INFOWORLD, pages = "??--??", day = "16", month = dec, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Vadlamudi:1995:NVP, author = "Pardhu Vadlamudi", title = "News: Vendors Push Tools to Move Existing Documents On-line", journal = j-INFOWORLD, pages = "??--??", day = "05", month = oct, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Valdes:1995:NGJ, author = "Ray Vald{\'e}s", title = "Net Gets a {Java} Buzz", journal = j-DDDU, volume = "2", number = "8", pages = "1, 3--4, 6", month = aug, year = "1995", CODEN = "????", ISSN = "1079-8595", bibdate = "Tue Sep 03 11:30:17 1996", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Developer Update", } @Article{vanHoff:1995:JIP, author = "Arthur {van Hoff}", title = "{Java} and {Internet} Programming", journal = j-DDJ, volume = "20", number = "8", pages = "56--??, 58, 60--61, 101--102", month = aug, year = "1995", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover database", URL = "http://www.ddj.com/ddj/issues/j508a.htm", abstract = "Java, a language designed for Internet development, is an object-oriented, multithreaded, portable, dynamic language that's similar to C, yet simpler than C++.", abstract2 = "In 1990, a new language called `Java' was developed which, it turns out, addresses many of the issues of software distribution on the Internet. Java is a simple, object-oriented, multi-threaded, garbage-collected, secure, robust, architecture-neutral, portable, high-performance, dynamic language. The language is similar to C and C++ but much simpler. Java programs are compiled into a binary format that can be executed on many platforms without recompilation. The language contains mechanisms to verify and execute binary Java programs in a controlled environment, protecting computer from potential viruses and security violations.", acknowledgement = ack-nhfb, affiliation = "Sun Microsystems", classcodes = "C6140D (High level languages); C6150N (Distributed systems software); C6110J (Object-oriented programming)", classification = "721.1; 722.2; 722.3; 723.1; 723.1.1; C6110J (Object-oriented programming); C6140D (High level languages); C6150N (Distributed systems software)", fjournal = "Dr. Dobb's Journal of Software Tools", journalabr = "Dr Dobb's J Software Tools Prof Program", keywords = "Architecture-neutral language; architecture-neutral language; Binary format; binary format; Browser; Bytecodes, Java language; C (programming language); Codes (symbols); Compilation; compilation; complete computer programs; Computational linguistics; Computer networks; Computer programming languages; Computer software portability; Garbage-collection; garbage-collection; High-performance dynamic language; high-performance dynamic language; Interactive programs; Interfaces (computer); Internet; Internet programming; Java (programming language); Java language; language; languages; Multithreaded language; multithreaded language; Multithreading; Object oriented programming; object-oriented; Object-oriented language; object-oriented programming; Portable language; portable language; Program compilers; Program interpreters; Robust language; robust language; secure; Secure language; Security of data; security of data; Semantics; Software distribution; software distribution; Software engineering; software portability; Syntax; UNIX", thesaurus = "Complete computer programs; Internet; Object-oriented languages; Object-oriented programming; Security of data; Software portability", treatment = "G General Review; P Practical", } @Article{Varney:1995:NAP, author = "Sarah Varney", title = "{Netscape}'s {Andreessen} Plugs {JavaScript}", journal = j-CLNET, pages = "??--??", day = "4", month = dec, year = "1995", bibdate = "Sun Dec 17 10:03:01 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cnet.com/Central/News/webinno.html", acknowledgement = ack-jd, fjournal = "c$\|$net central", } @Article{Watt:1995:NMU, author = "Peggy Watt", title = "News: {Microsoft} Unfolds {Internet} Road Map", journal = j-NETWORK-WORLD, pages = "??--??", day = "11", month = dec, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Watt:1995:NNS, author = "Peggy Watt", title = "News: {Netscape}, {Sun} Announce {JavaScript}", journal = j-NETWORK-WORLD, pages = "??--??", day = "01", month = dec, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Watt:1995:NSA, author = "Peggy Watt", title = "News: {Sun}-{Netscape}-{GI} Announce Their {Web} Browser", journal = j-NETWORK-WORLD, pages = "??--??", day = "11", month = dec, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Watt:1995:NSV, author = "Peggy Watt", title = "News: Several Vendors Announce Plans for {VRML}", journal = j-NETWORK-WORLD, pages = "??--??", day = "11", month = dec, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Watt:1995:NTM, author = "Peggy Watt", title = "News: Travel Made Easy Via the {Web}", journal = j-NETWORK-WORLD, pages = "??--??", day = "18", month = dec, year = "1995", ISSN = "0887-7661", ISSN-L = "0887-7661", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.iquest.net/index.html", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Wattawa:1995:API, author = "Scott Wattawa", title = "Agent-based paradigm for integration of interactive cable television operations and business support systems", journal = j-PROC-SPIE, volume = "2609", pages = "67--79", month = "????", year = "1995", CODEN = "PSISDG", ISBN = "0-8194-1973-7", ISBN-13 = "978-0-8194-1973-6", ISSN = "0277-786X (print), 1996-756X (electronic)", ISSN-L = "0277-786X", LCCN = "TK5103.59 .H92 1995", bibdate = "Mon Mar 17 18:33:33 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Cable Television Labs. Inc., Conifer, CO, USA", classcodes = "B6430D (CATV and wired systems); B6220B (Subscriber loops); B6260 (Optical links and equipment); C5620M (Metropolitan area networks); C6140D (High level languages); C7410F (Communications computing)", classification = "717.2; 718.1; 722.3; 741.1.2", conference = "Hybrid Fiber-Coax Systems", conflocation = "Philadelphia, PA, USA; 23-24 Oct. 1995", conftitle = "Hybrid Fiber-Coax Systems", corpsource = "Cable Telev. Labs. Inc., Louisville, CO, USA", fjournal = "Proceedings of the SPIE --- The International Society for Optical Engineering", journalabr = "Proc SPIE Int Soc Opt Eng", keywords = "agent-based enterprise models; agent-based paradigm; architecture; broadband network; business communication; business support systems; cable television; Cable television systems; coaxial cables; common object request brokering; high level languages; Hybrid fiber-coax systems; hybrid fiber/coaxial cable system; Infrastructure; interactive cable television; interactive services; interactive systems; Java programming language; loops; metropolitan area; Metropolitan area networks; multiple services metropolitan area network; network infrastructure; networks; Object Management Group; object-oriented methods; operations; Optical cables; Optical communication equipment; Optical fibers; optical fibre subscriber; services; telecommunication; telecommunication computing; Telecommunication networks", meetingaddress = "Philadelphia, PA, USA", meetingdate = "Oct 23--24 1995", meetingdate2 = "10/23--24/95", sponsor = "SPIE --- Int Soc for Opt Engineering, Bellingham, WA USA", sponsororg = "SPIE", treatment = "G General Review", } @Article{Wingfield:1995:IMA, author = "Nick Wingfield", title = "Interview: {Marc Andreessen} Tackles {Internet} Issues", journal = j-INFOWORLD, pages = "??--??", day = "23", month = oct, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Wingfield:1995:ISE, author = "Nick Wingfield", title = "Interview: {Sun}'s {Eric Schmidt} Sizes Up {Internet} Rivals", journal = j-INFOWORLD, pages = "??--??", day = "16", month = oct, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Wingfield:1995:NAI, author = "Nick Wingfield", title = "News: All-out {Internet} War Begins as {Microsoft} Enters Fray", journal = j-INFOWORLD, pages = "??--??", day = "03", month = dec, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Wingfield:1995:NCS, author = "Nick Wingfield and Sari Kalin", title = "News: Consortium to Standardize {Web} Objects", journal = j-INFOWORLD # "\slash " # j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "16", month = dec, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Wingfield:1995:NDM, author = "Nick Wingfield and Michael Parsons", title = "News: Database, Mainframe Vendors Pin Hopes on Network Device", journal = j-INFOWORLD # "\slash " # j-IDG-INT-NEWS-SERVICE, pages = "??--??", day = "23", month = nov, year = "1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Wingfield:1995:NGM, author = "Nick Wingfield", title = "News: {General Magic} Looks to Ride {Internet} Wave", journal = j-INFOWORLD, pages = "??--??", day = "30", month = nov, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Wingfield:1995:NJB, author = "Nick Wingfield and Martin LaMonica", title = "News: {Java} Brews Trouble for {Microsoft}", journal = j-INFOWORLD, pages = "??--??", day = "18", month = nov, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Wingfield:1995:NJG, author = "Nick Wingfield", title = "News: {Java} Gets up Head of Steam and {IBM} Readies {Notes} Support", journal = j-INFOWORLD, pages = "??--??", day = "10", month = dec, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Wingfield:1995:NMS, author = "Nick Wingfield", title = "News: {Microsoft} Storms the {Web}", journal = j-INFOWORLD, pages = "??--??", day = "10", month = dec, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Wingfield:1995:NNI, author = "Nick Wingfield", title = "News: {Netscape} Inks Pact with {Sun}, {Macromedia}", journal = j-INFOWORLD, pages = "??--??", day = "30", month = may, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Wingfield:1995:NNS, author = "Nick Wingfield", title = "News: {Netscape} Sets {Navigator} Free", journal = j-INFOWORLD, pages = "??--??", day = "21", month = sep, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Wingfield:1995:NNT, author = "Nick Wingfield", title = "News: {Netscape} Takes Stab at Easing {Web} Chores", journal = j-INFOWORLD, pages = "??--??", day = "09", month = sep, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Wingfield:1995:NOR, author = "Nick Wingfield", title = "News: {Oracle} Reveals Strategy to Cut {Netscape}'s Lead on {Web}", journal = j-INFOWORLD, pages = "??--??", day = "02", month = nov, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Wingfield:1995:NSF, author = "Nick Wingfield", title = "News: {Sun} Focuses on Eclipsing {Windows}", journal = j-INFOWORLD, pages = "??--??", day = "14", month = nov, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Wingfield:1995:NSJ, author = "Nick Wingfield", title = "News: Smell of {Java} Lures Scores of Vendors", journal = j-INFOWORLD, pages = "??--??", day = "28", month = oct, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Wingfield:1995:NSP, author = "Nick Wingfield", title = "News: {SGI}, {ParaGraph} Usher in {3-D Web} Sites", journal = j-INFOWORLD, pages = "??--??", day = "07", month = dec, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @Article{Wingfield:1995:NWA, author = "Nick Wingfield", title = "News: {Web} Apps Promise to Help Harness {Internet} Power", journal = j-INFOWORLD, pages = "??--??", day = "26", month = aug, year = "1995", CODEN = "INWODU", ISSN = "0199-6649", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoworld.com/", acknowledgement = ack-nhfb, fjournal = "InfoWorld", } @InProceedings{Yellin:1995:LLS, author = "F. Yellin", title = "Low Level Security in {Java}", crossref = "OReilly:1995:WWW", pages = "369--380", year = "1995", bibdate = "Sun Oct 22 08:56:51 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Book{Ablan:1996:DIA, author = "Jerry Ablan", title = "Developing Intranet Applications With {Java}", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxiii + 492", month = oct, year = "1996", ISBN = "1-57521-166-1", ISBN-13 = "978-1-57521-166-4", LCCN = "QA76.73.J38 A25 1996", bibdate = "Wed Feb 21 08:09:22 2001", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575211661.html; http://www.amazon.com/exec/obidos/ISBN=1575211661/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$45.00", URL = "http://www.mcp.com/cgi-bin/bag?isbn=1-57521-166-1&last=/bookstore; http://www.mcp.com/samsnet/", acknowledgement = ack-nhfb, dimensions = "9.10in x 7.49in x 1.37in", } @Periodical{Advisor:1996:IJA, key = "Internet and Java advisor", title = "{Internet} and {Java} advisor", publisher = "Advisor Publications, Inc.", address = "San Diego, CA, USA", year = "1996", ISSN = "1084-158X", bibdate = "Thu Aug 22 09:10:57 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "Internet (Computer network) -- Periodicals; Java (Computer program language) -- Periodicals", } @Periodical{Advisor:1996:JA, key = "Java advisor", title = "{Java} advisor", publisher = "Advisor Publications", address = "San Diego, CA, USA", year = "1996", ISSN = "1087-0776", bibdate = "Fri May 31 08:36:17 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, alttitle = "Java advisor", } @Book{Afergan:1996:JQR, author = "Michael M. Afergan", title = "{Java} Quick Reference", publisher = pub-QUE, address = pub-QUE:adr, pages = "xii + 419", day = "1", month = jul, year = "1996", ISBN = "0-7897-0868-X", ISBN-13 = "978-0-7897-0868-7", LCCN = "QA76.73.J38A34 1996", bibdate = "Tue May 04 12:49:28 1999", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.amazon.com/exec/obidos/ISBN=078970868X/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Also available in Spanish translation \cite{Afergan:1996:JSI}.", price = "40,00 DM, US\$19.99", URL = "http://www.mcp.com/2746397353063/que/et/java_qr/; http://www.mcp.com/que/; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, dimensions = "8.46in x 5.53in x 1.13in", keywords = "Java (Computer program language) -- Handbooks, manuals, etc.", paperback = "yes", } @Book{Afergan:1996:JSI, author = "Michael Afergan", title = "{Java} Soluciones Instant{\'a}neas", publisher = pub-PH-HISPANOAMERICANA, address = pub-PH-HISPANOAMERICANA:adr, pages = "432", year = "1996", ISBN = "968-880-804-0", ISBN-13 = "978-968-880-804-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prentice.com.mx/; http://wwwiz.com/books/european.html", note = "Spanish translation of \cite{Afergan:1996:JQR}.", price = "3500 Ptas.", URL = "http://prentice.com.mx/; http://prentice.com.mx/libros/javasi.html", acknowledgement = ack-nhfb, language = "Spanish", } @Article{Aitken:1996:AGJ, author = "Gary Aitken", title = "Automatically Generating {Java} Documentation: javadoc and the doc comment", journal = j-DDJ, volume = "21", number = "7", pages = "42, 44, 46--49", month = jul, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "Compendex database; http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Because Java doesn't require a header file, documentation is really important in a Java environment. Gary examines some of the documentation issues related to Java programming and discusses how to automatically generate documentation for Java classes using javadoc.", acknowledgement = ack-nhfb, classcodes = "C6110 (Systems analysis and programming); C6140D (High level languages)", fjournal = "Dr. Dobb's Journal of Software Tools", keywords = "Algorithms; C (programming language); C language; Codes (symbols); Computational linguistics; Computer aided software engineering; Data structures; DOC comment; documentation; File organization; Java class library; Java classes; Java documentation; Java programming; Program compilers; Program documentation; Source file; Syntax; system documentation; User interfaces", treatment = "P Practical", } @Article{Aitken:1996:MCJ, author = "Gary Aitken", title = "Moving from {C++} to {Java}", journal = j-DDJ, volume = "21", number = "3", pages = "52, 54--56", month = mar, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover database", abstract = "Java is claimed to be much easier to learn than C++, but the difficulties most people have in learning to program in both C++ and Java have little to do with language itself. This paper explores some of the differences between Java and C++. The aim is to make user aware of potential problems and opportunities when moving from C++ to Java. Brief explanations are provided for those concepts that until now unfamiliar for many users.", acknowledgement = ack-nhfb, affiliation = "Integrated Computer Solutions", classcodes = "C6110J (Object-oriented programming); C6140D (High level languages)", classification = "721.1; 722.2; 723.1; 723.1.1; 723.2", fjournal = "Dr. Dobb's Journal of Software Tools", journalabr = "Dr Dobb's J Software Tools Prof Program", keywords = "C (programming language); C++ language; Character arrays; Character sets; Data structures; File organization; Garbage collected language; Header files; Interfaces (computer); invocation; Java; language migration; Machine code; Member function; method; Multithreading; Object oriented programming; object-oriented languages; Pointers; Program compilers; Program interpreters; Program processors; Program translators; programming; Programming theory; Software engineering; Synchronization; syntax; totally object-oriented language; Virtual machine", treatment = "P Practical", } @Book{Aitken:1996:VJP, author = "Peter Aitken and others", title = "{Visual J++} Programming {FrontRunner}", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "????", month = oct, year = "1996", ISBN = "1-57610-064-2", ISBN-13 = "978-1-57610-064-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35", URL = "http://www.coriolis.com/site/msie/books/ind/jakprofr.htm", acknowledgement = ack-nhfb, url-publisher = "http://www.coriolis.com/", } @Book{Aitken:1996:WDG, author = "Peter G. Aitken", title = "{Web} Developer's Guide to {JavaScript} and {VBScript}", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "xxi + 293", day = "1", month = jul, year = "1996", ISBN = "1-883577-97-7", ISBN-13 = "978-1-883577-97-1", LCCN = "QA76.73.J39A48 1996", bibdate = "Tue May 04 12:49:59 1999", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1883577977/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM. Also available in French translation \cite{Aitken:1997:GJV}.", price = "US\$39.99; CDN\$55.99", URL = "http://165.247.200.139/cgi-bin/java.cgi?page=ibook&graphics=1#JPE; http://www.coriolis.com/cgi-win/KBsearch.exe", acknowledgement = ack-nhfb, dimensions = "9.14in x 7.34in x 1in", paperback = "yes", } @Article{Alexander:1996:SCS, author = "M. Alexander", title = "Surf client\slash server systems via the {Internet}", journal = j-DATAMATION, volume = "42", number = "2", pages = "67--68", day = "15", month = jan, year = "1996", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D5020 (Computer networks and intercomputer communications); D2020 (Design and graphics)", fjournal = "Datamation", keywords = "3-D virtual reality; Action WorkFlow Metro; animation; browsers; client-server systems; client/server systems; enhancements; gee-whiz; graphics; interactivity; Internet; Java; Java object-oriented; Javascript; Netscape Navigator 2.0; Object Power Openscape; object-oriented methods; ParcPlace Digitalk; programming language; real-time; surfing; Sybase web.sql; user profile; virtual reality; VisualWave; Web; Web pages", treatment = "P Practical", } @InProceedings{Alper:1996:GMQ, author = "N. Alper and C. Stein", title = "Geospatial metadata querying and visualization on the {WWW} using {Java} applets", crossref = "Card:1996:ISI", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6160S (Spatial and pictorial databases); C7840 (Geography and cartography computing); C6130M (Multimedia); C6180 (User interfaces); C6130B (Graphics techniques)", conflocation = "San Francisco, CA, USA; 28-29 Oct. 1996", conftitle = "Proceedings IEEE Symposium on Information Visualization '96", keywords = "content standards; data visualisation; datasets; distributed data access; distributed databases; Federal Geographic Data Committee; geographic; geospatial metadata; geospatial metadata querying; HTML; hypermedia; Hypertext Markup Language; information systems; interactive system; Internet; Java applets; languages; Library system; Master Environmental; object-oriented; page description languages; query processing; user interfaces; visual databases; visualization; World Wide Web; WWW", sponsororg = "IEEE Comput. Soc. Tech Committee on Comput. Graphics", treatment = "P Practical", } @Article{Ambrosio:1996:BJA, author = "Johanna Ambrosio", title = "Books on {Java} aimed at beginners, advanced users", journal = j-COMPUTERWORLD, volume = "30", number = "21", pages = "55--55", day = "20", month = may, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Jun 03 11:28:48 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Amini:1996:WHAa, author = "Lisa Amini", title = "What's So {HOT} About {Java}? --- {Part} 1", journal = j-AIXTRA, volume = "6", number = "5", pages = "??--??", month = sep # "\slash " # oct, year = "1996", bibdate = "Tue Nov 05 07:10:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://pscc.dfw.ibm.com/aixtra/aixtra11/tech/java.htm", acknowledgement = ack-nhfb, fjournal = "/{AIXtra}: {IBM}'s Magazine for {AIX} Professionals", } @Article{Amini:1996:WHAb, author = "Lisa Amini", title = "What's So {HOT} About {Java}? --- {Part} 2", journal = j-AIXTRA, volume = "6", number = "6", pages = "40--51", month = nov # "\slash " # dec, year = "1996", bibdate = "Tue Nov 05 07:10:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Notes that IBM supplies the Java Development Toolkit (JDK) version 1.0.1 from the AIX V4.2 Bonus Pack, and version 1.0.2 is available from the IBM Centre for Java Technology home page at http://ncc.hursley.ibm.com/javainfo", URL = "http://pscc.dfw.ibm.com/aixtra", acknowledgement = ack-nhfb, fjournal = "/{AIXtra}: {IBM}'s Magazine for {AIX} Professionals", } @Article{Andoh:1996:VWS, author = "Y. Andoh", title = "{VRML's 3D} world: sculpting the next generation {Internet} --- technology and trends in {VRML}", journal = j-JOHO-SHORI, volume = "37", number = "10", pages = "899--906", month = oct, year = "1996", CODEN = "JOSHA4", ISSN = "0447-8053", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6130B (Graphics techniques); C7210 (Information services and centres); C6130M (Multimedia)", countrypub = "Japan", fjournal = "Joho-Shori (J. Information Processing Soc. Japan)", keywords = "3D graphics; CAD; CD-ROM; graphics; HTML; hypermedia; Hypertext; Internet; Java; languages; Markup Language; Mosaic; Netscape Navigator; online front-ends; page description; simulation languages; three dimensional; virtual reality; Virtual Reality Modeling Language; VRML; World Wide Web", language = "Japanese", treatment = "P Practical", } @Article{Andrews:1996:JFB, author = "David L. Andrews", title = "{Java} Forms: Better than {HTML}", journal = j-BYTE, volume = "21", number = "11", pages = "38", month = nov, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Thu Oct 24 06:12:48 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discuss the JetForm (\path=http://www.jetform.com/=) and Caere (\path=http://www.caere.com/=) products for interactive forms applications.", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Anonymous:1996:AAJ, author = "Anonymous", title = "{Amzi!} Announces {Java} Class for {Amzi! Logic Server}", journal = j-CCCUJ, volume = "14", number = "10", pages = "94--94", month = oct, year = "1996", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Thu Sep 12 06:32:47 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Anonymous:1996:AMDa, author = "Anonymous", title = "{Argus} Makes Decaf for {Java}", journal = j-SUNEXPERT, volume = "7", number = "4", pages = "80--80", month = apr, year = "1996", ISSN = "1053-9239", bibdate = "Tue Apr 16 06:19:04 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Anonymous:1996:AMDb, author = "Anonymous", title = "{Argus} Makes Decaf for {Java}", journal = j-WEBSERVER, volume = "1", number = "1", pages = "78", month = mar # "\slash " # jun, year = "1996", ISSN = "1087-4232", bibdate = "Fri May 31 11:21:20 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cpg.com", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Anonymous:1996:APA, author = "Anonymous", title = "{Applix} pushes ahead with {Java}", journal = "Investment dealers' digest", volume = "62", number = "13", pages = "11--??", day = "25", month = mar, year = "1996", ISSN = "0021-0080", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", acknowledgement = ack-nhfb, } @Article{Anonymous:1996:ASS, author = "Anonymous", title = "{Apple}, {Sun} Shake on Server, {Java} Fusion", journal = j-RS-MAGAZINE, volume = "5", number = "11", pages = "11--11", month = nov, year = "1996", ISSN = "1088-0844, 1061-0030", bibdate = "Thu Nov 14 06:30:12 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "RS\slash Magazine", } @Article{Anonymous:1996:AUG, author = "Anonymous", title = "{AIX} Users Get Their Own Dose of {Java}", journal = j-RS-MAGAZINE, volume = "5", number = "2", pages = "6--7", month = feb, year = "1996", ISSN = "1061-0030", bibdate = "Tue Mar 12 13:24:30 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "RS\slash Magazine", } @Article{Anonymous:1996:BBB, author = "Anonymous", title = "The Browser Battle Between {Microsoft} and {Netscape}", journal = j-PC-MAGAZINE, volume = "15", number = "10", pages = "40--??", day = "28", month = may, year = "1996", CODEN = "PCMGEP", ISSN = "0888-8507", ISSN-L = "0888-8507", bibdate = "Wed May 22 12:48:55 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Netscape Navigator's HTML extensions, plug-in architecture, and Java support have garnered the lion's share of the market, but Microsoft promises that Internet Explorer 3.0 will offer all that and more--including tight integration with Windows 95.", acknowledgement = ack-nhfb, fjournal = "PC Magazine", } @Article{Anonymous:1996:BBO, author = "Anonymous", title = "The benefits of building object-oriented applications", journal = j-SOFTWARE-ECONOMICS-LETTER, volume = "5", number = "8", pages = "1--3", month = aug, year = "1996", CODEN = "SECLE3", ISSN = "1065-6146", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D2080 (Information services and database systems)", fjournal = "Software Economics Letter", keywords = "application development; application modelling; architecture; client server applications; common gateway interface; common object request broker; component; CORBA; corporate; database management systems; distributed; distributed applications; enterprise server standard; frameworks; interoperability; Intranet; library; middleware; object linking and embedding; object-oriented applications; object-oriented databases; object-oriented design; open; Sun Microsystems Java applets; systems", treatment = "P Practical", } @Article{Anonymous:1996:BJT, author = "Anonymous", title = "Brewing {Java} tools --- {SourceCraft} mixes and matches {C++} and {Java}", journal = j-COMPUTERWORLD, volume = "30", number = "7", pages = "48--??", month = "????", year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Tue Mar 12 13:11:43 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Anonymous:1996:BMP, author = "Anonymous", title = "{BlackWidow} makes possible computing on {Java}", journal = j-HP-CHRONICLE, volume = "13", number = "9", pages = "26--26", month = aug, year = "1996", ISSN = "0892-2829", bibdate = "Tue Aug 13 18:43:46 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "HP Chronicle", } @Article{Anonymous:1996:BNB, author = "Anonymous", title = "Backstage nerves [{Backstage Designer Plus}]", journal = j-PUBLISHING, volume = "????", number = "????", pages = "21--??", month = aug, year = "1996", CODEN = "PUBLFA", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D2105 (Media-TV, radio, press); D2010 (Business and professional); D2080 (Information services and database systems)", countrypub = "UK", fjournal = "Publishing", keywords = "ActiveX; applets; Backstage; Backstage Designer Plus; Designer; editing; electronic publishing; HTML templates; image editing tools; Internet; Java programming language; JPEG image library; Macromedia Backstage suite; Macromedia Shockwave technology; Microsoft; miniature applications; software reviews; text; Web editing program; Web page editor; word processing", treatment = "P Practical; R Product Review", } @Article{Anonymous:1996:BW, author = "Anonymous", title = "In Business This Week", journal = j-BUSINESS-WEEK, volume = "3491", pages = "47--??", day = "2", month = sep, year = "1996", CODEN = "BUWEA3", ISSN = "0007-7135", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Netscape vs. Microsoft, Pepsi, a healthcare megamerger, Java, a sports-utility vehicle warning, Mattel, AIDS in Japan.", acknowledgement = ack-nhfb, fjournal = "Business week", } @Article{Anonymous:1996:BWB, author = "Anonymous", title = "Best {Web} Browser [{Netscape Navigator 3.0} and {Internet Explorer 3.0} comparison]", journal = j-PC-WORLD, volume = "14", number = "8", pages = "136, 138--139, 142, 146, 148", month = aug, year = "1996", CODEN = "PCWDDV", ISSN = "0737-8939", ISSN-L = "0737-8939", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D2080 (Information services and database systems)", fjournal = "PC World", keywords = "alpha versions; beta versions; ease of use; Explorer 3.0; features; Internet; Internet tools; Java; Microsoft Internet; Netscape Navigator 3.0; performance; security; shipping; software reviews; versions; Web Browser; Web savvy; workgroup tools", treatment = "P Practical; R Product Review", } @Article{Anonymous:1996:CBJ, author = "Anonymous", title = "Chips based on {Java}", journal = j-COMP-DESIGN, volume = "35", number = "8", pages = "14--??", day = "1", month = jul, year = "1996", CODEN = "CMPDAM", ISSN = "0010-4566", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", acknowledgement = ack-nhfb, fjournal = "Computer Design", } @Article{Anonymous:1996:CBN, author = "Anonymous", title = "{Castanet} and {Bongo}: the next step for {Java}", journal = j-ONLINE-CDROM-REV, volume = "20", number = "6", pages = "307--309", month = dec, year = "1996", CODEN = "ONCDEW", ISSN = "0309-314X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6150N (Distributed systems software); C6110J (Object-oriented programming); C6140D (High level languages); C6110P (Parallel programming); C6115 (Programming support); C6180G (Graphical user interfaces)", countrypub = "UK", fjournal = "Online \& CDROM review: the international journal of online \& optical information systems", keywords = "applets; applications; Bongo; Castanet software; channels; client-server systems; downloading; graphical user interfaces; GUIs; Java; Marimba; object-; object-oriented programming; oriented languages; parallel; programming; real applications; software package; software reviews; software tools; visual tool", treatment = "P Practical; R Product Review", } @Article{Anonymous:1996:CCJ, author = "Anonymous", title = "{Corel} Creates {Java} Suite", journal = j-INFORMATION-WEEK, volume = "595", pages = "24--??", day = "2", month = sep, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Test version of WordPerfect for Java to be part of a forthcoming Java suite.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1996:CCP, author = "Anonymous", title = "{Cosmo Code} provides {Java} development environment", journal = j-SILICON-GRAPHICS-WORLD, volume = "6", number = "6", pages = "12--12", month = jun, year = "1996", ISSN = "1057-7041", bibdate = "Fri Mar 14 11:23:47 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sgi.com/cosmo", acknowledgement = ack-nhfb, fjournal = "Silicon Graphics World", } @Article{Anonymous:1996:CEU, author = "Anonymous", title = "Cutting Edge --- Use {DMI} To Reduce Desktop Support Costs Summer School for {IS} Professionals. {Java}, {Java} Everywhere. First {Plan 9}, Now Inferno. Go Beyond {RAID-5}. Downsizing of {IS} Slows in '96. How To Link Relational and Object Databases. Brace Yourself for a Price Hike for {ISDN} Service", journal = j-DATAMATION, volume = "42", number = "11", pages = "10--??", month = "????", year = "1996", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Fri Aug 16 13:12:40 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Datamation", } @Article{Anonymous:1996:CJ, author = "Anonymous", title = "Competition For {Java}", journal = j-INFORMATION-WEEK, volume = "597", pages = "13A--??", day = "16", month = sep, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Nombas readies a Web development tool for C programmers.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1996:CJC, author = "Anonymous", title = "Correction in {Java} classes. ({March} 1, 1996 article, The one hour {Java} applet)", journal = j-DATAMATION, volume = "42", number = "????", pages = "21--??", month = "????", year = "1996", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat Oct 12 16:26:29 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Datamation", keywords = "Computer science --- Study and teaching; Java (Computer language)", } @Article{Anonymous:1996:CSC, author = "Anonymous", title = "Client\slash server concepts: {Jeans} and {Java}", journal = j-MANUFACTURING-SYSTEMS, volume = "14", number = "1", pages = "10--??", month = "????", year = "1996", CODEN = "MASYES", ISSN = "0748-948X", bibdate = "Tue Mar 12 13:11:43 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Manufacturing systems", } @Article{Anonymous:1996:CSP, author = "Anonymous", title = "Codetalk: {Symantec} Pours {Java} into Its Development Environment", journal = j-BYTE, volume = "21", number = "3", pages = "38--??", month = mar, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon Aug 19 08:31:32 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Anonymous:1996:CSS, author = "Anonymous", title = "Cover Story: {Sun}'s Rise", journal = j-BUSINESS-WEEK, volume = "??", number = "3459", pages = "66", month = jan, year = "1996", CODEN = "BUWEA3", ISSN = "0007-7135", bibdate = "Wed Jan 24 12:16:31 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "CEO Scott McNealy's longtime zeal for network computing is finally paying off big-time. Sun Microsystems has companies from Microsoft to IBM singing its tune, thanks in part to an Internet program called Java. Now, can McNealy's passion, pranks, and financial savvy keep Sun at the zenith?", acknowledgement = ack-nhfb, fjournal = "Business week", } @Article{Anonymous:1996:DN, author = "Anonymous", title = "Drive For The Net", journal = j-INFORMATION-WEEK, volume = "592", pages = "37--??", day = "12", month = aug, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Network Computing Devices adds Java to network computer lines.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1996:DW, author = "Anonymous", title = "Developments To Watch", journal = j-BUSINESS-WEEK, volume = "??", number = "3462", pages = "91--??", month = feb, year = "1996", CODEN = "BUWEA3", ISSN = "0007-7135", bibdate = "Fri Feb 23 08:05:11 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Chips steeped in Java, disk drives made in Munchkin-Land, a gene-altered insect, spuds in space.", acknowledgement = ack-nhfb, fjournal = "Business week", } @Article{Anonymous:1996:DXL, author = "Anonymous", title = "Dimension {X} Liquid Motion", journal = j-PC-COMPUTING, volume = "9", number = "10", pages = "111--??", day = "1", month = oct, year = "1996", CODEN = "PCMPEI", ISSN = "0899-1847", ISSN-L = "0899-1847", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Java animation 101.", acknowledgement = ack-nhfb, fjournal = "PC\slash Computing", } @Article{Anonymous:1996:EJ, author = "Anonymous", title = "Not Exactly Just-In-Time", journal = j-INFORMATION-WEEK, volume = "597", pages = "136--??", day = "16", month = sep, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Sun considers licensing deal after delays in releasing just-in-time Java compiler.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1996:ESC, author = "Anonymous", title = "Examining {Symantec}'s {Caf{\'e}}", journal = j-DDJ, volume = "21", number = "8", pages = "??--??", month = aug, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Jan 9 09:35:43 MST 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classification = "722.2; 723.1; 723.2; 723.5; 912.2", fjournal = "Dr. Dobb's Journal of Software Tools", journalabr = "Dr Dobb's J Software Tools Prof Program", keywords = "Application screens; Codes (SYMBOLS); Computer aided software engineering; Computer programming; File editors; File organization; Graphical user interfaces; Integrated development environments; Java programming; Program debugging; Project management; Studio resource editor; Virtual reality; Visual debugging", pagecount = "3", } @Article{Anonymous:1996:ET, author = "Anonymous", title = "Emerging Technology", journal = j-AMERICAS-NETWORK, volume = "100", number = "12", pages = "108--??", day = "15", month = jun, year = "1996", CODEN = "ANETE4", ISSN = "0040-263X", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Can Java-powered screen phones perk up consumer Internet use?", acknowledgement = ack-nhfb, fjournal = "America's network: technology for the information highway", } @Article{Anonymous:1996:ETW, author = "Anonymous", title = "Enabling technologies for {Web}-based ubiquitous supercomputing", journal = j-IEEE-INT-SYMP-HIGH-PERF-DIST-COMP-PROC, pages = "112--119", year = "1996", CODEN = "PIDCFB", ISSN = "1082-8907", bibdate = "Thu Dec 12 06:31:53 MST 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE catalog number 96TB100069.", acknowledgement = ack-nhfb, affiliation = "Argonne Natl Lab", affiliationaddress = "IL, USA", classification = "722.3; 722.4; 723.1.1; 723.2; 723.5; 903", conference = "Proceedings of the 1996 5th IEEE International Symposium on High Performance Distributed Computing", fjournal = "IEEE International Symposium on High Performance Distributed Computing, Proceedings", keywords = "Codes (symbols); Communication library; Computational power; Computer networks; Computer programming languages; Computer workstations; Data communication systems; Data transfer; Distributed computer systems; Information technology; Java language; Nexus; Personal computers; Supercomputers; Transportable code; Ubiquitous supercomputing; User interfaces", meetingaddress = "Syracuse, NY, USA", meetingdate = "Aug 6--9 1996", meetingdate2 = "08/06--09/96", sponsor = "IEEE", } @Article{Anonymous:1996:FAL, author = "Anonymous", title = "{UP FRONT} --- {Apple} licenses brand name for {pre-K} toys. Iterated tool hastens {Web} graphics. {Adobe} ships {SiteMill}. {Mac} beta of {Java} ships. {Apple} cancels dividend, rewards {Amelio}", journal = j-MACWEEK, volume = "10", number = "7", pages = "4--??", month = "????", year = "1996", CODEN = "MWEEEI", ISSN = "0892-8118", bibdate = "Tue Mar 12 13:11:43 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "MacWEEK", } @Article{Anonymous:1996:FFD, author = "Anonymous", title = "{UP FRONT} --- {Fuji} device prints color without inks or ribbons {Epson} scanner to face off against {Visioneer}. {Java} for {Mac} due in {February} --- {VST} offers", journal = j-MACWEEK, volume = "10", number = "4", pages = "4--??", year = "1996", CODEN = "MWEEEI", ISSN = "0892-8118", bibdate = "Fri Feb 23 08:05:11 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "MacWEEK", } @Article{Anonymous:1996:FJL, author = "Anonymous", title = "Free {Java} Library", journal = j-WEBSERVER, volume = "1", number = "3", pages = "59--59", month = sep # "\slash " # oct, year = "1996", ISSN = "1087-4232", bibdate = "Tue Dec 03 07:49:07 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses ObjectSpaces Inc.'s Java Generic Library (JGL).", URL = "http://www.objectspace.com/", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Anonymous:1996:FKJ, author = "Anonymous", title = "Firewall Keeps Out {Java}", journal = j-INFORMATION-WEEK, volume = "590", pages = "30--??", day = "29", month = jul, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "New software screens out roving Java and JavaScript applets.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1996:FLA, author = "Anonymous", title = "First Look At {Microsoft}'s {J++}", journal = j-INFORMATION-WEEK, volume = "595", pages = "77--??", day = "2", month = sep, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "The latest version offers the best of Java and ActiveX but only on 32-bit Windows.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1996:FLP, author = "Anonymous", title = "First looks --- {Pentium}\slash 133 notebooks. {Java Development Kit} 1.0. {ZOC}. {Iomega Jaz} Drive", journal = j-PC-MAGAZINE, volume = "15", number = "7", pages = "39--??", month = "????", year = "1996", CODEN = "PCMGEP", ISSN = "0888-8507", ISSN-L = "0888-8507", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "PC Magazine", } @Article{Anonymous:1996:FR, author = "Anonymous", title = "Field Report", journal = j-SOFTWARE-MAG, volume = "16", number = "8", pages = "19--??", day = "1", month = aug, year = "1996", CODEN = "SMWMEQ", ISSN = "0279-9782 (or 0897-8085??)", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "JIT Compilers Boost Java Big Iron and Brethren Meet the Web.", acknowledgement = ack-nhfb, fjournal = "Software Magazine", } @Article{Anonymous:1996:FRT, author = "Anonymous", title = "Field Report: Tools Vendors Look to Milk {Java}", journal = j-SOFTWARE-MAG, volume = "16", number = "3", pages = "23--??", month = "????", year = "1996", CODEN = "SMWMEQ", ISSN = "0897-8085", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Software Magazine", } @Article{Anonymous:1996:GSA, author = "Anonymous", title = "{GATEWAYS} --- {System} 7.5.3 arrives. Latest {Internet Explorer} beta squashes bugs. {WebEdge III} features {Java} galore. Working the Net: {Java} questioned and answered", journal = j-MACWEEK, volume = "10", number = "10", pages = "14--??", month = "????", year = "1996", CODEN = "MWEEEI", ISSN = "0892-8118", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "MacWEEK", } @Article{Anonymous:1996:GSC, author = "Anonymous", title = "{GATEWAYS} --- {Symantec C++} 8.0 Release 5 builds {Java}, {Pascal}, {680x0} apps. Breeze blows into {Mac} wireless networking. {Engst} on avoiding {OT} hassles. How many hits does your {Web} server get?", journal = j-MACWEEK, volume = "10", number = "14", pages = "16--??", month = "????", year = "1996", CODEN = "MWEEEI", ISSN = "0892-8118", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "MacWEEK", } @Article{Anonymous:1996:HJ, author = "Anonymous", title = "Hooked on {Java}", journal = j-BUSINESS-WEEK, volume = "3493", pages = "100--??", day = "16", month = sep, year = "1996", CODEN = "BUWEA3", ISSN = "0007-7135", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "IBM and Sun Microsystems are hatching all sorts of collaborative schemes based on the new technology.", acknowledgement = ack-nhfb, fjournal = "Business week", } @Article{Anonymous:1996:HJC, author = "Anonymous", title = "How {Java} Can Pay the Rent", journal = j-BYTE, volume = "21", number = "6", pages = "27--??", month = jun, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon Jun 24 19:15:24 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Anonymous:1996:HJW, author = "Anonymous", title = "{HTML} and {JAVA} --- What's the Difference?", journal = j-LIB-SYSTEMS, volume = "16", number = "2", pages = "15--??", month = "????", year = "1996", ISSN = "0277-0288", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Library Systems", } @Article{Anonymous:1996:IAW, author = "Anonymous", title = "{Internet} Appliances --- Want to surf the {Web} from your sofa? {Oracle}, {Sun Microsystems}, and other companies are working on {USD} 500 {I-Way} boxes. Also hot this month a crash course in {Java}, {3-D} {Web}-page designers, and a low-cost {Web} server", journal = j-PC-COMPUTING, volume = "9", number = "3", pages = "291--??", month = "????", year = "1996", CODEN = "PCMPEI", ISSN = "0899-1847", ISSN-L = "0899-1847", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "PC\slash Computing", } @Article{Anonymous:1996:IJA, author = "Anonymous", title = "{``Internetsprache'' Java --- alles aus einer Hand}", journal = j-ELECTRONIK, volume = "45", number = "7", pages = "12--??", month = "????", year = "1996", CODEN = "EKRKAR", ISSN = "0013-5658", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Elektronik", } @Article{Anonymous:1996:IJC, author = "Anonymous", title = "Interactive {3D Java} Charting", journal = j-WEBSERVER, volume = "1", number = "3", pages = "55--56", month = jul # "\slash " # aug, year = "1996", ISSN = "1087-4232", bibdate = "Tue Dec 03 07:47:17 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses Infospace Inc.'s WebCharts product.", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Anonymous:1996:IMJ, author = "Anonymous", title = "{Internet}: Much-hyped {Java}, {Sun Microsystems'} distributed applications programming language, may become a full alternative to {C++}, quite possibly allowing financial firms to offer things like proprietary risk management systems over the {Internet}", journal = j-WALL-ST-TECH, volume = "14", number = "3", pages = "54--??", month = "????", year = "1996", CODEN = "WSTEE5", ISSN = "1060-989X", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Wall Street and Technology", } @Article{Anonymous:1996:IPJ, author = "Anonymous", title = "{IBM} Ports {Java}-based Technology", journal = j-AIXTRA, volume = "6", number = "6", pages = "8--8", month = nov # "\slash " # dec, year = "1996", bibdate = "Tue Nov 05 06:57:12 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Notes that a new version of OS/2, known as Merlin, is Java-enabled, and includes a built-in developer's kit for Java and run-time code. IBM's OpenDoc-based Arabica provides support for the Java Beans initiative. Just-in-time Java compilation will be standard technology in AIX and OS/2. IBM has ported Java to the Windows 3.1 platform.", acknowledgement = ack-nhfb, fjournal = "/{AIXtra}: {IBM}'s Magazine for {AIX} Professionals", } @Article{Anonymous:1996:ISC, author = "Anonymous", title = "{IBM}, {Sun} Collaborate to Cross License {Joe}, {CICS}, {MQ}series", journal = j-AIXTRA, volume = "6", number = "6", pages = "8--8", month = nov # "\slash " # dec, year = "1996", bibdate = "Tue Nov 05 07:09:04 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "/{AIXtra}: {IBM}'s Magazine for {AIX} Professionals", } @Article{Anonymous:1996:IST, author = "Anonymous", title = "{Imperial Software Technology} builds {Java} strategy", journal = j-SILICON-GRAPHICS-WORLD, volume = "6", number = "7", pages = "17--17", month = jul, year = "1996", ISSN = "1057-7041", bibdate = "Tue Jun 25 11:58:32 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Silicon Graphics World", } @Article{Anonymous:1996:ITJ, author = "Anonymous", title = "{Internet} Tools: The {Java} Agenda", journal = j-INFORMATION-WEEK, volume = "??", number = "560", pages = "54--??", month = jan, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Fri Feb 23 08:05:11 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "SunSoft's new programming language is poised to be the standard tool for Internet applications developers.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1996:IW, author = "Anonymous", title = "{Internet} @ Work", journal = j-LAN, volume = "5", number = "1", pages = "75--??", day = "1", month = jun, year = "1996", CODEN = "LANNER", ISSN = "1038-359X (or 1069-5621??)", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Java: How Counter-Culture Went Mainstreet / Partnerships and Acquisitions Bolster Quarterdeck / New Sites / Internet@ssist / Short Bursts.", acknowledgement = ack-nhfb, fjournal = "LAN: the network solutions magazine", } @Book{Anonymous:1996:J, author = "Anonymous", title = "{Java}", publisher = pub-OHMSHA, address = pub-OHMSHA:adr, month = aug, year = "1996", ISBN = "4-274-06164-7", ISBN-13 = "978-4-274-06164-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ohmsha.co.jp/", price = "1,900 yen", URL = "http://www.ohmsha.co.jp/data/books/contents/4-274-06164-7.htm", acknowledgement = ack-nhfb, language = "Japanese", } @Article{Anonymous:1996:JA, author = "Anonymous", title = "{Javastation} Arrives", journal = j-IEEE-MICRO, volume = "16", number = "6", pages = "80--80", month = dec, year = "1996", CODEN = "IEMIDZ", ISSN = "0272-1732 (print), 1937-4143 (electronic)", ISSN-L = "0272-1732", bibdate = "Thu Dec 14 06:08:58 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; Science Citation Index database (1980--2000)", acknowledgement = ack-nhfb, fjournal = "IEEE Micro", } @Book{Anonymous:1996:JAI, author = "Anonymous", title = "{Java} Applets for {Intranets}", publisher = pub-NRP, address = pub-NRP:adr, pages = "????", year = "1996", ISBN = "1-56205-627-1", ISBN-13 = "978-1-56205-627-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/newriders/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://www.mcp.com/newriders/", acknowledgement = ack-nhfb, } @Article{Anonymous:1996:JAO, author = "Anonymous", title = "{Java API} Overview", journal = j-SUN-DEVELOPER-NEWS, volume = "1", number = "1", pages = "10, 11", month = "Fall", year = "1996", bibdate = "Tue Dec 03 11:53:37 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Anonymous:1996:JASa, author = "Anonymous", title = "{Java} and {ActiveX}: sorting out the truth [Web programming languages]", journal = j-INTRANET-NETWORKING-STRATEGIES-REP, volume = "4", number = "9", pages = "5--7", month = sep, year = "1996", ISSN = "1069-126X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D5020 (Computer networks and intercomputer communications)", fjournal = "Intranet and Networking Strategies Report", keywords = "ActiveX; dynamic Web programming languages; Internet; Java; local area networks; object-oriented languages", treatment = "P Practical", } @Article{Anonymous:1996:JASb, author = "Anonymous", title = "{JavaManagement API} Specification Released", journal = j-SUN-DEVELOPER-NEWS, volume = "1", number = "1", pages = "12", month = "Fall", year = "1996", bibdate = "Wed Dec 04 11:45:58 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Book{Anonymous:1996:JAW, author = "Anonymous", title = "{Java} Applet: Window Toolkit \& Utility / {Java} Language", publisher = pub-SSC, address = pub-SSC:adr, pages = "????", year = "1996", ISBN = "0-916151-95-6 (set), 0-916151-93-X (vol. 1), 0-916151-94-8 (vol. 2)", ISBN-13 = "978-0-916151-95-9 (set), 978-0-916151-93-5 (vol. 1), 978-0-916151-94-2 (vol. 2)", LCCN = "????", bibdate = "Fri Jun 14 13:15:23 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "2-volume set.", URL = "http://www.ssc.com/ssc/about.html", acknowledgement = ack-nhfb, xxnote = "Duplicate ISBN with \cite{Chapman:19xx:JRCa}.", } @Article{Anonymous:1996:JB, author = "Anonymous", title = "{Java} Bucks", journal = j-DDJ, volume = "21", number = "11", pages = "12--12", month = nov, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Oct 15 08:11:55 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Comments on the US\$100,000,000 Kleiner, Perkins, Caulfield and Byers (KPCB) venture capital Java development fund.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Anonymous:1996:JBA, author = "Anonymous", title = "{Java} business applications arrive", journal = j-BYTE, volume = "21", number = "8", pages = "30--??", month = aug, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon Aug 19 08:31:01 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Anonymous:1996:JBC, author = "Anonymous", title = "{Java Black Coffee: Die gro{\ss}e {Java}-Sammlung}", publisher = pub-FRANZIS-VERLAG, address = pub-FRANZIS-VERLAG:adr, year = "1996", ISBN = "3-7723-8753-5", ISBN-13 = "978-3-7723-8753-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.franzis-buch.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "DM 29,95; ATS 238,00; CHF 25,00", URL = "http://www.franzis-buch.de/katalog/blackcoffee/", acknowledgement = ack-nhfb, language = "German", } @Article{Anonymous:1996:JBV, author = "Anonymous", title = "{Java Beans} vs. {ActiveX}: open vs. proprietary", journal = j-COMP-ECONOMICS-REP, volume = "18", number = "12", pages = "5--7", month = dec, year = "1996", ISSN = "0739-0874", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D5020 (Computer networks and intercomputer communications)", fjournal = "Computer Economics Report (International Edition)", keywords = "ActiveX; centric component technology market; closed technological solutions; Internet; Java Beans; Microsoft; open systems; open technological; programming environments; solutions; Sun Microsystems; Web-", treatment = "E Economic", } @Article{Anonymous:1996:JC, author = "Anonymous", title = "{Java} complete!", journal = j-DATAMATION, volume = "42", number = "????", pages = "28--61", month = "????", year = "1996", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat Oct 12 16:26:29 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Datamation", keywords = "Java (Computer language)", } @Article{Anonymous:1996:JCBa, author = "Anonymous", title = "{Java} competitor --- The {Bell Labs} team that developed {Unix} is now working on its own {Internet} language to compete with {Sun}'s {Java}", journal = j-COMPUTERWORLD, volume = "30", number = "8", pages = "6--??", month = "????", year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Tue Mar 12 13:11:43 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Anonymous:1996:JCBb, author = "Anonymous", title = "{Java} Chips Boost Applet Speed", journal = j-BYTE, volume = "21", number = "4", pages = "25--??", month = apr, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Wed Apr 24 08:19:20 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Anonymous:1996:JCG, author = "Anonymous", title = "{Java} Components Give Table Functionality", journal = j-WEBSERVER, volume = "1", number = "1", pages = "74, 76", month = mar # "\slash " # jun, year = "1996", ISSN = "1087-4232", bibdate = "Fri May 31 11:21:20 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cpg.com", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Anonymous:1996:JCJ, author = "Anonymous", title = "{Java} competitor --- ``{Java}, schmava,'' is the message {Microsoft} sent when it unveiled {Active X}, new object technology for the {Internet}, at a developer conference last week", journal = j-COMPUTERWORLD, volume = "30", number = "12", pages = "14--??", month = "????", year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Anonymous:1996:JCSa, author = "Anonymous", title = "{Java: CHIP Schulung}", publisher = pub-BHV, address = pub-BHV:adr, pages = "????", month = oct, year = "1996", ISBN = "3-89360-152-X", ISBN-13 = "978-3-89360-152-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.ctn-service.com/bhv/inhalt.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "20 DM", URL = "http://www.ctn-service.com/bhv", acknowledgement = ack-nhfb, language = "German", } @Article{Anonymous:1996:JCSb, author = "Anonymous", title = "{Java} client\slash server apps --- {D and B Software} announces {Java-based SmartStream} applets for corporate {Intranet} users", journal = j-COMPUTERWORLD, volume = "30", number = "14", pages = "45--??", month = "????", year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Anonymous:1996:JCSc, author = "Anonymous", title = "{Java} cuts software distribution and installation costs for {R. R. Donnelley}'s customers", journal = j-I-S-ANALYZER, volume = "35", number = "9", pages = "12--16", month = sep, year = "1996", CODEN = "ISANEL", ISSN = "0896-3231", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7250N (Front end systems for online searching); C6110J (Object-oriented programming); C7210 (Information services and centres); C5620W (Other computer networks); C6150N (Distributed systems software); C6140D (High level languages)", fjournal = "I/S Analyzer", keywords = "applet; applet caching; applet performance; business to business; capabilities; costs; downloads; full function database; installation; interface; Internet; Java applets; largest commercial printer; memory allocation scheme; Netscape browsers; object oriented; object-oriented; object-oriented languages; online front-ends; printing industry; programming; publishing databases; software distribution", treatment = "P Practical", } @Article{Anonymous:1996:JCT, author = "Anonymous", title = "{Java} de caffeinated? --- Three members of the original {Java} team leave", journal = j-COMPUTERWORLD, volume = "30", number = "6", pages = "32--??", year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Feb 23 08:05:11 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Anonymous:1996:JDT, author = "Anonymous", title = "{Java} Development Tools Debug", journal = j-WEBSERVER, volume = "1", number = "1", pages = "70--70", month = mar # "\slash " # jun, year = "1996", ISSN = "1087-4232", bibdate = "Fri May 31 11:21:20 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cpg.com", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Anonymous:1996:JF, author = "Anonymous", title = "{Java} Forms", journal = j-BYTE, volume = "21", number = "11", pages = "38--??", month = nov, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Thu Nov 21 19:22:46 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Anonymous:1996:JGE, author = "Anonymous", title = "{Java} Gets Even Hotter", journal = j-INFORMATION-WEEK, volume = "??", number = "562", pages = "26--??", month = jan, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Fri Feb 23 08:05:11 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Sun Microsystems forms unit to cash in on Web programming language.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1996:JGH, author = "Anonymous", title = "{Java} getting heat from {MS ActiveX}", journal = j-COMP-DESIGN, volume = "35", number = "10", pages = "22--??", day = "1", month = sep, year = "1996", CODEN = "CMPDAM", ISSN = "0010-4566", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", acknowledgement = ack-nhfb, fjournal = "Computer Design", } @Article{Anonymous:1996:JGM, author = "Anonymous", title = "{Java} Goes Mainstream", journal = j-INFORMATION-WEEK, volume = "??", number = "567", pages = "21--??", month = feb, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Fri Feb 23 08:05:11 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Database interface spec takes Sun's programming language beyond the Internet.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Book{Anonymous:1996:JGP, author = "Anonymous", title = "{Java} Game Programming Starter Kit {C/Dos/Us}", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "????", month = dec, year = "1996", ISBN = "1-57521-201-3", ISBN-13 = "978-1-57521-201-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1575212013/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$79.99", acknowledgement = ack-nhfb, } @Article{Anonymous:1996:JGS, author = "Anonymous", title = "{Java} Gets Serious With {RAD}", journal = j-SOFTWARE-MAG, volume = "16", number = "10", pages = "77--??", day = "1", month = oct, year = "1996", CODEN = "SMWMEQ", ISSN = "0279-9782 (or 0897-8085??)", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Will the first wave of Java RAD tools jolt the Net's user community into developing more complex business applications? Critics say the tools are too immature, but early adopters are moving ahead with data access application.", acknowledgement = ack-nhfb, fjournal = "Software Magazine", } @Article{Anonymous:1996:JGT, author = "Anonymous", title = "{Java} Gets On Track", journal = j-INFORMATION-WEEK, volume = "592", pages = "14--??", day = "12", month = aug, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Shipping giant CSX readies a rollout of the biggest enterprise application ever written in Sun's platform-independent language.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Book{Anonymous:1996:JH, author = "Anonymous", title = "{Java Hacker}", publisher = pub-FRANZIS-VERLAG, address = pub-FRANZIS-VERLAG:adr, pages = "????", year = "1996", ISBN = "3-7723-9753-0", ISBN-13 = "978-3-7723-9753-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.franzis-buch.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "49 DM", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.franzis-buch.de/", } @Article{Anonymous:1996:JHM, author = "Anonymous", title = "{Java} helps {MKS} solve its cross-platform portability problems", journal = j-I-S-ANALYZER, volume = "35", number = "9", pages = "2--7", month = sep, year = "1996", CODEN = "ISANEL", ISSN = "0896-3231", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming); C6115 (Programming support); C6130G (Groupware)", fjournal = "I/S Analyzer", keywords = "95; authoring systems; browsers; class libraries; collaborative authoring tools; configuration management; control; cross platform portability problems; development language; garbage collection scheme; groupware; Java; Java applets; MKS; multiplatform portability; object oriented; object-oriented languages; object-oriented programming; OOP; programming; software libraries; software portability; third party widgets; Unix; version; Windows; Windows NT", treatment = "A Application", } @Article{Anonymous:1996:JHP, author = "Anonymous", title = "{Java-fueled} hub perks up managers", journal = j-COMPUTERWORLD, volume = "30", number = "27", pages = "90--90", day = "1", month = jul, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Aug 19 12:08:00 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @InProceedings{Anonymous:1996:JIA, author = "Anonymous", title = "{Java} Internationalization Architecture --- Continued", crossref = "UC:1996:SDI", pages = "A4--??", year = "1996", bibdate = "Thu Aug 20 07:03:28 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "Internet; software development; Unicode", } @Book{Anonymous:1996:JIC, author = "Anonymous", title = "{Java} Interactive Course", publisher = pub-WAITE-GROUP, address = pub-WAITE-GROUP:adr, pages = "????", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Fri Jun 14 13:14:53 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.waite.com/waite/", acknowledgement = ack-nhfb, } @Article{Anonymous:1996:JIS, author = "Anonymous", title = "{Java IDE} Set For Release", journal = j-INFORMATION-WEEK, volume = "??", number = "568", pages = "83--??", month = feb, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Tue Mar 12 13:11:43 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Rogue Wave says its product is the first to be production quality.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1996:JJDa, author = "Anonymous", title = "And {Java} Juices Databases", journal = j-SUNEXPERT, volume = "7", number = "4", pages = "12--12", month = apr, year = "1996", ISSN = "1053-9239", bibdate = "Tue Apr 16 06:19:04 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Anonymous:1996:JJDb, author = "Anonymous", title = "{Java} Juices Databases", journal = j-WEBSERVER, volume = "1", number = "1", pages = "16--16", month = mar # "\slash " # jun, year = "1996", ISSN = "1087-4232", bibdate = "Fri May 31 11:15:12 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cpg.com", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Anonymous:1996:JJEa, author = "Anonymous", title = "{Java}, {Java} Everywhere", journal = j-WEBSERVER, volume = "1", number = "1", pages = "10--11", month = mar # "\slash " # jun, year = "1996", ISSN = "1087-4232", bibdate = "Fri May 31 11:15:12 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cpg.com", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Anonymous:1996:JJEb, author = "Anonymous", title = "{Java}, {Java} Everywhere", journal = j-SUNEXPERT, volume = "7", number = "6", pages = "8, 10", month = jun, year = "1996", ISSN = "1053-9239", bibdate = "Tue Jun 25 09:53:46 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Anonymous:1996:JKM, author = "Anonymous", title = "{Java} killer? --- {Microsoft} plans to build {Internet} support directly into future versions of {Windows} 95 and {NT}, as part of its defense against {Sun}'s {Java} development system", journal = j-COMPUTERWORLD, volume = "30", number = "8", pages = "46--??", month = "????", year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Tue Mar 12 13:11:43 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Anonymous:1996:JM, author = "Anonymous", title = "{Java-to-RDBMS} Mapping", journal = j-WEBSERVER, volume = "3", number = "4", pages = "50--50", month = nov # "\slash " # dec, year = "1996", ISSN = "1087-4232", bibdate = "Tue Dec 03 07:04:38 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses Thought Inc.'s CocoBase products for support of use of Java with relational database management systems.", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Anonymous:1996:JMW, author = "Anonymous", title = "{JAVA}: {Microsoft} Won't Fight It", journal = j-INFORMATION-WEEK, volume = "??", number = "577", pages = "14--??", month = apr, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Rather than compete with Sun's programming language, Microsoft will embed it in its core Windows operating system; is this as radical a change as it seems?", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1996:JNB, author = "Anonymous", title = "{Java} Now Being Served ``100\% Pure''", journal = j-ENEWS, volume = "42", number = "2147", pages = "48--48", day = "16", month = dec, year = "1996", CODEN = "ELNEAU", ISSN = "0013-4937, 1061-6624", bibdate = "Tue Dec 24 14:30:56 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Electronic News", } @Article{Anonymous:1996:JNT, author = "Anonymous", title = "{Java}: {A} New Tool for Engineering --- This hot new {Internet} programming language, which runs on any platform, could be the breakthrough engineers are looking for to communicate product data within their companies and with suppliers and customers", journal = j-MECH-ENG, volume = "118", number = "4", pages = "68--??", month = "????", year = "1996", CODEN = "MEENAH", ISSN = "0025-6501", ISSN-L = "0025-6501", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Mechanical Engineering: the journal of the American Society of Mechanical Engineers", } @Article{Anonymous:1996:JPE, author = "Anonymous", title = "{Java} perks up embedded systems conference", journal = j-ELECTRONIC-DESIGN, volume = "44", number = "18", pages = "153--??", day = "3", month = sep, year = "1996", CODEN = "ELODAW", ISSN = "0013-4872", ISSN-L = "0013-4872", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", acknowledgement = ack-nhfb, fjournal = "Electronic Design", } @Article{Anonymous:1996:JPJ, author = "Anonymous", title = "The {Java} Platform and {JavaOS}: Enabling Network-Based Applications", journal = j-SUN-DEVELOPER-NEWS, volume = "1", number = "1", pages = "2--2", month = "Fall", year = "1996", bibdate = "Tue Dec 03 11:48:14 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Anonymous:1996:JPM, author = "Anonymous", title = "{Java-based} Pattern Matching", journal = j-SUNEXPERT, volume = "7", number = "8", pages = "74--74", month = aug, year = "1996", ISSN = "1053-9239", bibdate = "Sat Aug 17 09:35:58 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Describes {VanillaSearch}, a search class for {Java} developers from {Thought, Inc.}.", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Anonymous:1996:JR, author = "Anonymous", title = "{Java} for real-time", journal = j-REAL-TIME-SYST, volume = "11", number = "2", pages = "197--205", month = sep, year = "1996", CODEN = "RESYE9", ISSN = "0922-6443", ISSN-L = "0922-6443", bibdate = "Thu Dec 12 06:31:53 MST 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Iowa State Univ", affiliationaddress = "IA, USA", classification = "722.4; 723; 723.1; 723.1.1", fjournal = "Real-Time Systems", keywords = "Computer programming languages; Computer software; Object oriented programming; Programming language Java; Real time systems", } @Article{Anonymous:1996:JSI, author = "Anonymous", title = "{Java} Surges Onto the {Internet}", journal = j-LIB-SYSTEMS, volume = "16", number = "1", pages = "3--??", year = "1996", ISSN = "0277-0288", bibdate = "Fri Feb 23 08:05:11 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Library Systems", } @Article{Anonymous:1996:JSJ, author = "Anonymous", title = "{Java}, schmava --- {John Gantz} isn't impressed by the {Java} hoopla. It's just a programming language, he notes, and there's no guarantee applets will play", journal = j-COMPUTERWORLD, volume = "30", number = "13", pages = "37--??", month = "????", year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Anonymous:1996:JSKa, author = "Anonymous", title = "{Java} Starter Kit for {Macintosh}", publisher = pub-HAYDEN, address = pub-HAYDEN:adr, pages = "????", year = "1996", ISBN = "1-56830-293-2", ISBN-13 = "978-1-56830-293-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/hayden/; http://www.amazon.com/exec/obidos/ISBN=1568302932/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$79.95", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15683/bud/1568302932.html", acknowledgement = ack-nhfb, dimensions = "9.36in x 7.68in x 2.11in", } @Book{Anonymous:1996:JSKb, author = "Anonymous", title = "The {Java} starter kit. {Version 1.0} for {Windows}", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "????", month = oct, year = "1996", ISBN = "1-57521-077-0, 1-57521-097-5", ISBN-13 = "978-1-57521-077-3, 978-1-57521-097-1", LCCN = "????", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.amazon.com/exec/obidos/ISBN=1575210770/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "1 CD-ROM and 1 book.", price = "US\$80", acknowledgement = ack-nhfb, annote = "Title from disc label. Accompanied by book, Teach yourself Java in 21 days; published in 1996 by Sams.net. An introduction to the Java program language. System requirements: IBM-compatible PC; Windows 95 or Windows NT 3.51; 8 MB RAM (16 MB recommended for Symantec Caf{\'e} Lite); 30 MB to 80 MB free hard disk space; Java-compatible Web browser (HotJava or Netscape 2.0) recommended.", keywords = "Java (Computer program language) -- Interactive multimedia", } @Book{Anonymous:1996:JSKc, author = "Anonymous", title = "{Java} Starter Kit, Deluxe Edition", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "????", day = "14", month = aug, year = "1996", ISBN = "1-57521-190-4", ISBN-13 = "978-1-57521-190-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575211904.html; http://www.amazon.com/exec/obidos/ISBN=1575211904/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$69.99", acknowledgement = ack-nhfb, dimensions = "9.38in x 7.48in x 1.98in", } @Article{Anonymous:1996:JSU, author = "Anonymous", title = "{JavaBeans} Specs Unveiled", journal = j-INFORMATION-WEEK, volume = "602", pages = "22--??", day = "21", month = oct, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Tue Dec 24 06:16:53 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Early release gives Java developers a boost.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1996:JSW, author = "Anonymous", title = "{JavaOS} Scores Wins with {Wyse}, {Taiwan}", journal = j-SUNEXPERT, volume = "7", number = "8", pages = "6--6", month = aug, year = "1996", ISSN = "1053-9239", bibdate = "Sat Aug 17 09:31:27 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Anonymous:1996:JTA, author = "Anonymous", title = "{Java} Takes Aim at {Web} Applets", journal = j-GRAPHIC-ARTS-MONTHLY, volume = "68", number = "6", pages = "84--??", day = "1", month = jun, year = "1996", CODEN = "GAMOE4", ISSN = "1047-9325", ISSN-L = "1047-9325", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", acknowledgement = ack-nhfb, fjournal = "Graphic arts monthly: the magazine of the printing industry", } @Article{Anonymous:1996:JTEa, author = "Anonymous", title = "{Java}: a timely example of distributed object technology", journal = j-CLIENT-SERVER-ECONOMICS-LETT, volume = "3", number = "6", pages = "7--8", month = jun, year = "1996", CODEN = "CSELF4", ISSN = "1074-3138", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D5020 (Computer networks and intercomputer communications)", fjournal = "Client\slash Server Economics Letter", keywords = "applets; C language; C++; client-server systems; distributed object technology; distributed programs; Internet; Java; language; languages; object-oriented; object-oriented programming; Web", treatment = "E Economic; P Practical", } @Article{Anonymous:1996:JTEb, author = "Anonymous", title = "{Joe} Takes Enterprise To {Web}", journal = j-INFORMATION-WEEK, volume = "594", pages = "11A--??", day = "26", month = aug, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Sun's development environment lets Java take advantage of NEO capabilities.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1996:JTJ, author = "Anonymous", title = "{JClass Table}, {JClass Table Applet} combine {XRT}\slash table, {Java} technology", journal = j-SILICON-GRAPHICS-WORLD, volume = "6", number = "8", pages = "25--25", month = aug, year = "1996", ISSN = "1057-7041", bibdate = "Mon Aug 19 12:05:04 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Silicon Graphics World", } @Article{Anonymous:1996:JTR, author = "Anonymous", title = "{Java} teams up with {RTOSs}", journal = j-ELECTRONIC-DESIGN, volume = "44", number = "7", pages = "153--??", month = "????", year = "1996", CODEN = "ELODAW", ISSN = "0013-4872", ISSN-L = "0013-4872", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Electronic Design", } @Article{Anonymous:1996:JTS, author = "Anonymous", title = "{Java} Tools Are Still Brewing", journal = j-INFORMATION-WEEK, volume = "594", pages = "1A--??", day = "26", month = aug, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Corporate developers hold deployment.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1996:JVA, author = "Anonymous", title = "{Java} vs. {ActiveX}: {A} Comparison", journal = j-SUN-DEVELOPER-NEWS, volume = "1", number = "1", pages = "7, 11", month = "Fall", year = "1996", bibdate = "Tue Dec 03 11:51:11 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Anonymous:1996:JWD, author = "Anonymous", title = "{Java} Will Dwarf {Windows}, Says {Sun}'s {Scott McNealy}", journal = j-ORACLE-INTEGRATOR, volume = "7", number = "5", pages = "1, 19--21", month = sep # "\slash " # oct, year = "1996", CODEN = "ORINEI", ISSN = "1068-5537", bibdate = "Wed Nov 27 09:09:21 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Oracle Integrator", } @Article{Anonymous:1996:KJP, author = "Anonymous", title = "Keeping {Java} Perking", journal = j-BUSINESS-WEEK, volume = "??", number = "3459", pages = "73", month = jan, year = "1996", CODEN = "BUWEA3", ISSN = "0007-7135", bibdate = "Wed Jan 24 12:16:31 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Sun is rushing to revise its plans for the sizzling new computer language.", acknowledgement = ack-nhfb, fjournal = "Business week", } @Article{Anonymous:1996:KWT, author = "Anonymous", title = "200 Killer {Web} Tools", journal = j-PC-COMPUTING, volume = "9", number = "8", pages = "131--??", day = "1", month = aug, year = "1996", CODEN = "PCMPEI", ISSN = "0899-1847", ISSN-L = "0899-1847", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "The complete Webmaster toolkit: cool browser plug-ins, the best 3-D graphics editors, easy Java programming tools, powerful Web servers, streaming audio and video authoring add-ins, and tons more!", acknowledgement = ack-nhfb, fjournal = "PC\slash Computing", } @Article{Anonymous:1996:L, author = "Anonymous", title = "Letters", journal = j-FORTH-DIMENSIONS, volume = "18", number = "2", pages = "5--??", day = "1", month = jul, year = "1996", CODEN = "FODMD5", ISSN = "0884-0822", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Mousetrap myth; Java learns from Forth, Forth may benefit.", acknowledgement = ack-nhfb, fjournal = "Forth Dimensions", } @Article{Anonymous:1996:MBJ, author = "Anonymous", title = "{Microsoft} brews {Java} with {Visual J++} app dev tool", journal = j-DATAMATION, volume = "42", number = "????", pages = "23--??", month = "????", year = "1996", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat Oct 12 16:26:29 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Datamation", keywords = "Java (Computer language); Software tools", } @Article{Anonymous:1996:MGJ, author = "Anonymous", title = "The {Mac} Gets a {Java} Toolkit", journal = j-INFORMATION-WEEK, volume = "??", number = "562", pages = "64--??", month = jan, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Fri Feb 23 08:05:11 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Natural Intelligence's Roaster gives Web site developers another option.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Book{Anonymous:1996:MJT, author = "Anonymous", title = "Le Meilleur de {Java}: Trucs, Astuces et Secrets", publisher = pub-EDITION-MICRO-APPLICATIONS, address = pub-EDITION-MICRO-APPLICATIONS:adr, pages = "509", year = "1996", ISBN = "2-7429-0774-2", ISBN-13 = "978-2-7429-0774-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.microapp.com/", note = "French translation by Hassina Abbasbhay. Based on the original edition by Data Becker in Dusseldorf. Includes CD-ROM.", price = "149 FF", URL = "http://www.microapp.com/", acknowledgement = ack-nhfb, language = "French", } @Article{Anonymous:1996:MP, author = "Anonymous", title = "Is {Microsoft} Perking?", journal = j-INFORMATION-WEEK, volume = "584", pages = "104--??", day = "17", month = jun, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Skeptics question its support for Java.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1996:MPJ, author = "Anonymous", title = "{Mitsubishi} ports {Java} to 32-bit {RISC}", journal = j-COMP-DESIGN, volume = "35", number = "8", pages = "16--??", day = "1", month = jul, year = "1996", CODEN = "CMPDAM", ISSN = "0010-4566", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", acknowledgement = ack-nhfb, fjournal = "Computer Design", } @Article{Anonymous:1996:MSI, author = "Anonymous", title = "{E}-mail suite includes {Java}", journal = j-COMPUTERWORLD, volume = "30", number = "52", pages = "65--65", month = dec, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Jan 03 07:06:28 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Anonymous:1996:MVB, author = "Anonymous", title = "Morphing {Visual Basic}", journal = j-INFORMATION-WEEK, volume = "597", pages = "134--??", day = "16", month = sep, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Startup releases utility that converts VB code into Java source code.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1996:MWC, author = "Anonymous", title = "Middleware for the {Web} --- {Connection} for {Java} will help developers link corporate resources to {Web} applications", journal = j-LAN-TIMES, volume = "13", number = "5", pages = "45--??", month = "????", year = "1996", ISSN = "1040-5917", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "LAN times", } @Article{Anonymous:1996:MWJ, author = "Anonymous", title = "Managing via the {Web} --- {Java} applets let administrators manage networks over the {Web}", journal = j-LAN-TIMES, volume = "13", number = "5", pages = "18--??", month = "????", year = "1996", ISSN = "1040-5917", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "LAN times", } @Article{Anonymous:1996:Na, author = "Anonymous", title = "On the {Net}", journal = j-LAN, volume = "11", number = "8", pages = "43--??", day = "1", month = aug, year = "1996", CODEN = "LANNER", ISSN = "0898-0012", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Hotter than Java.", acknowledgement = ack-nhfb, fjournal = "LAN: the network solutions magazine", } @Article{Anonymous:1996:NAJ, author = "Anonymous", title = "New {APIs} from {Java}", journal = j-ELECTRONIC-DESIGN, volume = "42", number = "2119", pages = "25--25", day = "3", month = jun, year = "1996", CODEN = "ELODAW", ISSN = "0013-4872", ISSN-L = "0013-4872", bibdate = "Wed Jun 05 17:20:48 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Electronic Design", } @Article{Anonymous:1996:NB, author = "Anonymous", title = "News Briefs", journal = j-INFORMATION-WEEK, volume = "586", pages = "40--??", day = "1", month = jul, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Paperless auto loans from Chase, Net credit card in Japan, Java Anyware, and greatest hits on the Web.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1996:NBT, author = "Anonymous", title = "A New Box of Tools for a Networked World --- {Sun}'s {Java}", journal = j-DATA-COMMUNICATIONS, volume = "25", number = "1", pages = "117--??", year = "1996", CODEN = "DACODM", ISSN = "0363-6399", bibdate = "Fri Feb 23 08:05:11 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Data communications", } @Article{Anonymous:1996:Nc, author = "Anonymous", title = "News", journal = j-MACUSER, volume = "12", number = "9", pages = "23--??", day = "1", month = sep, year = "1996", CODEN = "MCUSEY", ISSN = "0884-0997", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "OpenDoc developers move to embrace component-software technology; Java platform-agnostic code brings Windows apps to the Mac; Clone Watch Tanzania: The pre-CHRP, post-Mac platform; Internet free Apple software! (The catch: It's beta); Cocoa supercharged, Net-savvy kid sim; Plus Macintosh price index.", acknowledgement = ack-nhfb, fjournal = "MacUser", } @Article{Anonymous:1996:NGJ, author = "Anonymous", title = "{Netware} To Get {Java} Functionality", journal = j-INFORMATION-WEEK, volume = "590", pages = "20--??", day = "29", month = jul, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Novell accelerates plan to make network operating system run Java applets.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1996:NNN, author = "Anonymous", title = "New {Netscape Navigator} does {3-D}, better {Java}. {N+I} = bridges + routers + hub. {OpenDoc} gets a leg up; updates, {Cyberdog} groom technology. {Excel} does", journal = j-MACWEEK, volume = "10", number = "13", pages = "14--??", month = "????", year = "1996", CODEN = "MWEEEI", ISSN = "0892-8118", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "MacWEEK", } @Article{Anonymous:1996:NOC, author = "Anonymous", title = "New On-Line Connection for {Java} Developers", journal = j-SUN-DEVELOPER-NEWS, volume = "1", number = "1", pages = "9--9", month = "Fall", year = "1996", bibdate = "Tue Dec 03 11:52:26 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Anonymous:1996:NPO, author = "Anonymous", title = "New Products: {ObjectSpace Java Generic Library; ObjectSpace Web Toolkit; Innovative Software InvisibleWeb \& Offline Proxy Server; Datacomm {Internet} and Intranet\slash Web Server with Cyrix 166MHz chip; ARDI Executor 2; {TowerEiffel} Release 2.0; {Debian Linux} 1.1; Open Systems Management COS\slash Print; Amtec Engineering Tecplot 7.0; Thought, Inc. VanillaSearch; Dimension X Liquid Reality Developer's Kit; X Inside, Inc. Accelerated OpenGL Solution for {Linux}; Spire Technologies Tactician Plus}", journal = j-LINUX-J, volume = "30", pages = "??--??", month = oct, year = "1996", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Fri Oct 9 08:35:26 MDT 1998", bibsource = "http://www.linuxjournal.com/issue30/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.linuxjournal.com/issue30/newprod.html", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Article{Anonymous:1996:NPU, author = "Anonymous", title = "New Products: {UML} and {Java} go {Platinum}", journal = j-COMPUTER, volume = "29", number = "6", pages = "104--106", month = jun, year = "1996", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Fri Mar 14 16:41:00 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Anonymous:1996:NPV, author = "Anonymous", title = "New Products: {Visual SlickEdit Version 2.0; C++ Version of Andrew User Interface; JClass LiveTable Pro \& LiveTable Applet; FairCom Web Server; New Release of ObjectSpace C++ Class Libraries; CocoBase Java DataBase Access System; InTerNet-LINK; Linux Advanced GUI Toolkit; Introduction to Programming Java Applets; SOLID Server 2.1 for Linux; COS/Relay; Linux Serial I/O Solutions; CRiSP v5-Multiplatform Professional Editor; Cross-Platform Web Agent-Trudger; NExS version 1.2 for Linux; Networking Switch for Access 8 PCs; Acu4GL for ODBC; InfoMagic Workgroup Server}", journal = j-LINUX-J, volume = "32", pages = "??--??", month = dec, year = "1996", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Fri Oct 9 08:35:26 MDT 1998", bibsource = "http://www.linuxjournal.com/issue32/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Article{Anonymous:1996:NTW, author = "Anonymous", title = "The Next Take on {Windows}", journal = j-INFORMATION-WEEK, volume = "588", pages = "18A--??", day = "15", month = jul, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Microsoft's Visual J++ will marry Java and ActiveX technologies.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1996:NUJ, author = "Anonymous", title = "The {NCSA} uses {Java} to enable collaborative analysis over the {Internet}", journal = j-I-S-ANALYZER, volume = "35", number = "9", pages = "8--11", month = sep, year = "1996", CODEN = "ISANEL", ISSN = "0896-3231", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210L (Computer communications); C6130G (Groupware); C6110J (Object-oriented programming); C6140D (High level languages); C6150N (Distributed systems software); C5620W (Other computer networks); C6110B (Software engineering techniques)", fjournal = "I/S Analyzer", keywords = "application requirements; class libraries; collaborative analysis; collaborative groupware environment; collaborative tools; geographic; graphics; groupware; Habanero; Internet; Java; libraries; locations; multiple platforms; NCSA; object-; object-oriented languages; oriented programming; prototyping; shared graphing/analysis; software; software libraries; tool", treatment = "P Practical", } @Article{Anonymous:1996:NUS, author = "Anonymous", title = "{Netscape} unplugs {Shockwave}", journal = j-COMPUTERWORLD, volume = "30", number = "37", pages = "68--68", day = "9", month = sep, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Sep 20 11:34:56 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Netscape has agreed to embed Macromedia's Fireworks device, a Java-language-based animation API into Netscape Navigator.", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Anonymous:1996:ODJ, author = "Anonymous", title = "{ObjectSpace} designs {Java} training course", journal = j-SILICON-GRAPHICS-WORLD, volume = "6", number = "8", pages = "25--25", month = aug, year = "1996", ISSN = "1057-7041", bibdate = "Mon Aug 19 12:05:04 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Silicon Graphics World", } @Article{Anonymous:1996:ODL, author = "Anonymous", title = "Online --- Despite a lack of standards, {3-D} flourishes online; financial shareware helps you stick to a budget, save for retirement, and pay debts; graphics {BBSs} offer stunning images; Shopper hosts an online discussion of {Java}", journal = j-COMPUTER-SHOPPER, pages = "615--??", month = feb, year = "1996", ISSN = "0886-0556", bibdate = "Fri Feb 23 08:05:11 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computer Shopper", } @Article{Anonymous:1996:OEEa, author = "Anonymous", title = "{OCLC} to Enhance Electronics Journals Online ({EJO}) with {Hot Java} on the {World Wide Web}", journal = j-INF-INTELL-ONLINE-LIB-MICROCOMPUT, volume = "14", number = "2", pages = "9--??", month = feb, year = "1996", CODEN = "IIOMEI", ISSN = "0737-7770", bibdate = "Fri Feb 23 08:05:11 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Information intelligence, online libraries, and microcomputers", } @Article{Anonymous:1996:OHP, author = "Anonymous", title = "Outlook --- Hardware processors poise to widen {Java} appeal. Memory makes transition from voice recording to data storage. Reels put new spin on assembling pin headers. Memory architecture offers {SRAM} performance at {DRAM} price. Increased integration to slow growth of {RF} transistor market", journal = j-ELECTRONIC-PRODUCTS, volume = "38", number = "11", pages = "17--??", month = "????", year = "1996", CODEN = "ELPOA2", ISSN = "0013-4953", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Electronic Products", } @Article{Anonymous:1996:OJE, author = "Anonymous", title = "{Object, Java Expo} opens", journal = j-COMPUTERWORLD, volume = "30", number = "32", pages = "2--2", day = "5", month = aug, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Aug 19 12:08:00 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @InProceedings{Anonymous:1996:OOO, author = "Anonymous", title = "Object orientation in operating systems", crossref = "Cabrera:1996:PFI", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6150J (Operating systems); C6110J (Object-oriented programming); C6150N (Distributed systems software)", conflocation = "Seattle, WA, USA; 27-28 Oct. 1996", conftitle = "Proceedings of the Fifth International Workshop on Object-Orientation in Operating Systems", keywords = "adaptive object management; Apertos; architecture; customizable; distributed resource; downloaded executable content; dynamic user customization; efficient run-time meta; file system; fine-grained; flexible-sized page-objects; global atomicity primitive; high-; IPV6 protocol; Java; MetaJava; mobile objects; monitors; network operating systems; object allocation; object orientation; object-based operating systems; object-based worldwide operating system; object-oriented programming; operating system support; operating systems (computers); performance real-time CORBA; reconfigurable microkernel; single address space operating system; specialization; stack; virtual memory overhead", sponsororg = "IEEE Comput. Soc. Tech. Committee on Oper. Syst.; USENIX", } @Article{Anonymous:1996:ORJ, author = "Anonymous", title = "{ObjectSpace} Releases {Java} Generic Library for Free Commercial Use", journal = j-CCCUJ, volume = "14", number = "10", pages = "96--96", month = oct, year = "1996", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Thu Sep 12 07:21:02 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Anonymous:1996:OTT, author = "Anonymous", title = "Online: Technical Tips", journal = j-LAN, volume = "5", number = "3", pages = "75--??", day = "1", month = aug, year = "1996", CODEN = "LANNER", ISSN = "1038-359X (or 1069-5621??)", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Common Gateway Interface, Java and JavaScript/Novell NetWare Login and Authentication/Dynamic Host Configuration Protocol and BOOTP Protocol.", acknowledgement = ack-nhfb, fjournal = "LAN: the network solutions magazine", } @Article{Anonymous:1996:P, author = "Anonymous", title = "Pulse", journal = j-PC-COMPUTING, volume = "9", number = "8", pages = "38--??", day = "1", month = aug, year = "1996", CODEN = "PCMPEI", ISSN = "0899-1847", ISSN-L = "0899-1847", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Digital video disc drives, Java viruses.", acknowledgement = ack-nhfb, fjournal = "PC\slash Computing", } @Article{Anonymous:1996:PAJ, author = "Anonymous", title = "Protect Against {Java} Email Attacks", journal = j-WEBSERVER, volume = "1", number = "4", pages = "48--48", month = nov # "\slash " # dec, year = "1996", ISSN = "1087-4232", bibdate = "Tue Dec 03 07:03:23 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses Finjan Software Ltd.'s SurfinBoard Java email firewall product.", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Anonymous:1996:PIW, author = "Anonymous", title = "Putting the {Internet} to Work: Is {Java} online marvel or menace?", journal = j-COMMUN-NEWS, volume = "33", number = "9", pages = "44--??", day = "1", month = sep, year = "1996", CODEN = "CMUNA9", ISSN = "0010-3632", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", acknowledgement = ack-nhfb, fjournal = "Communications news (Geneva, IL)", } @Article{Anonymous:1996:PJa, author = "Anonymous", title = "Perking Up {Java}", journal = j-INFORMATION-WEEK, volume = "??", number = "564", pages = "70--??", month = jan, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Fri Feb 23 08:05:11 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "New object technology will make it easier to build network applets.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1996:PJB, author = "Anonymous", title = "Pulse --- {Java} brewing, the first cable modems, Radar", journal = j-PC-COMPUTING, volume = "9", number = "3", pages = "48--??", month = "????", year = "1996", CODEN = "PCMPEI", ISSN = "0899-1847", ISSN-L = "0899-1847", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "PC\slash Computing", } @Article{Anonymous:1996:PJd, author = "Anonymous", title = "Poison {Java}", journal = j-PC-COMPUTING, volume = "9", number = "10", pages = "332--??", day = "1", month = oct, year = "1996", CODEN = "PCMPEI", ISSN = "0899-1847", ISSN-L = "0899-1847", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Are you safe on the Net? Are you sure? Don't get stung by rogue Java applets.", acknowledgement = ack-nhfb, fjournal = "PC\slash Computing", } @Article{Anonymous:1996:PJe, author = "Anonymous", title = "Programming with {Java}", journal = j-UNIX-REVIEW, volume = "14", number = "5", pages = "??--??", month = may, year = "1996", CODEN = "UNRED5", ISSN = "0742-3136", bibdate = "Thu Dec 12 06:31:53 MST 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classification = "721.1; 722.2; 723.1; 723.1.1; 723.2; 723.5", fjournal = "UNIX review", keywords = "C (programming language); Class inheritance; Coding errors; Computer programming; Computer software; Data handling; Data structures; Embedded systems; Equivalence classes; Inheritance; Interface inheritance; Interfaces (computer); Modula (programming language); Object oriented programming; References; Reliability; Security of data; Software engineering; Software Package Java", pagecount = "5", } @Article{Anonymous:1996:PRI, author = "Anonymous", title = "{Pencom} releases introductory {Java} book", journal = j-SILICON-GRAPHICS-WORLD, volume = "6", number = "11", pages = "7--7", month = nov, year = "1996", ISSN = "1057-7041", bibdate = "Sat Nov 16 14:45:54 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Brief review of \cite{Au:1996:JPB}.", acknowledgement = ack-nhfb, fjournal = "Silicon Graphics World", } @Article{Anonymous:1996:PRJ, author = "Anonymous", title = "Product Review: {The Java Reference Package from SSC}", journal = j-LINUX-J, volume = "30", pages = "??--??", month = oct, year = "1996", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Fri Oct 9 08:35:26 MDT 1998", bibsource = "http://www.linuxjournal.com/issue30/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.linuxjournal.com/issue30/javarev.html", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Article{Anonymous:1996:RAR, author = "Anonymous", title = "{Rational} Announced {Rational Rose} for {Java}", journal = j-CCCUJ, volume = "14", number = "9", pages = "94--94", month = sep, year = "1996", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Fri Aug 30 06:14:59 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Anonymous:1996:RC, author = "Anonymous", title = "The return of {COBOL}", journal = j-SOFTWARE-ECONOMICS-LETTER, volume = "5", number = "6", pages = "4--7", month = jun, year = "1996", CODEN = "SECLE3", ISSN = "1065-6146", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D1040 (Human aspects)", fjournal = "Software Economics Letter", keywords = "COBOL; COBOL development; COBOL staff; human resource management; IS strategies; legacy terms; object-oriented COBOL; personnel; programmers; programming; Smalltalk; software development management", treatment = "E Economic", } @Article{Anonymous:1996:RID, author = "Anonymous", title = "To the rescue-middleware for {Intranet} developers", journal = j-SOFTWARE-ECONOMICS-LETTER, volume = "5", number = "8", pages = "4--6", month = aug, year = "1996", CODEN = "SECLE3", ISSN = "1065-6146", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D5020 (Computer networks and intercomputer communications); D2080 (Information services and database systems)", fjournal = "Software Economics Letter", keywords = "applications; client/server; Common Gateway Interface; development costs; development time; host based applications; HTML; information networks; internal Web; Intranet developers; Intranet server access; Java; middleware vendors; operating systems (computers); resource editor; Web browsers; Web-enabled; WebCrusader", treatment = "P Practical", } @Article{Anonymous:1996:SAP, author = "Anonymous", title = "Slim Applet Pickin's", journal = j-INFORMATION-WEEK, volume = "593", pages = "35--??", day = "19", month = aug, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Obstacles are keeping serious Java business apps from taking hold.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1996:SES, author = "Anonymous", title = "Software: Embedded software poses challenges with growth, complexity; {Java} can shine in embedded apps --- even real-time; Object-oriented languages and tools proliferate", journal = j-COMP-DESIGN, volume = "35", number = "10", pages = "91--??", day = "1", month = sep, year = "1996", CODEN = "CMPDAM", ISSN = "0010-4566", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", acknowledgement = ack-nhfb, fjournal = "Computer Design", } @Article{Anonymous:1996:SJ, author = "Anonymous", title = "{SNiFF+} for {Java}", journal = j-SUNEXPERT, volume = "7", number = "3", pages = "10--10", month = mar, year = "1996", ISSN = "1053-9239", bibdate = "Mon Apr 01 07:56:20 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Anonymous:1996:SJA, author = "Anonymous", title = "{Sun}'s {JavaBeans API} lets users write reusable components", journal = j-SILICON-GRAPHICS-WORLD, volume = "6", number = "12", pages = "14--14", month = dec, year = "1996", ISSN = "1057-7041", bibdate = "Sat Dec 28 18:14:54 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Silicon Graphics World", } @Article{Anonymous:1996:SJW, author = "Anonymous", title = "{SunSoft Java WorkShop} 1.0 vs. {Symantec Caf{\'e}} 1.2", journal = j-PC-COMPUTING, volume = "9", number = "10", pages = "108--??", day = "1", month = oct, year = "1996", CODEN = "PCMPEI", ISSN = "0899-1847", ISSN-L = "0899-1847", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Brew your own apps.", acknowledgement = ack-nhfb, fjournal = "PC\slash Computing", } @Article{Anonymous:1996:SKR, author = "Anonymous", title = "Software Kills Rogue Applets", journal = j-RS-MAGAZINE, volume = "5", number = "10", pages = "55--55", month = oct, year = "1996", ISSN = "1088-0844, 1061-0030", bibdate = "Thu Oct 17 12:49:23 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Describes Surfinboard package from Finjan Software that monitors in-coming applets for hostile activity.", acknowledgement = ack-nhfb, fjournal = "RS\slash Magazine", } @Article{Anonymous:1996:SLJ, author = "Anonymous", title = "{Sun} Launches {JavaSoft}", journal = j-SUNEXPERT, volume = "7", number = "3", pages = "6--6", month = mar, year = "1996", ISSN = "1053-9239", bibdate = "Mon Apr 01 07:54:21 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Anonymous:1996:SMB, author = "Anonymous", title = "{Sun Microsystems} brews three flavors of {JAVA}", journal = j-COMP-DESIGN, volume = "35", number = "5", pages = "34--??", month = "????", year = "1996", CODEN = "CMPDAM", ISSN = "0010-4566", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computer Design", } @Article{Anonymous:1996:SSB, author = "Anonymous", title = "{Sun} Shoots For The Big Time", journal = j-INFORMATION-WEEK, volume = "??", number = "576", pages = "14--??", month = apr, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Sun Microsystems, Fueled by Java and plugged into the Net Pc, is making its biggest play yet for the enterprise market.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1996:SSH, author = "Anonymous", title = "{SYSTEMS} and {SOFTWARE}: Hot Cup of {Java}: Keeping companies awake", journal = j-AEROSPACE-AMERICA, volume = "34", number = "4", pages = "12--??", month = "????", year = "1996", CODEN = "AEAME2", ISSN = "0740-722X", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Aerospace America", } @Article{Anonymous:1996:SSIa, author = "Anonymous", title = "{Sun} Says It Has {Java} Processors", journal = j-SUNEXPERT, volume = "7", number = "4", pages = "12--12", month = apr, year = "1996", ISSN = "1053-9239", bibdate = "Tue Apr 16 06:19:04 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Anonymous:1996:SSIb, author = "Anonymous", title = "{Sun} Says It Has {Java} Processors", journal = j-WEBSERVER, volume = "1", number = "1", pages = "16, 18", month = mar # "\slash " # jun, year = "1996", ISSN = "1087-4232", bibdate = "Fri May 31 11:21:20 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cpg.com", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Anonymous:1996:SSM, author = "Anonymous", title = "{Sun}, {SGI}, and {Macromedia} to Extend {Java}", journal = j-CG-WORLD, volume = "19", number = "1", pages = "8--8", month = jan, year = "1996", CODEN = "CGWODH", ISSN = "0271-4159", bibdate = "Thu Jan 25 17:37:51 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computer Graphics World", } @Article{Anonymous:1996:STR, author = "Anonymous", title = "{Sun} turns red in {Java} flap", journal = j-COMPUTERWORLD, volume = "30", number = "26", pages = "????", day = "24", month = jun, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Aug 19 12:08:00 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Anonymous:1996:SUF, author = "Anonymous", title = "{Sun} unveils family of {Java} processors", journal = j-SUN-OBSERVER, volume = "10", number = "5", pages = "4--4", month = may, year = "1996", ISSN = "1058-5400", bibdate = "Tue May 07 11:13:58 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Sun Observer", } @Article{Anonymous:1996:TNA, author = "Anonymous", title = "Two new approaches to online information [{Krakatoa} and intranets]", journal = j-ONLINE-CDROM-REV, volume = "20", number = "4", pages = "206--207", month = aug, year = "1996", CODEN = "ONCDEW", ISSN = "0309-314X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7210 (Information services and centres); C5620W (Other computer networks); C6150N (Distributed systems software); C5620L (Local area networks); C6110J (Object-oriented programming); C6115 (Programming support); C7230 (Publishing and reproduction)", countrypub = "UK", fjournal = "Online \& CDROM review: the international journal of online \& optical information systems", keywords = "CADIS; CAPSXpert Semiconductors database; client-server systems; company networks; CompassWare; Desktop Data; electronic publishing; engineering; Individual; Information Handling Services; information publisher; information services; internal information distribution; Internet; intranets; Java; Krakatoa; local area networks; manufacturers; news; object-oriented; object-oriented programming; online information; programming environment; programming environments; semiconductor; semiconductor distributors; WavePhore; World Wide Web", treatment = "G General Review; P Practical; R Product Review", } @Article{Anonymous:1996:TPJa, author = "Anonymous", title = "Tech Page: {Java} Jive", journal = j-ELECTRONIC-MUSICIAN, volume = "12", number = "3", pages = "154--??", month = mar, year = "1996", ISSN = "0884-4720", ISSN-L = "0884-4720", bibdate = "Fri Feb 23 08:05:11 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "A new programming language solves platform puzzles on the Net.", acknowledgement = ack-nhfb, fjournal = "Electronic Musician", } @Article{Anonymous:1996:TPJb, author = "Anonymous", title = "Taking the plunge with {Java}", journal = j-IRISH-COMP, volume = "20", number = "6", pages = "18--21", month = aug, year = "1996", CODEN = "IRCODQ", ISSN = "0332-0197", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming)", countrypub = "Ireland", fjournal = "Irish Computer", keywords = "commercial; development environments; interactive network; Internet; Java; microprocessor; MS-DOS; object; object-oriented; object-oriented languages; operating system; oriented programming language; platform independence; portability; programming; software; software portability; system incompatibility; World Wide Web", treatment = "P Practical", } @Article{Anonymous:1996:TSW, author = "Anonymous", title = "{TECH SECTION} --- We look at the new {Cyrix} chip; give the new {Java} programming language a taste test; peek at the research of {MIT's Visual Language Workshop}; and help you get full plug-and-play capability from {Win} 95", journal = j-COMPUTER-SHOPPER, pages = "569--??", month = feb, year = "1996", ISSN = "0886-0556", bibdate = "Fri Feb 23 08:05:11 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computer Shopper", } @Article{Anonymous:1996:TWHa, author = "Anonymous", title = "{TECHNOLOGY}: What's So Hot About {Java}?", journal = j-TIME, volume = "147", number = "4", pages = "42--??", year = "1996", CODEN = "TYMEA9", ISSN = "0040-781X", bibdate = "Fri Feb 23 08:05:11 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Time", } @Article{Anonymous:1996:TWHb, author = "Anonymous", title = "{TECHNOLOGY}: What's So Hot About {Java}?", journal = j-TIME, volume = "147", number = "4", pages = "58--??", year = "1996", CODEN = "TYMEA9", ISSN = "0040-781X", bibdate = "Fri Feb 23 08:05:11 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Time", } @Article{Anonymous:1996:TWJa, author = "Anonymous", title = "Teaching wavelets with {Java} on the information superhighway", journal = "IEEE Digital Signal Processing Workshop", pages = "101--104", year = "1996", bibdate = "Thu Dec 12 06:31:53 MST 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE catalog number 96TH8225.", acknowledgement = ack-nhfb, affiliation = "Rice Univ", affiliationaddress = "TX, USA", classification = "723.1.1; 723.2; 723.5; 901.2; 903.2; 921.3", conference = "Proceedings of the 1996 7th IEEE Digital Signal Processing Workshop", keywords = "Computer aided instruction; Computer programming languages; Digital signal processing; Engineering education; Information dissemination; Internet; Java computer language; Wavelet transforms", meetingaddress = "Loen, Norway", meetingdate = "Sep 1--4 1996", meetingdate2 = "09/01--04/96", sponsor = "IEEE", } @Article{Anonymous:1996:TWJb, author = "Anonymous", title = "Towards {Web}\slash {Java-based} high performance distributed computing --- an evolving virtual machine", journal = j-IEEE-INT-SYMP-HIGH-PERF-DIST-COMP-PROC, pages = "308--317", year = "1996", CODEN = "PIDCFB", ISSN = "1082-8907", bibdate = "Thu Dec 12 06:31:53 MST 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE catalog number 96TB100069.", acknowledgement = ack-nhfb, affiliation = "Syracuse Univ", affiliationaddress = "NY, USA", classification = "722.1; 722.4; 723.1; 723.5; 921.6", conference = "Proceedings of the 1996 5th IEEE International Symposium on High Performance Distributed Computing", fjournal = "IEEE International Symposium on High Performance Distributed Computing, Proceedings", keywords = "Computer programming; Computer vision; Distributed computer systems; Information technology; Internet; Mathematical models; Performance; Software prototyping; Virtual storage; World wide virtual machine", meetingaddress = "Syracuse, NY, USA", meetingdate = "Aug 6--9 1996", meetingdate2 = "08/06--09/96", sponsor = "IEEE", } @Book{Anonymous:1996:TYW, author = "Anonymous", title = "Teach Yourself {WWW} Database Programming with {Java} in 21 Days", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "????", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Fri Jun 14 13:18:19 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.95", URL = "http://www.mcp.com/samsnet/", acknowledgement = ack-nhfb, } @Book{Anonymous:1996:UJ, author = "Anonymous", title = "Undocumented {Java}", publisher = pub-WAITE-GROUP, address = pub-WAITE-GROUP:adr, pages = "????", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Fri Jun 14 13:14:19 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.waite.com/waite/", acknowledgement = ack-nhfb, } @Article{Anonymous:1996:VDC, author = "Anonymous", title = "Visual Development for {C/C++}, {Java}", journal = j-SUNEXPERT, volume = "7", number = "11", pages = "74--74", month = nov, year = "1996", ISSN = "1053-9239", bibdate = "Wed Nov 20 06:45:58 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Anonymous:1996:VTPa, author = "Anonymous", title = "{VisualAge} Technology Planned for {Java}", journal = j-RS-MAGAZINE, volume = "5", number = "8", pages = "8--8", month = aug, year = "1996", ISSN = "1088-0844, 1061-0030", bibdate = "Wed Aug 14 06:30:45 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "RS\slash Magazine", } @Article{Anonymous:1996:VTPb, author = "Anonymous", title = "{VisualAge} Technology Planned for {Java}", journal = j-SUNEXPERT, volume = "7", number = "8", pages = "8--8", month = aug, year = "1996", ISSN = "1053-9239", bibdate = "Sat Aug 17 09:33:22 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Anonymous:1996:Wa, author = "Anonymous", title = "Of And For The {Web}", journal = j-INFORMATION-WEEK, volume = "594", pages = "35--??", day = "26", month = aug, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Sun's Java Workshop uses Web technology to build Web applications.", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Article{Anonymous:1996:WAU, author = "Anonymous", title = "{Web} authors use {Cosmo} site for {HTML}, {Java} and {VRML} sites", journal = j-SILICON-GRAPHICS-WORLD, volume = "6", number = "11", pages = "25--25", month = nov, year = "1996", ISSN = "1057-7041", bibdate = "Sat Nov 16 14:48:29 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Silicon Graphics World", } @Article{Anonymous:1996:Wb, author = "Anonymous", title = "{WebBurst}", journal = j-MACUSER, volume = "12", number = "11", pages = "69--??", day = "1", month = nov, year = "1996", CODEN = "MCUSEY", ISSN = "0884-0997", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Use it to produce Java applets without programming, but be ready for some version-1.0 roughness.", acknowledgement = ack-nhfb, fjournal = "MacUser", } @Article{Anonymous:1996:WDS, author = "Anonymous", title = "World-wide distributed system using {Java} and the {Internet}", journal = j-IEEE-INT-SYMP-HIGH-PERF-DIST-COMP-PROC, pages = "11--18", year = "1996", CODEN = "PIDCFB", ISSN = "1082-8907", bibdate = "Thu Dec 12 06:31:53 MST 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE catalog number 96TB100069.", acknowledgement = ack-nhfb, affiliation = "California Inst of Technology", affiliationaddress = "CA, USA", classification = "716.1; 722.4; 723; 723.1; 723.1.1", conference = "Proceedings of the 1996 5th IEEE International Symposium on High Performance Distributed Computing", fjournal = "IEEE International Symposium on High Performance Distributed Computing, Proceedings", keywords = "Collaborative environments; Computer networks; Computer programming languages; Computer software; Data communication systems; Distributed computer systems; Internet; Java; Multithreaded objects; Object oriented programming; Program composition; World wide web", meetingaddress = "Syracuse, NY, USA", meetingdate = "Aug 6--9 1996", meetingdate2 = "08/06--09/96", sponsor = "IEEE", } @Article{Anonymous:1996:WVJ, author = "Anonymous", title = "Weather visualizer: a {Java} tool for interactive learning", journal = j-INT-GEOSCIENCE-REMOTE-SENSING-SYMPOSIUM, volume = "3", pages = "1498--1500", year = "1996", CODEN = "IGRSE3", bibdate = "Thu Dec 12 06:31:53 MST 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE catalog number 96CB35875.", acknowledgement = ack-nhfb, affiliation = "Univ of Illinois at Urbana-Champaign", affiliationaddress = "IL, USA", classification = "443; 722.2; 722.3; 723.5; 901.2; 903.3", conference = "Proceedings of the 1996 International Geoscience and Remote Sensing Symposium. Part 3 (of 4)", fjournal = "International Geoscience and Remote Sensing Symposium (IGARSS)", keywords = "Computer aided instruction; Computer networks; Computer programming languages; Graphical user interfaces; Information retrieval systems; Interactive computer graphics; Interactive learning; Internet; Java language; Meteorology; Visualization; Weather forecasting; Weather images; Weather information services; Weather visualizer; World Wide Web", meetingaddress = "Lincoln, NE, USA", meetingdate = "May 28--31 1996", meetingdate2 = "05/28--31/96", sponsor = "IEEE", } @Article{Anonymous:1996:WWV, author = "Anonymous", title = "Working the {Web} With a Virtual Lab and Some {Java}", journal = j-SCIENCE, volume = "273", number = "5275", pages = "591--??", day = "2", month = aug, year = "1996", CODEN = "SCIEAS", ISSN = "0036-8075 (print), 1095-9203 (electronic)", ISSN-L = "0036-8075", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", acknowledgement = ack-nhfb, fjournal = "Science", } @Book{Anonymous:1996:WWW, author = "Anonymous", title = "{World Wide Web Java}", publisher = pub-FRANZIS-VERLAG, address = pub-FRANZIS-VERLAG:adr, pages = "????", year = "1996", ISBN = "3-7723-8933-3", ISBN-13 = "978-3-7723-8933-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.franzis-buch.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM. Out of print.", price = "49 DM", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.franzis-buch.de/", } @Article{Anonymous:1996:YAM, author = "Anonymous", title = "50, 100 and 150 Years Ago: 1946: Making high-octane gasoline 1896: The missing link in {Java}. 1846: Mesmerizing crime", journal = j-SCI-AMER, volume = "274", number = "1", pages = "7--??", month = jan, year = "1996", CODEN = "SCAMAC", ISSN = "0036-8733 (print), 1946-7087 (electronic)", ISSN-L = "0036-8733", bibdate = "Wed Jun 19 06:56:52 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sciam.com/0196issue/0196toc.html", acknowledgement = ack-nhfb, fjournal = "Scientific American", } @Article{Anthes:1996:SCJ, author = "Gary H. Anthes", title = "{Sun} cleans up {Java} security spill", journal = j-COMPUTERWORLD, volume = "30", number = "11", pages = "12--12", day = "11", month = mar, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Apr 01 07:52:38 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Anuff:1996:JSCa, author = "Ed Anuff", title = "The {Java} sourcebook: Complete guide to creating {Java} Applets for the {Web}", publisher = pub-WILEY-COMPUTER, address = pub-WILEY-COMPUTER:adr, pages = "xiv + 498", year = "1996", ISBN = "0-471-14859-8 (paperback)", ISBN-13 = "978-0-471-14859-3 (paperback)", LCCN = "QA76.64.A58 1996", bibdate = "Fri Jun 14 09:06:48 1996", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0471148598/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$29.95", URL = "http://www.wiley.com/compbooks/javasrbk/javahome.html", acknowledgement = ack-nhfb, dimensions = "9.28in x 7.50in x 1.20in", keywords = "Java (Computer program language); Object-oriented programming; Object-oriented programming (Computer science); World Wide Web (Information retrieval system)", paperback = "yes", } @Book{Anuff:1996:JSCb, author = "Ed Anuff", title = "The {Java} 1.1 sourcebook: {A} Complete Guide Updated for Java 1.1", publisher = pub-WILEY-COMPUTER, address = pub-WILEY-COMPUTER:adr, edition = "Second", pages = "????", year = "1996", ISBN = "0-471-17099-2 (paperback)", ISBN-13 = "978-0-471-17099-0 (paperback)", LCCN = "????", bibdate = "Fri Jun 14 09:06:48 1996", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0471170992/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$29.95, CDN\$41.95", URL = "http://www.wiley.com/compbooks/", acknowledgement = ack-nhfb, keywords = "Java (Computer program language); Object-oriented programming; Object-oriented programming (Computer science); World Wide Web (Information retrieval system)", xxtitle = "{Java} Sourcebook", } @InProceedings{Arano:1996:ETN, author = "T. Arano and M. Aoyama", title = "Emerging technologies for network software development: past, present and future", crossref = "IEEE:1996:PTA", pages = "428--??", year = "1996", bibdate = "Sat Oct 12 16:26:29 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6150N (Distributed systems software); C6155 (Computer communications software); C7410F (Communications computing); C0310F (Software development management)", conflocation = "Seoul, South Korea; 21--23 Aug. 1996", conftitle = "Proceedings of 20th International Computer Software and Applications Conference: COMPSAC '96", corpsource = "Multimedia Service Dept., Nippon Telegraph and Telephone Corp., Japan", keywords = "artificial intelligence; automatic program generation; computer communications software; distributed objects; formal; intelligent network software; maintainability; methods; model verification; network operating systems; network programming; network software development; networking technology; object oriented technology; software engineering; software reuse; telecommunication computing", sponsororg = "IEEE Comput. Soc.; Kore Inf. Sci. Soc", treatment = "P Practical", } @Book{Arnett:1996:IPJ, author = "Nick Arnett and David Land", title = "{Internet} Programming with {JavaScript}", publisher = pub-ORA, address = pub-ORA:adr, pages = "250", month = aug, year = "1996", ISBN = "1-56592-205-0", ISBN-13 = "978-1-56592-205-1", LCCN = "????", bibdate = "Sat Jun 8 06:59:57 MDT 1996", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$24.95", URL = "http://www.ora.com/", acknowledgement = ack-nhfb, } @Book{Arnold:1996:JDP, author = "Ken Arnold and James Gosling", title = "{Java} --- Didattica e programmazione", publisher = pub-AW-ITALIA, address = pub-AW-ITALIA:adr, pages = "340", year = "1996", ISBN = "88-7192-058-9", ISBN-13 = "978-88-7192-058-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/italian.html; http://www.doit.it/Addison/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "39,000 Lire", URL = "http://www.doit.it/Addison/; http://www.doit.it/Addison/cataloghi.cgi?f=3D88-7192-058-9&pict=3D1; http://www.doit.it/Addison/cataloghi.cgi?f=88-7192-058-9&pict=1", acknowledgement = ack-nhfb, language = "Italian", } @Book{Arnold:1996:JPL, author = "Ken Arnold and James Gosling", title = "The {Java} Programming Language", publisher = pub-AW, address = pub-AW:adr, pages = "xviii + 333", day = "1", month = may, year = "1996", ISBN = "0-201-63455-4", ISBN-13 = "978-0-201-63455-6", LCCN = "QA76.73.J38A76 1996", bibdate = "Tue May 04 12:53:52 1999", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0201634554/wholesaleproductA/; http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Also available in French \cite{Arnold:1996:LJ} and Spanish \cite{Arnold:19xx:LPJ} translations. See review in \cite{Garfinkel:1996:JW}.", price = "US\$34.50", series = "The Java Series", URL = "http://www.aw.com/cp/javaseries.html; http://www.aw.com/cseng/titles/0-201-63455-4/", acknowledgement = ack-nhfb, dimensions = "9.21in x 7.38in x 0.97in", paperback = "yes", } @Book{Arnold:1996:LJ, author = "Ken Arnold and James Gosling", title = "Le Langage {Java}", publisher = pub-ITP-FRANCE, address = pub-ITP-FRANCE:adr, pages = "????", year = "1996", ISBN = "2-84180-994-3", ISBN-13 = "978-2-84180-994-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.thomson.com/intluk.html", note = "Translated by Serge Chaumette and Alain Miniussi. French translation of \cite{Arnold:1996:JPL}. Includes CD-ROM.", price = "250 FF", URL = "http://www.thomson.com/intluk.html", acknowledgement = ack-nhfb, language = "French", } @Article{Arnold:1996:MPJ, author = "K. Arnold and J. Gosling", title = "Multithreaded programming in {Java}", journal = j-WEB-TECHNIQUES, volume = "1", number = "7", pages = "34--40, 42--43", month = oct, year = "1996", CODEN = "WETEFA", ISSN = "1086-556X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6150N (Distributed systems software); C6110J (Object-oriented programming); C6140D (High level languages); C6150J (Operating systems)", fjournal = "Web Techniques", keywords = "display; display code; dynamic behaviour; handshaking; interactive program; interrupts; Java; Java object oriented language; multiple; multiprogramming; multithreaded programming; multithreaded system; object-oriented languages; object-oriented programming; operations; parallel programming; polling; problems; real world software; synchronisation; threads; updates; user input", treatment = "P Practical", } @Book{Arnold:1996:PJ, author = "Ken Arnold and James Gosling", title = "{Die Programmiersprache Java}", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xx + 366", year = "1996", ISBN = "3-8273-1034-2", ISBN-13 = "978-3-8273-1034-7", LCCN = "????", bibdate = "Mon Mar 02 18:49:01 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "69,90 DM", URL = "http://www.addison-wesley.de/; http://www.addison-wesley.de/katalog/item.ppml?textexpr=Java&id=00072; http://www.javasoft.com/people/jag/", acknowledgement = ack-nhfb, language = "German", url-author = "http://java.sun.com/people/arnold/", url-publisher = "http://www.addison-wesley.de/", } @Article{Atkinson:1996:OPJ, author = "M. P. Atkinson and L. Daynes and M. J. Jordan and T. Printezis and S. Spence", title = "An orthogonally persistent {Java}", journal = j-SIGMOD, volume = "25", number = "4", pages = "68--75", month = dec, year = "1996", CODEN = "SRECD8", ISSN = "0163-5808 (print), 1943-5835 (electronic)", ISSN-L = "0163-5808", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming); C6120 (File organisation)", corpsource = "Dept. of Comput. Sci., Glasgow Univ., UK", fjournal = "ACM SIGMOD Record", keywords = "application; data structures; database facilities; gains; language Java; object oriented language; object-oriented; object-oriented languages; orthogonal; orthogonally persistent Java; performance; persistence; programmer productivity gains; programming; programming language", treatment = "P Practical; R Product Review", } @Article{Atwood:1996:ODC, author = "T. Atwood", title = "Object databases come of age", journal = j-OBJECT-MAG, volume = "????", number = "????", pages = "60--63, 93", month = jul, year = "1996", CODEN = "OBMAFO", ISSN = "1055-3614", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6160J (Object-oriented databases); C6150N (Distributed systems software); C5620L (Local area networks); C7190 (Other fields of business and administrative computing)", corpsource = "Cinebase Software, Los Angeles, CA, USA", fjournal = "Object Magazine", keywords = "business data processing; businesses; distributed application architecture; external marketing; file servers; hardware independence; information distribution; internal communications; Internet; intranet content server; intranets; Java; local area; managers; network; networks; object databases; object DBMSs; object-oriented databases; page servers; programming languages; storage; ubiquitous access; Web sites", treatment = "G General Review", } @Book{Au:1996:JPB, author = "Edith Au and Dave Makower and {Pencom Web Works} and Mark Mangan", title = "{Java} Programming Basics", publisher = pub-MIS # " and " # pub-MT, address = pub-MIS:adr # " and " # pub-MT:adr, pages = "xix + 458", year = "1996", ISBN = "1-55828-469-9", ISBN-13 = "978-1-55828-469-2", LCCN = "QA76.73.J38 A9 1996", bibdate = "Mon Jun 22 15:19:48 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1558284699/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mispress.com/", note = "Includes CD-ROM. See review in \cite{Anonymous:1996:PRI}.", price = "US\$34.95", URL = "http://www.mandt.com/javaprogbasics.htm; http://www.pencom.com/javabasics/", acknowledgement = ack-nhfb, annote = "System requirements: IBM compatible PC or Macintosh.", dimensions = "9.28in x 7.15in x 1.21in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", xxtitle = "{Java} Basics", } @Book{Ause:1996:HUW, author = "Wayne Ause and Scott Arpajian", title = "How to use the {World Wide Web}", publisher = pub-ZD, address = pub-ZD:adr, pages = "xiii + 223", year = "1996", ISBN = "1-56276-392-X (paperback)", ISBN-13 = "978-1-56276-392-3 (paperback)", LCCN = "TK5105.888.A87 1996", bibdate = "Tue Feb 25 14:59:00 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, annote = "How the web works -- How to connect to the Web -- Web navigation 101 -- Web surfing with Netscape, NCSA Mosaic, and Internet Explorer -- Web surfing with online services -- Using helper applications -- Finding it on the Web: Web searching and navigation -- Weaving a wider Web: how to access other parts of the internet with your web browser -- The Evolving Web: Java -- The Evolving Web: virtual reality with VRML -- The evolving Web: Netscape plug-ins -- Creating and launching your own web page. -- Finding research and education web sites. -- Finding government web sites -- Finding business web sites -- commerce on the Web -- Personal and social web sites -- Finding Web sites for arts and literature -- Finding entertainment web sites.", keywords = "World Wide Web (Information retrieval system)", } @Article{Babcock:1996:JJE, author = "Charles Babcock", title = "{Java}, {Java} \ldots{} everywhere?", journal = j-COMPUTERWORLD, volume = "30", number = "42", pages = "137--137", day = "14", month = oct, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Nov 08 15:30:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Back:1996:PJP, author = "Svend Back and Klaus Bergius and Siegmar Beier and Peter Majorczyk and others", title = "{Professionelle Java-Programmierung: Leitfaden f{\"u}r Entwickler}", publisher = pub-ITCP, address = pub-ITCP:adr, pages = "394", year = "1996", ISBN = "3-8266-0249-8", ISBN-13 = "978-3-8266-0249-8", LCCN = "????", bibdate = "Mon Mar 02 18:55:12 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "79,00 DM", URL = "http://www.itp.de/online/0249/0249.html", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.itp.de/", } @InProceedings{Baker:1996:AGA, author = "James E. Baker and Isabel F. Cruz and Giuseppe Liotta and Roberto Tamassia", title = "Animating geometric algorithms over the {Web}", crossref = "ACM:1996:PTA", pages = "C3--C4", year = "1996", bibdate = "Sat Oct 12 16:26:29 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C4260 (Computational geometry); C6130B (Graphics techniques); C6150N (Distributed systems software); C4240P (Parallel programming and algorithm theory)", conflocation = "Philadelphia, PA, USA; 24--26 May 1996", conftitle = "Proceedings of Twelfth Annual Symposium on Computational Geometry", corpsource = "Dept. of Comput. Sci., Brown Univ., Providence, RI, USA", keywords = "algorithm; algorithm animation system; animation; client-server architecture; client-server systems; computational geometry; computer; distributed algorithms; distributed model; geometric algorithms; interactive; Java language; Mocha; platform-independent applications; World Wide Web", sponsororg = "ACM", treatment = "P Practical", } @Book{Bala:1996:UO, author = "Raghuram Bala and Kate Gregory", title = "Using {Optima++} 1.5", publisher = pub-QUE, address = pub-QUE:adr, pages = "xx + 634", year = "1996", ISBN = "0-7897-0894-9", ISBN-13 = "978-0-7897-0894-6", LCCN = "QA76.73.C153B335 1996", bibdate = "Mon Jun 22 08:04:57 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", URL = "http://www.mcp.com/cgi-bin/bag?isbn=0-7897-0894-9&last=/bookstore", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/que/", } @Article{Baldazo:1996:BCB, author = "Rex Baldazo and Stanford Diehl and Rich Friedman", title = "Books and {CD-ROMs}: Baby's First {Java} Book", journal = j-BYTE, volume = "21", number = "4", pages = "41--??", month = apr, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Wed Apr 24 08:19:20 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Baldazo:1996:BWS, author = "R. Baldazo", title = "Battle of the {Web} site builders", journal = j-BYTE, volume = "21", number = "7", pages = "157--158", month = jul, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210L (Computer communications); C5620W (Other computer networks); C6150N (Distributed systems software); C7210 (Information services and centres)", fjournal = "BYTE Magazine", keywords = "add-ons; Hypertext Markup Language authoring; interactive content; Internet; JavaScript support; Microsoft's FrontPage; Netscape's LiveWire; tools; Web site builders; WebBot; wizard-style functions", treatment = "P Practical", } @Article{Baldazo:1996:JA, author = "Rex Baldazo", title = "{JavaScript} adventures", journal = j-BYTE, volume = "21", number = "8", pages = "117--??", month = aug, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon Aug 19 08:31:13 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Baldazo:1996:NT, author = "R. Baldazo", title = "{Navigator} turns 3.0", journal = j-BYTE, volume = "21", number = "8", pages = "42--??", month = aug, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7250N (Front end systems for online searching); C6130M (Multimedia); D2080 (Information services and database systems)", fjournal = "BYTE Magazine", keywords = "Java enhancements; multimedia computing; multimedia plug-ins; Navigator 3.0; Netscape; online front-ends; software reviews; Web browser", treatment = "P Practical; R Product Review", } @InProceedings{Baratloo:1996:CMW, author = "A. Baratloo and M. Karaul and Z. Kedem and P. Wyckoff", title = "{Charlotte}: metacomputing on the {Web}", crossref = "Yetongnon:1996:PII", volume = "1", pages = "2--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6150N (Distributed systems software); C6110P (Parallel programming); C6110B (Software engineering techniques); C6115 (Programming support)", conflocation = "Dijon, France; 25--27 Sept. 1996", conftitle = "Proceedings of 9th International Conference on Parallel and Distributed Computing Systems. PDCS '96", corpsource = "Dept. of Comput. Sci., New York Univ., NY, USA", keywords = "Charlotte; distributed memory systems; distributed shared memory; dynamic resources; fault masking; fault tolerant computing; hardware protection; Internet; Java; load balancing; machine; metacomputing resource; parallel; parallel programming; portability; program; programming environments; resource allocation; runtime system; security; shared memory systems; software; virtual; virtual machines; World-Wide Web", sponsororg = "ISCA; IEEE Comput. Soc.; IEEE Tech. Committee on Operating Syst.; et al", treatment = "P Practical; X Experimental", } @Article{Baron:1996:LNJ, author = "Chris Baron", title = "Lab Note: {Java} Programming with {Symantec Caf{\'e}}", journal = j-WEB-TECHNIQUES, volume = "6", number = "1", pages = "59--61", month = sep, year = "1996", CODEN = "WETEFA", ISSN = "1086-556X", bibdate = "Thu Sep 05 08:23:46 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Web Techniques", } @Book{Bartlett:1996:CEJ, author = "Neil Bartlett and Steve Simkin and Chris Stranc", title = "Cutting-Edge {Java} Game Programming: Everything You Need to Create Interactive {Internet} Games with {Java}", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "xx + 523", day = "1", month = nov, year = "1996", ISBN = "1-883577-98-5", ISBN-13 = "978-1-883577-98-8", LCCN = "QA76.76.C672B37 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1883577985/wholesaleproductA/; http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$39.99; CDN\$55.99", URL = "http://www.coriolis.com/site/msie/books/ind/jgdevw.htm", acknowledgement = ack-nhfb, dimensions = "9.26in x 7.40in x 1.16in", } @Article{Bath:1996:FMQ, author = "M. Bath", title = "Framing multimedia [{Quark Immedia}]", journal = j-PUBLISHING, volume = "????", number = "????", pages = "29--??", month = aug, year = "1996", CODEN = "PUBLFA", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D2105 (Media-TV, radio, press)", countrypub = "UK", fjournal = "Publishing", keywords = "authoring systems; authoring tools; CD-ROM; clickable button; computing; electronic publishing; fully-; interactive products; multimedia; multimedia authoring product; online publishing; page transformation; picture box; predrawn button; publishing; Quark Immedia; software reviews; static layouts", treatment = "P Practical; R Product Review", } @Article{Bath:1996:MWW, author = "M. Bath", title = "Multimedia web weaving [online publishing]", journal = j-PUBLISHING, volume = "????", number = "????", pages = "34--36", month = mar, year = "1996", CODEN = "PUBLFA", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D2020 (Design and graphics); D2080 (Information services and database systems)", countrypub = "UK", fjournal = "Publishing", keywords = "Applets; business graphics; computer graphics; cross-; domain; electronic publishing; enabling technologies; HTML; hyperlink language; interactive; Internet; Internet technologies; Java; Java programming language; Macromedia Shockwave; multimedia; multimedia systems; multimedia web weaving; online publishing; platform format; platform-independent technologies; programming language; programming languages; public; Virtual Machine; VRML; Web browsers", pubcountry = "UK", treatment = "P Practical", } @Article{Batt:1996:NBL, author = "Paul Batt", title = "{Das Netz beginnt zu leben --- Java und {VRML} erweitern das World Wide Web zu einem nutzbringenden Massenmedium}", journal = j-BULL-ASSOC-SUISE-ELECTRICIENS, volume = "87", number = "9", pages = "11--??", month = "????", year = "1996", CODEN = "BUSEAH", ISSN = "0004-587X", bibdate = "Fri May 24 09:04:14 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Bulletin de l'Association Suisse des Electriciens", } @Article{Batt:1996:NCL, author = "P. Batt", title = "The {Net} comes to life: {Java} and {VRML} extend the {World Wide Web} into an advantageous mass-media network", journal = j-BULL-SCHWEIZ-ELEKTROTECH, volume = "87", number = "9", pages = "11--16", day = "26", month = apr, year = "1996", CODEN = "BEVEDP", ISSN = "0036-1321", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210L (Computer communications); C5620W (Other computer networks); C6110J (Object-oriented programming); C6140D (High level languages); C6130M (Multimedia)", countrypub = "Switzerland", fjournal = "Bulletin des Schweizerischen Elektrotechnischen Vereins and des Verbandes Schweizerischer Elektrizitaetswerke", keywords = "dynamic shaping of communication; hypermedia; HyperText Markup Language; Internet; Java; mass-media network; object-oriented languages; object-oriented platform-independent programming language; reality; virtual; Virtual Reality Modelling Language; VRML; World Wide Web", language = "German", pubcountry = "Switzerland", treatment = "N New Development", } @Book{Baufeldt:1996:JPJ, author = "Kai Baufeldt and Rolf M{\"a}urers", title = "{Java, Professionelle Java-Applets f{\"u}r das Internet}", publisher = pub-DATA-BECKER, address = pub-DATA-BECKER:adr, pages = "????", year = "1996", ISBN = "3-8158-4886-3 (??Invalid checksum??)", ISBN-13 = "978-3-8158-4886-9 (??Invalid checksum??)", LCCN = "????", bibdate = "Mon May 11 09:41:33 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "20 DM", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.data-becker.de/", } @Article{Bear:1996:YOJ, author = "C. Bear", title = "Your own {Java} layout manager", journal = j-WEB-TECHNIQUES, volume = "1", number = "7", pages = "28--33", month = oct, year = "1996", CODEN = "WETEFA", ISSN = "1086-556X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6115 (Programming support); C6140D (High level languages); C6110J (Object-oriented programming); C6180 (User interfaces)", fjournal = "Web Techniques", keywords = "Abstract Window Toolkit; animation; authoring languages; buttons; interactive user; interfaces; Internet; Java applet; Java layout manager; object-oriented languages; programming environments; scrolling text; software tools; StackLayout; tables; text fields; user interfaces; Web page", treatment = "P Practical", } @TechReport{Beebe:1996:BPJd, author = "Nelson H. F. Beebe", title = "A Bibliography of Publications in {{\em Java Report: The Source for {Java} Development\/}}", institution = inst-CSC, address = inst-CSC:adr, pages = "5", day = "6", month = sep, year = "1996", bibdate = "Thu Sep 05 10:51:56 1996", bibsource = "http://www.math.utah.edu/pub/bibnet/authors/b/beebe-nelson-h-f.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "This report is updated frequently.", URL = "http://www.math.utah.edu/pub/tex/bib/index-table-j.html#javarep", } @InProceedings{Beguelin:1996:TMD, author = "A. Beguelin and V. Sunderam", title = "Tools for monitoring, debugging, and programming in {PVM}", crossref = "Bode:1996:PVM", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6115 (Programming support); C6110P (Parallel programming); C6150G (Diagnostic, testing, debugging and evaluating systems); C6140D (High level languages)", conflocation = "Munich, Germany; 7--9 Oct. 1996", conftitle = "Parallel Virtual Machine - EuroPVM '96. Third European PVM Conference. Proceedings", corpsource = "Carnegie Mellon Univ., Pittsburgh, PA, USA", countrypub = "Germany", keywords = "authoring languages; buffered tracing; data visualisation; debugging tools; graphical console; Java language; JavaPVM; JPVM; languages; object-oriented; ParaGraph visualization tool; parallel programming; Parallel Virtual Machine; PGPVM; PIOUS; program debugging; program monitoring tools; program tracing; programming; PVaniM; PVM; PVMRPC; remote procedure style; sampling; software; system monitoring; TCL; techniques; tkPVM; tools; virtual machines; XPVM", treatment = "P Practical", } @Article{Bennahum:1996:T, author = "David S. Bennahum", title = "Technology", journal = j-NEW-YORK, volume = "29", number = "1", pages = "18--??", month = jan, year = "1996", ISSN = "0028-7369", bibdate = "Fri Feb 23 08:05:11 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "The much-hyped Java might very well be the hot new Web programming language--but not just yet.", acknowledgement = ack-nhfb, fjournal = "New York", } @Book{Bennet:1996:ICI, author = "Gordon Bennet", title = "Intranets: Como implantar com sucesso na sua empresa", publisher = pub-EDITORE-CAMPUS, address = pub-EDITORE-CAMPUS:adr, pages = "380", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 12:44:14 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/portuguese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "R\$ 39,90", URL = "http://www.campus.com.br/about-us.htm; http://www.campus.com.br/catalogo/livro.cfm?cod_livro=20117", acknowledgement = ack-nhfb, language = "Portuguese", } @Book{Bercik:1996:IJ, author = "Bill Bercik and Jill Bond", title = "Inside {JavaScript}", publisher = pub-NRP, address = pub-NRP:adr, pages = "xxii + 661", day = "1", month = oct, year = "1996", ISBN = "1-56205-593-3", ISBN-13 = "978-1-56205-593-6", LCCN = "QA76.73.J38 B47 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1562055933/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$44.99", acknowledgement = ack-nhfb, dimensions = "9.41in x 7.72in x 2.52in", keywords = "Netscape (computer program)", lccnalt = "96-042687", } @Article{Berg:1996:HDI, author = "C. Berg", title = "How do {I} implement a drag-and-drop interface? [{Java}]", journal = j-DDJ, volume = "21", number = "12", pages = "110, 112, 116", month = dec, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6180G (Graphical user interfaces); C6150E (General utility programs); C6110J (Object-oriented programming)", fjournal = "Dr. Dobb's Journal of Software Tools", keywords = "Abstract; API; applet; application program interface; application program interfaces; component primitive objects; container primitive objects; drag-and-drop interfaces; file icons; graphical user interfaces; host-to-host file transfer; Java AWT; object-oriented languages; object-oriented programming; public domain software; Window Toolkit", treatment = "P Practical", } @Article{Berg:1996:HDT, author = "C. Berg", title = "How do threads work and how can {I} create a general-purpose event?", journal = j-DDJ, volume = "21", number = "11", pages = "111--115, 126--127", month = nov, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6140D (High level languages); C6150J (Operating systems); C6150N (Distributed systems software)", corpsource = "Digital Focus, USA", fjournal = "Dr. Dobb's Journal of Software Tools", keywords = "(computers); application; application program interfaces; applications; event; exception handling; general-purpose event; Internet; Java; Java thread mechanism; languages; lightweight processes; multiprocessor architecture; multithreading; object; object-oriented; object-oriented programming; operating systems; oriented language; programming interface; scheduling; synchronisation; synchronization; thread programming; threads; web", treatment = "P Practical", } @Article{Berg:1996:JQHa, author = "Cliff Berg and Steve Alexander", title = "{Java Q and A}: How Do {I} Display an Image?", journal = j-DDJ, volume = "21", number = "5", pages = "103, 117", month = may, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Mon Sep 2 09:09:39 MDT 1996", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Berg:1996:JQHb, author = "Cliff Berg", title = "{Java Q and A}: How Do {I} Write a Chat Program", journal = j-DDJ, volume = "21", number = "6", pages = "105--106", month = jun, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri May 03 08:24:24 1996", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Berg:1996:JQHc, author = "Cliff Berg", title = "{Java Q and A}: How Do {I} Send e-mail from a {Java} Applet?", journal = j-DDJ, volume = "21", number = "8", pages = "111--??", month = aug, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Aug 15 10:17:00 1996", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Berg:1996:JQHd, author = "Cliff Berg", title = "{Java Q and A}: How Do {I} Create a Layout Manager?", journal = j-DDJ, volume = "21", number = "9", pages = "101--??", month = sep, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Aug 15 10:17:01 1996", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "What do you do if the Java AWT's layout managers won't let you build the kind of UI you need? You write your own layout manager, of course, and Cliff shows you how.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Berg:1996:JQHe, author = "C. Berg", title = "{Java Q and A}: How do {I} display media formats that {Netscape} does not support?", journal = j-DDJ, volume = "21", number = "10", pages = "111, 114--115, 129", month = oct, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7210 (Information services and centres); C6110J (Object-oriented programming); C6130D (Document processing techniques); C6130M (Multimedia)", fjournal = "Dr. Dobb's Journal of Software Tools", keywords = "format conversion; GIF; HTML image; hypermedia; image formats; Internet; Java applet; JPEG; media format display; Netscape; object oriented language; object oriented programming; object-; object-oriented languages; oriented programming; page description languages; World Wide Web", treatment = "P Practical", } @Article{Berg:1996:JQHf, author = "Cliff Berg", title = "{Java Q and A}: How do Threads Work and How Can {I} Create a General-Purpose Event?", journal = j-DDJ, volume = "21", number = "11", pages = "111--??", day = "1", month = nov, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Oct 15 08:20:29 1996", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Berg:1996:JQHg, author = "Cliff Berg", title = "{Java Q and A}: How Do {I} Implement a Drag-and-Drop Interface?", journal = j-DDJ, volume = "21", number = "12", pages = "110--??", month = dec, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Mon Dec 2 07:52:21 MST 1996", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Cliff presents a technique for building a drag-and-drop interface using standard {AWT} components. In doing so, he builds an application that lets end users perform a host-to-host file transfer.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Bergin:1996:JBC, author = "Joseph Bergin", title = "{Java} as a better {C++}", journal = j-SIGPLAN, volume = "31", number = "11", pages = "21--27", month = nov, year = "1996", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:26 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C0220 (Computing education and training); C6110J (Object-oriented programming); C6140D (High level languages)", corpsource = "Pace Univ., New York, NY, USA", fjournal = "ACM SIGPLAN Notices", keywords = "C language; C++; computer science education; curriculum; educational courses; high-level constructs; industrial strength computing language; Internet appliance programming language; Java; low-level constructs; Microsystems; object oriented language; object-oriented languages; object-oriented programming; programming education; Sun; undergraduate", treatment = "P Practical", } @Article{Bergin:1996:OTC, author = "Joseph Bergin", title = "Object Technology in the Classroom: {Java} as a Better {C++}", journal = j-SIGPLAN, volume = "31", number = "11", pages = "21--27", month = nov, year = "1996", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Mon Nov 25 18:50:49 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Bic:1996:DCU, author = "Lubomir F. Bic and Munehiro Fukuda and Michael B. Dillencourt", title = "Distributed Computing Using Autonomous Objects", journal = j-COMPUTER, volume = "29", number = "8", pages = "55--61", month = aug, year = "1996", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Univ of California at Irvine", affiliationaddress = "Irvine, CA, USA", classcodes = "C6150N (Distributed systems software); C6110J (Object-oriented programming)", classification = "721.1; 722.3; 722.4; 723.1; 723.1.1; 723.5", corpsource = "California Univ., Irvine, CA, USA", fjournal = "Computer", journalabr = "Computer", keywords = "Algorithms; autonomous object based systems; Autonomous objects; Autonomous objects paradigm; autonomous objects paradigm; Binary predicate execution model; Browsers; C (programming language); communicating objects; Communicating objects paradigm; compilers; Computational methods; Computer programming languages; Computer simulation; Concurrency control; Distributed computer systems; Distributed computing; distributed systems; Dynamic composition; dynamic linking; Electronic mail; generic; Interactive distributed simulation; interpreters; Java; Medical applications; message passing; MESSENGERS; Mobile agents; navigation; Navigational autonomy; Object oriented programming; object oriented programming; object-oriented; object-oriented languages; paradigm; Parallel processing systems; program behavior; program compilers; Program interpreters; programming; Remote procedure calls; runtime; Wide area networks", treatment = "P Practical", } @Article{Bijl:1996:CSO, author = "D. Bijl", title = "Client\slash server, an overview", journal = j-INFORMATIE, volume = "38", number = "????", pages = "6--12", month = oct, year = "1996", CODEN = "INFTCR", ISSN = "0019-9907", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6150N (Distributed systems software); C6110J (Object-oriented programming); C6140D (High level languages); C7210 (Information services and centres)", countrypub = "Netherlands", fjournal = "Informatie", keywords = "architecture; C language; C++; client server systems; client-server systems; costs; distributed objects; evaluation; industry-wide systems; information technology; Internet; Java; languages; object-oriented; object-oriented programming; performance; scalability; small-scale; software; software performance; systems; worldwide systems", language = "Dutch", treatment = "P Practical", } @Book{Binas-Holz:1996:JP, author = "Antje Binas-Holz", title = "{Das {Java} Programmierbuch}", publisher = pub-SYBEX-VERLAG, address = pub-SYBEX-VERLAG:adr, pages = "840", year = "1996", ISBN = "3-8155-7225-8", ISBN-13 = "978-3-8155-7225-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.de/", note = "Includes CD-ROM.", price = "98 DM", URL = "http://www.abc.de/gutenb/verlage/sybex/sybex.htm", acknowledgement = ack-nhfb, language = "German", } @Book{Binas-Holz:1996:JR, author = "Antje Binas-Holz", title = "{Das {Java} Referenzbuch}", publisher = pub-SYBEX-VERLAG, address = pub-SYBEX-VERLAG:adr, pages = "????", month = oct, year = "1996", ISBN = "3-8155-5009-2", ISBN-13 = "978-3-8155-5009-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.de/", note = "Includes CD-ROM.", price = "69 DM", URL = "http://www.abc.de/gutenb/verlage/sybex/sybex.htm", acknowledgement = ack-nhfb, language = "German", } @Article{Binko:1996:JP, author = "Bill Binko", title = "{Java} and {Postgres95}", journal = j-LINUX-J, volume = "31", pages = "??--??", month = nov, year = "1996", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Fri Oct 9 08:35:26 MDT 1998", bibsource = "http://www.linuxjournal.com/issue31/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Article{Blaha:1996:OIC, author = "Stephen Blaha", title = "Object-oriented interprocess communication: Client\slash server development in {C++} and {Java}", journal = j-DDJ, volume = "21", number = "8", pages = "24--??, 26, 28, 30--31, 89--92", month = aug, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Stephen shows how to place IPC services in C++ wrappers. He then turns his attention to Java socket classes, which illustrate an alternative object-oriented interface.", acknowledgement = ack-nhfb, classcodes = "C6150N (Distributed systems software); C6110J (Object-oriented programming)", fjournal = "Dr. Dobb's Journal of Software Tools", keywords = "application program interfaces; C++ classes; client-server systems; client/server development; communication; complex parameter lists; encapsulation; functions; inline member functions; IPC; Java socket classes; library functions; microcomputer applications; multitasking operating systems; object-; object-oriented interprocess; object-oriented programming; oriented interface; portability; semaphores; shared memory; shift operators; software; software libraries; terminal screen read/write operations; UNIX SVID standards; wrapped; wrappers", treatment = "P Practical", } @Book{Bloomberg:1996:WPS, author = "Jason Bloomberg and Jeff Kawski and Paul Treffers", title = "{Web} Page Scripting Techniques", publisher = pub-HAYDEN, address = pub-HAYDEN:adr, pages = "xviii + 510", year = "1996", ISBN = "1-56830-307-6", ISBN-13 = "978-1-56830-307-9", LCCN = "QA76.625.B556 1996", bibdate = "Thu Aug 14 11:41:21 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses JavaScript, VBScript, and advanced HTML scripting techniques.", price = "US\$50.00, CDN\$70.95, UK\pounds 46.95", URL = "http://www.mcp.com/hayden; http://www.mcp.com/hayden/internet/scripting/index.html", acknowledgement = ack-nhfb, } @Article{Booch:1996:ODJ, author = "G. Booch", title = "Object-oriented development with {Java}", journal = j-REP-OBJECT-ANA-DESIGN, volume = "2", number = "6", pages = "2--4", month = mar # "-" # apr, year = "1996", ISSN = "1075-2528", ISSN-L = "1075-2528", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Rational Software Corp., Santa Clara, CA, USA", classcodes = "C6140D (High level languages); C6110J (Object-oriented programming); C6110F (Formal methods); C7210 (Information services and centres)", corpsource = "Rational Software Corp., Santa Clara, CA, USA", fjournal = "Report on Object Analysis and Design", keywords = "application; Booch; description languages; development; end users; HTML; hypermedia; Hypertext Markup Language; Internet; Java; method; object oriented language; object oriented method; object-; object-oriented languages; object-oriented programming; oriented methods; page; World Wide Web pages", treatment = "P Practical", } @Article{Booker:1996:JJD, author = "Ellis Booker", title = "{Java} Juices Up {D\&B Software}'s Corporate {Web} Tools", journal = j-WEB-WEEK, volume = "2", number = "7", pages = "4--4", month = jun, year = "1996", CODEN = "WEWEFP", bibdate = "Mon Jun 17 15:57:43 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.webweek.com/", acknowledgement = ack-nhfb, fjournal = "Web Week", } @Book{Boone:1996:JEC, author = "Barry Boone", title = "{Java} Essentials for {C} and {C++} Programmers", publisher = pub-AWDP, address = pub-AWDP:adr, pages = "xxi + 311", day = "1", month = may, year = "1996", ISBN = "0-201-47946-X", ISBN-13 = "978-0-201-47946-1", LCCN = "QA76.64 .B675 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=020147946X/wholesaleproductA/; http://www.aw.com/devpress/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$19.95", URL = "http://cseng.aw.com/bookdetail.qry?ISBN=0-201-47946-X&ptype=0; http://www.aw.com/devpress/titles/47946.html", acknowledgement = ack-nhfb, dimensions = "9.09in x 7.36in x 0.87in", keywords = "Java (Computer program language); Object-oriented programming (Computer science)", paperback = "yes", } @Book{Boone:1996:LJM, author = "Barry Boone and Dave Mark", title = "Learn {Java} on the {Macintosh}", publisher = pub-AWDP, address = pub-AWDP:adr, pages = "x + 475", year = "1996", ISBN = "0-201-19157-1", ISBN-13 = "978-0-201-19157-8", LCCN = "QA76.8.M3B663 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0201191571/wholesaleproductA/; http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$34.95", URL = "http://www.aw.com/", acknowledgement = ack-nhfb, annote = "System requirements for accompanying computer disc: A Macintosh computer with a Motorola MC68020 processor or higher, or a PowerPC 601 processor or higher, 8 MB of RAM, System 7.1 or later, and a CD-ROM drive. For optimum performance, a Macintosh equipped with an MC68040 or PowerPC processor with 16 MB of RAM is recommended.", deweyno = "005.13/3", dimensions = "9.12in x 7.40in x 1.23in", keywords = "Java (Computer program language); Macintosh (Computer) -- Programming", } @Article{Borchers:1996:LRG, author = "J. Borchers and O. Deussen and A. Klingert and C. Knorzer", title = "Layout rules for graphical {Web} documents", journal = j-COMPUTERS-AND-GRAPHICS, volume = "20", number = "3", pages = "415--426", month = may # "-" # jun, year = "1996", CODEN = "COGRD2", ISSN = "0097-8493", ISSN-L = "0097-8493", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6130D (Document processing techniques); C6130B (Graphics techniques); C7210 (Information services and centres); C6130M (Multimedia); C6180 (User interfaces)", corpsource = "Inst. of Comput. Sci., Linz Univ., Austria", countrypub = "UK", fjournal = "Computers and Graphics", keywords = "2D Web documents; 3D Web documents; architecture; authoring systems; computer graphics; document design; document handling; documents; dynamic Web documents; Gestalt psychology; graphical Web documents; human-computer interaction; hypermedia; hypertext authoring; information networks; information provider; layout rules; psychology; static Web documents; textual Web; typography; user-friendly information presentation; World Wide Web", treatment = "P Practical", } @Article{Boreham:1996:JNC, author = "B. Boreham", title = "{Java}: the new {C++}", journal = j-OBJECT-EXPERT, volume = "1", number = "4", pages = "58, 60--61", month = may # "-" # jun, year = "1996", CODEN = "OBEXFJ", ISSN = "1360-3426", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Credit Suisse Financial Products, Switzerland", classcodes = "C6140D (High level languages); C6110J (Object-oriented programming)", corpsource = "Credit Suisse Financial Products, Switzerland", countrypub = "UK", fjournal = "Object Expert", keywords = "C language; C++; garbage collection; Internet; Java; keywords; object oriented programming language; object-; object-oriented languages; oriented programming; pointers; storage management; syntax; threads", pubcountry = "UK", treatment = "P Practical", } @TechReport{Bothner:1996:KSI, author = "Per Bothner and R. Alexander Milowsk", title = "The {Kawa Scheme} interpreter project", type = "Web page", institution = "Winternet Corporation", address = "12 S 6th Street, Suite M110, Minneapolis, MN 55402-1507, USA", pages = "????", year = "1996", bibdate = "Mon Mar 10 22:44:36 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Implements a compiler of Scheme into Java.", URL = "http://www.winternet.com/~sgml/kawa (no longer accessible)", } @Article{Bothun:1996:NPU, author = "G. D. Bothun and S. D. Kevan", title = "Networked physics in undergraduate instruction", journal = j-COMP-PHYSICS, volume = "10", number = "4", pages = "318--324", month = jul # "-" # aug, year = "1996", CODEN = "CPHYE2", ISSN = "0894-1866", ISSN-L = "0894-1866", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7810C (Computer-aided instruction); C7320 (Physics and chemistry computing); C7350 (Astronomy and astrophysics computing); C6130M (Multimedia); C7210 (Information services and centres); C6130D (Document processing techniques); C6130B (Graphics techniques)", corpsource = "Dept. of Phys., Oregon Univ., Eugene, OR, USA", fjournal = "Computers in Physics", keywords = "astronomy computing; beginning Astronomy; browsers; computer animation; course; courseware; curriculum; data; digital simulation; educational courses; electronic curriculum tools; equipment failure; Foundations of Physics; graphs; hypermedia; hypertext; information networks; Introductory Energy; lecture material; linked images; multimedia computing; Netscape; networked physics; Physics; physics computing; physics courses; preparation time; scientific; scientific animation; structured multimedia presentation; teaching; undergraduate; undergraduate astronomy courses; undergraduate instruction; University of Oregon; visualisation; visualization; World Wide Web", treatment = "P Practical", } @Book{Bouchard:1996:JOP, author = "Oliver Bouchard", title = "{Java: objektorientiertes Programmieren f{\"u}r das WWW}", publisher = "Beck/DTV", address = "????", pages = "????", year = "1996", ISBN = "3-423-50185-5", ISBN-13 = "978-3-423-50185-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "20 DM", acknowledgement = ack-nhfb, language = "German", } @Article{Bournellis:1996:SJP, author = "Cynthia Bournellis", title = "{Sun}'s {Java} Platform Gains In Reaching Bigger Audience", journal = j-ENEWS, volume = "42", number = "2146", pages = "6--6", day = "9", month = dec, year = "1996", CODEN = "ELNEAU", ISSN = "0013-4937, 1061-6624", bibdate = "Thu Dec 19 09:24:24 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Electronic News", } @Book{Bowman:1996:IBO, author = "Charles F. Bowman", title = "Implementing Business Objects with {Java}", publisher = pub-SIGS, address = pub-SIGS:adr, pages = "50", year = "1996", ISBN = "1-884842-56-9", ISBN-13 = "978-1-884842-56-6", LCCN = "QA76.9.O35A45 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sigs.com/books/", price = "US\$85.00", URL = "http://www.sigs.com/books/wp_impjava.html", acknowledgement = ack-nhfb, xxtitle = "Implementing Business Objects using {Java}", } @Article{Bowman:1996:XBF, author = "Charles F. Bowman", title = "{X}: Back to the Future: An Interview with {Robert Scheifler}", journal = j-X-J, volume = "5", number = "5", pages = "38--43", month = may, year = "1996", CODEN = "XJOUEA", ISSN = "1056-7003", bibdate = "Tue May 07 06:57:46 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses relationship of {Broadway} to {Java}.", acknowledgement = ack-nhfb, fjournal = "The X Journal", } @Article{Bramley:1996:TNR, author = "Randall Bramley", title = "Technical News \& Reviews: {Maple V Release 4}; {Mathematica 3.0} from {Wolfram}; {HotGAMS} from {NIST}; {Informant} scans {Web} and e-mails you; More on the Web\ldots{}", journal = j-IEEE-COMPUT-SCI-ENG, volume = "3", number = "3", pages = "80--80", month = "Fall", year = "1996", CODEN = "ISCEE4", ISSN = "1070-9924", ISSN-L = "1070-9924", bibdate = "Fri Mar 14 11:42:07 1997", bibsource = "http://www.computer.org/cse/cs1998; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses a Java-based front end for the Guide to Available Mathematical Software, with a pointer to URL \path=http://math.nist.gov/HotGAMS/=.", fjournal = "IEEE Computational Science \& Engineering", } @Book{Breedlove:1996:WPU, author = "Bob Breedlove", title = "{Web} Programming Unleashed: {Java}, {HTML}, {CGI}, {PERL}, {Visual J++}, {JavaScript}, {VBScript}, {ActiveX}", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxvii + 1010", year = "1996", ISBN = "1-57521-117-3 (softcover)", ISBN-13 = "978-1-57521-117-6 (softcover)", LCCN = "QA76.625.B74 1996", bibdate = "Sat Sep 13 14:36:20 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$44.99", } @Article{Briere:1996:SJE, author = "Daniel Briere and Christine Heckart", title = "{Sun}'s {Java} effort shines on {BT\slash MCI}", journal = j-NETWORK-WORLD, volume = "13", number = "51", pages = "22--22", day = "16", month = dec, year = "1996", ISSN = "0887-7661", ISSN-L = "0887-7661", bibdate = "Tue Dec 24 14:34:51 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Brown:1996:DAO, author = "Marc H. Brown and Marc A. Najork", title = "Distributed Active Objects", journal = j-COMP-NET-ISDN, volume = "28", number = "7--11", pages = "1037--1052", day = "1", month = may, year = "1996", CODEN = "CNISE9", ISSN = "0169-7552", ISSN-L = "0169-7552", bibdate = "Sat Sep 25 15:30:03 1999", bibsource = "ftp://ftp.ira.uka.de/pub/bibliography/Misc/Ciancarini.bib; http://www.elsevier.com/cgi-bin/cas/tree/store/cna/cas_free/browse/browse.cgi?year=1996&volume=28&issue=7-11; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.elsevier.com/cgi-bin/cas/tree/store/comnet/cas_sub/browse/browse.cgi?year=1996&volume=28&issue=7-11&aid=1586", acknowledgement = ack-nhfb, annote = "Proc. 5th Int. WWW Conference, Paris", classcodes = "C6150N (Distributed systems software); C6110J (Object-oriented programming); C6140D (High level languages); C6130G (Groupware); C7250N (Front end systems for online searching)", conflocation = "Paris, France; 6--10 May 1996", conftitle = "Fifth International World Wide Web Conference", corpsource = "DEC Syst. Res. Center, Palo Alto, CA, USA", countrypub = "Netherlands", fjournal = "Computer Networks and ISDN Systems", keyword = "Obliq, coordination application, WWW", keywords = "applications; authoring languages; collaborative; CSCW; distributed active objects; distributed algorithms; distributed applications; distributed computation; groupware; high-level support; Java; mobile code; object-oriented programming; object-oriented scripting language; Oblets; Obliq applets; online front-ends; World Wide Web browsers; {Internet}", treatment = "P Practical", } @Book{Brown:1996:WRL, author = "Mark R. Brown", title = "{Webmaster} Resource Library: Three Best-Selling Comprehensive References: Special Editions of Using {HTML}, Using {Java}, and Using {CGI}", publisher = pub-QUE, address = pub-QUE:adr, month = may, year = "1996", ISBN = "0-7897-0872-8", ISBN-13 = "978-0-7897-0872-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$150", acknowledgement = ack-nhfb, xxnote = "Duplicate ISBN with \cite{Schafer:1996:WRL}.", } @Article{Bruce:1996:PPL, author = "K. B. Bruce", title = "Progress in programming languages", journal = j-COMP-SURV, volume = "28", number = "1", pages = "245--247", month = mar, year = "1996", CODEN = "CMSVAN", ISSN = "0360-0300 (print), 1557-7341 (electronic)", ISSN-L = "0360-0300", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110 (Systems analysis and programming); C0310F (Software development management)", conflocation = "USA; 1996", conftitle = "ACM 50th Anniversary Symposium: Perspectives in Computer Science", corpsource = "Williams Coll., Williamstown, MA, USA", fjournal = "ACM Computing Surveys", keywords = "conceptual models; high level languages; imperative programming; Java; object; oriented languages; platform independent support; programming; programming languages; reuse; rigid type systems; technological forecasting; web browsers", treatment = "P Practical", } @Article{Buchheit:1996:FFA, author = "Paul Buchheit", title = "Flicker-free Animation Using {Java}", journal = j-LINUX-J, volume = "30", pages = "??--??", month = oct, year = "1996", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Fri Oct 9 08:35:26 MDT 1998", bibsource = "http://www.linuxjournal.com/issue30/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.linuxjournal.com/issue30/flicker.html", abstract = "Currently the most popular use of Java seems to be in building applets. This article shows you not only how to make an applet, but how to make it look good.", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Article{Bucholtz:1996:SRS, author = "Chris Bucholtz", title = "Software's rising Stars", journal = j-TELEPHONY, volume = "231", number = "8", pages = "50, 52", day = "19", month = aug, year = "1996", CODEN = "TLPNAS", ISSN = "0040-2656", ISSN-L = "0040-2656", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Traditional networking software just won't cut it anymore. Sun Microsystems and Lucent Technologies are going head to head to prove that their respective Java and Inferno software products will make carriers stand out in the crowded marketplace.", acknowledgement = ack-nhfb, classcodes = "B6210C (Network management); C7410F (Communications computing); C6150N (Distributed systems software)", fjournal = "Telephony", keywords = "distributed processing; Lucent; network management; networking software; object-based programming language; object-oriented languages; packages; software; software suite; Sun Microsystems' Java; Technologies' Inferno; telecommunication; telecommunication computing", treatment = "G General Review", } @Book{Buhrmann:1996:JII, author = "Peter Buhrmann and Thomas Kretzberg", title = "{Java: Interaktiv im World Wide Web}", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "96", year = "1996", ISBN = "3-8273-1151-9", ISBN-13 = "978-3-8273-1151-1", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.addison-wesley.de/katalog; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "79.90 DM", URL = "http://www.addison-wesley.de/katalog/item.ppml?textexpr=Java&id=00090", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.addison-wesley.de/", } @Article{Burden:1996:FLJ, author = "Kevin Burden", title = "Firing Line: {Java} needs time to mature", journal = j-COMPUTERWORLD, volume = "30", number = "13", pages = "98--98", day = "25", month = mar, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Apr 01 15:58:32 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Burgess:1996:BJA, author = "Jay Burgess", title = "The basics of {Java} Animation", publisher = pub-SIGS, address = pub-SIGS:adr, pages = "39", year = "1996", ISBN = "1-884842-64-X", ISBN-13 = "978-1-884842-64-1", LCCN = "QA76.73.J38B87 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sigs.com/books/", price = "US\$85.00", URL = "http://www.sigs.com/books/wp_animation.html", acknowledgement = ack-nhfb, } @Book{Cagle:1996:BWA, author = "Kurt Cagle", title = "Building {Web} Applications With {Netscape} Navigator 2.1 and {JavaScript}", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "656", year = "1996", ISBN = "0-7645-8008-6", ISBN-13 = "978-0-7645-8008-6", LCCN = "????", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0764580086/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$44.99", acknowledgement = ack-nhfb, keywords = "Java (computer program language); Netscape (computer; program); technology -- computers and computer technology; World Wide Web (information retrieval system)", } @Book{Campione:1996:JTO, author = "Mary Campione and Kathy Walrath", title = "The {Java} Tutorial: {Object-Oriented} Programming for the {Internet (Java Series)}", publisher = pub-AW, address = pub-AW:adr, pages = "xvii + 831", year = "1996", ISBN = "0-201-63454-6", ISBN-13 = "978-0-201-63454-9", LCCN = "QA76.64.C35 1996", bibdate = "Tue May 04 12:54:40 1999", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0201634546/wholesaleproductA/; http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Also available in German translation \cite{Campione:1997:JTO}. See review in \cite{Garfinkel:1996:JW}.", price = "US\$39.76", series = "The Java Series", URL = "http://www.aw.com/cp/javaseries.html; http://www.aw.com/cseng/titles/0-201-63454-6", acknowledgement = ack-nhfb, annote = "System requirements for accompanying computer disk: Solaria 2.3, 2.4, or 2.5 running on SPARC; Microsoft Windows NT/95 running on Intel (or compatible) x86; Macintosh System 7.5 on PowerPC or Motorola 68030 (or better); Java development tools.", dimensions = "9.23in x 7.46in x 1.37in", keywords = "Internet (Computer network); Java (Computer program language); Object-oriented programming (Computer science)", paperback = "yes", xxtitle = "The {Java} Language Tutorial: Object-Oriented Programming for the Internet", } @Article{Canon:1996:JJ, author = "Maggie Canon", title = "The {Java} jackpot", journal = j-MACUSER, volume = "12", number = "3", pages = "21--??", year = "1996", CODEN = "MCUSEY", ISSN = "0884-0997", bibdate = "Fri Feb 23 08:05:11 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "MacUser", } @Article{Cargill:1996:OJC, author = "Tom Cargill", title = "An Overview of {Java} for {C++} Programmers", journal = j-C-PLUS-PLUS-REPORT, volume = "8", number = "2", pages = "46--49", month = feb, year = "1996", CODEN = "CRPTE7", ISSN = "1040-6042", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming)", fjournal = "C++ Report", keywords = "C language; C++; design philosophy; Internet; Java; object; object oriented language; object-oriented; object-oriented languages; oriented programming; programming; Sun Microsystems; World Wide Web browser", treatment = "P Practical", } @Article{Carl:1996:JFR, author = "Jeremy Carl", title = "{Java} Fever Rising", journal = j-WEB-WEEK, volume = "2", number = "7", pages = "1, 58", month = jun, year = "1996", CODEN = "WEWEFP", bibdate = "Mon Jun 17 15:55:50 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.webweek.com/", acknowledgement = ack-nhfb, fjournal = "Web Week", } @MastersThesis{Carpenter:1996:JAS, author = "Joseph S. Carpenter", title = "{Java}, Applets, and {Sun}: the main course of business strategy for the information age", type = "Senior Thesis", school = "Department of Economics, Colorado College", address = "Colorado Springs, CO, USA", pages = "140", year = "1996", bibdate = "Wed Oct 2 18:55:05 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Carr:1996:JVC, author = "David F. Carr", title = "{Java}'s Virtues as Corporate Tool Are Laid Out", journal = j-WEB-WEEK, volume = "2", number = "7", pages = "25--26", month = jun, year = "1996", CODEN = "WEWEFP", bibdate = "Mon Jun 17 15:59:18 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.webweek.com/", acknowledgement = ack-nhfb, fjournal = "Web Week", } @Article{Carroll:1996:DPJ, author = "E. Carroll and A. Wilson", title = "Database programming with {JDBC}", journal = j-WEB-TECHNIQUES, volume = "1", number = "7", pages = "45--46, 48--50", month = oct, year = "1996", CODEN = "WETEFA", ISSN = "1086-556X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming); C6160 (Database management systems (DBMS)); C6110B (Software engineering techniques)", fjournal = "Web Techniques", keywords = "ANSI SQL-2 entry level compliant; API; Application Programming Interface; database access; database connectivity; database management systems; database programming; Java application developers; Java code; Java language; JavaSoft; JDBC; object-oriented languages; object-oriented programming; ODBC like interface; Open Database Connectivity; portability; portable software; programming model; query languages; software; SQL syntax; standard JDBC syntax; Structured Query Language", treatment = "P Practical", } @Article{Casatelli:1996:JMS, author = "Christine Casatelli", title = "{Java} Management Spec Gets Backing", journal = j-RS-MAGAZINE, volume = "5", number = "6", pages = "10--10", month = jun, year = "1996", ISSN = "1088-0844, 1061-0030", bibdate = "Fri Jun 14 06:32:50 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "RS\slash Magazine", } @Article{Casatelli:1996:VTP, author = "Christine Casatelli", title = "{VisualAge} Technology Planned for {Java}", journal = j-WEBSERVER, volume = "1", number = "3", pages = "10--10", month = sep # "\slash " # oct, year = "1996", ISSN = "1087-4232", bibdate = "Tue Dec 03 07:43:26 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses IBM's VisualAge Java development tools.", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Celko:1996:SOJ, author = "J. Celko", title = "Soothsayers for {Oracle} [{Java} and {Oracle} tuning]", journal = j-DBMS, volume = "9", number = "8", pages = "20, 22, 24, 26", month = jul, year = "1996", CODEN = "DBMSEO", ISSN = "1041-5173", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6160D (Relational databases); C6140D (High level languages); C6150G (Diagnostic, testing, debugging and evaluating systems); C6110J (Object-oriented programming); C5620W (Other computer networks)", fjournal = "DBMS", keywords = "byte codes; Internet; Java; Java byte code file; Java machine; machine; object oriented language; object-oriented languages; Oracle; Oracle tuning; Oracle tuning products; program diagnostics; programming; programming puzzle; query languages; relational databases; virtual stack; work", treatment = "P Practical", } @Article{Celko:1996:SS, author = "Joe Celko", title = "{SQL} for Smarties", journal = j-DBMS, volume = "9", number = "8", pages = "20--??", day = "1", month = jul, year = "1996", CODEN = "DBMSEO", ISSN = "1041-5173", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Oracle tuning products, Java, and a new SQL puzzle.", acknowledgement = ack-nhfb, fjournal = "DBMS", } @Article{Chabrow:1996:WSD, author = "E. R. Chabrow", title = "{Wall Street} on the desktop [online brokerage on the {World Wide Web}]", journal = j-INFORMATION-WEEK, volume = "????", number = "570", pages = "61, 64, 66", day = "11", month = mar, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D2050F (Financial markets); D2080 (Information services and database systems)", fjournal = "Information Week", issue = "no.570 p. 61, 64, 66", keywords = "2.0 Web browser; delayed stock quotes; desktop; equities; finance; historic stock; home page; Internet; Internet technology; Internet trading; investment; investors; Java; Java multiplatform programming language; Lombard Institutional Brokerage; Netscape Communications Corp. Navigator; online brokerage; Pawws Financial Network; prices; security; stock market; stock markets; Sun Microsystems Inc. SparcStation 5; systems consultant; traders; Wall Street; workstation; World Wide Web", treatment = "P Practical", } @Book{Chan:1996:JCL, author = "Patrick Chan", title = "{Java} Class Libraries", publisher = pub-AW-LONGMAN, address = pub-AW-LONGMAN:adr, pages = "????", month = sep, year = "1996", ISBN = "0-614-20264-7", ISBN-13 = "978-0-614-20264-9", LCCN = "????", bibdate = "Tue May 04 12:55:40 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "See review in \cite{Garfinkel:1996:JW}.", price = "US\$48.37", acknowledgement = ack-nhfb, keywords = "Java (computer program language)", } @InProceedings{Chandy:1996:WDS, author = "K. M. Chandy and A. Rifkin and P. A. G. Sivilotti and J. Mandelson and M. Richardson and W. Tanaka and L. Weisman", title = "A world-wide distributed system using {Java} and the {Internet}", crossref = "IEEE:1996:PFIa", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C5620W (Other computer networks); C6130G (Groupware); C6140D (High level languages); C6110J (Object-oriented programming)", conflocation = "Syracuse, NY, USA; 6--9 Aug. 1996", conftitle = "Proceedings of 5th IEEE International Symposium on High Performance Distributed Computing", corpsource = "Dept. of Comput. Sci., California Inst. of Technol., Pasadena, CA, USA", keywords = "communication; components; distributed processing; groupware; Internet; Java; languages; mechanisms; messaging; object request brokers; object-oriented; object-oriented language; peer-to-peer; remote procedure invocation; software; software layer; specification; threads; world-wide distributed system", sponsororg = "IEEE Comput. Soc. Tech. Committee on Distributed Process.; Northeast Parallel Architectures Center; New York State Center for Adv. Technol. Comput. Applications and Software Eng. (CASE Center) at Syracuse Univ.; Rome Lab", treatment = "A Application; P Practical", } @Book{Chapman:1996:JAA, author = "Randy Chapman", title = "{Java} applet, awt and util class reference", publisher = pub-SSC, address = pub-SSC:adr, pages = "20", year = "1996", ISBN = "0-916151-96-4", ISBN-13 = "978-0-916151-96-6", LCCN = "????", bibdate = "Sat Aug 17 16:45:43 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$7.00", URL = "http://www.clbooks.com/sqlnut/SP/search/gtsumt?isbn=0916151964", acknowledgement = ack-nhfb, keywords = "Java (Computer program language)", xxnote = "Duplicate ISBN with \cite{Chapman:19xx:JRCb}.", } @Book{Chapman:1996:JRCa, author = "Randy Chapman", title = "{Java} Reference Card (Language, {IO}, Net)", publisher = pub-SSC, address = pub-SSC:adr, pages = "????", month = dec, year = "1996", ISBN = "0-916151-94-8 (softcover)", ISBN-13 = "978-0-916151-94-2 (softcover)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ssc.com/", price = "US\$3.50", acknowledgement = ack-nhfb, xxtitle = "{Java} Lang, {IO} and Net Class Reference", } @Book{Chapman:1996:JRCb, author = "Randy Chapman", title = "{Java} Reference Cards (2-Card Set)", publisher = pub-SSC, address = pub-SSC:adr, year = "1996", ISBN = "0-916151-96-4", ISBN-13 = "978-0-916151-96-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ssc.com/", price = "US\$7", acknowledgement = ack-nhfb, xxnote = "Duplicate ISBN with \cite{Chapman:1996:JAA}.", } @InProceedings{Chen:1996:WVT, author = "Jiann-Liang Chen", title = "{WWW} and {VR} technologies for network management applications", crossref = "IEEE:1996:IIJ", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C5690 (Other data communication equipment and techniques); C5620W (Other computer networks); C6180G (Graphical user interfaces); C5640 (Protocols); C6130B (Graphics techniques)", conflocation = "Rockville, MD, USA; 4--5 Nov. 1996", conftitle = "Proceedings IEEE International Joint Symposia on Intelligence and Systems", corpsource = "Dept. of Comput. Sci. and Eng., Tatung Inst. of Technol., Taipei, Taiwan", keywords = "access protocols; computer network management; graphical; interface; Internet; Java language; man-machine interface; manager-agent architecture; simple network management protocol; SNMP; user; user interfaces; virtual reality; WWW", sponsororg = "IEEE Comput. Soc.; IEEE Tech. Committee on Pattern Anal. and Machine Intelligence (PAMI); IEEE Comput. Soc. TAI; AAAI Soc.; AAAI Soc.; AAAS Soc.; NN Soc.; Birmingham Univ.-CIS Center", treatment = "P Practical", } @Article{Christeson:1996:FGJ, author = "Brian Christeson and John D. Mitchell", title = "That First Gulp of {Java}", journal = j-LINUX-J, volume = "30", pages = "??--??", month = oct, year = "1996", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Fri Oct 9 08:35:26 MDT 1998", bibsource = "http://www.linuxjournal.com/issue30/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.linuxjournal.com/issue30/gulpjava.html", abstract = "A relatively new technology, Java has experienced phenomenal growth. Why? Read on.", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @InProceedings{Chute:1996:MIR, author = "C. G. Chute and D. L. Crowson and J. D. Buntrock", title = "Medical information retrieval and {WWW} browsers at {Mayo}", crossref = "Waegemann:1996:PTE", pages = "243--247", year = "1996", bibdate = "Sat Oct 12 16:26:29 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7140 (Medical administration); C6130M (Multimedia); C7210 (Information services and centres); C7250R (Information retrieval techniques); C6130S (Data security)", conflocation = "San Diego, CA, USA; 13--18 May 1996", conftitle = "Proceedings of Toward An Electronic Patient Record '96", corpsource = "Mayo Clinic, Rochester, MN, USA", keywords = "authentication; confidentiality; data; data transmission security; distributed client server access; entries; generic client; historical care retrieval; hypermedia; information networks; information retrieval; Java; JavaScript; medical information retrieval; medical information systems; OMaster SheetO; patient information; privacy; records management; research retrieval; security of; user; WWW browsers; WWW interfaces", treatment = "P Practical", } @InProceedings{Ciancarini:1996:CTW, author = "P. Ciancarini and D. Rossi and F. Vitali and A. Knoche and R. Tolksdorf", title = "Coordination technology for the {WWW}", crossref = "IEEE:1996:PWE", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6130G (Groupware); C6150N (Distributed systems software); C7210 (Information services and centres); C5620W (Other computer networks); C6110B (Software engineering techniques); C6140D (High level languages)", conflocation = "Stanford, CA, USA; 19--21 June 1996", conftitle = "Proceedings of WET ICE '96. IEEE 5th Workshop on Enabling Technologies; Infrastucture for Collaborative Enterprises", corpsource = "Dept. of Comput. Sci., Bologna Univ., Italy", keywords = "application development; coordination capabilities; distributed multiuser; engineering; enhanced middleware support; groupware; high level languages; high-level; Internet; Internet languages; Java; PageSpace architecture; software; World Wide Web; WWW middleware", sponsororg = "IEEE Comput. Soc.; Concurrent Eng. Res. Center, West Virginia Univ.; IEEE Commun. Soc.; ACM SIGOIS", treatment = "P Practical", } @Article{Ciancarini:1996:PAC, author = "Paolo Ciancarini and Andreas Knoche and Robert Tolksdorf and Fabio Vitali", title = "{PageSpace}: an architecture to coordinate distributed applications on the {Web}", journal = j-COMP-NET-ISDN, volume = "28", number = "7--11", pages = "941--952", day = "1", month = may, year = "1996", CODEN = "CNISE9", ISSN = "0169-7552", ISSN-L = "0169-7552", bibdate = "Sat Sep 25 15:30:03 1999", bibsource = "ftp://ftp.ira.uka.de/pub/bibliography/Misc/Ciancarini.bib; http://www.elsevier.com/cgi-bin/cas/tree/store/cna/cas_free/browse/browse.cgi?year=1996&volume=28&issue=7-11; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.elsevier.com/cgi-bin/cas/tree/store/comnet/cas_sub/browse/browse.cgi?year=1996&volume=28&issue=7-11&aid=1598", acknowledgement = ack-nhfb, annote = "Proc. 5th Int. WWW Conference, Paris", classcodes = "C6150N (Distributed systems software); C5620W (Other computer networks); C6140D (High level languages); C6110J (Object-oriented programming); C7210 (Information services and centres)", conflocation = "Paris, France; 6--10 May 1996", conftitle = "Fifth International World Wide Web Conference", corpsource = "Dept. of Comput. Sci., Bologna Univ., Italy", countrypub = "Netherlands", fjournal = "Computer Networks and ISDN Systems", keyword = "coordination application, WWW, PageSpace, Java, mine", keywords = "agent classes; Alpha agents; applets; coordination; coordination platforms; coordination technology; Delta agents; distributed agents; distributed application; distributed system; home agent; Java; languages; Linda like coordination technology; Linda like primitives; network operating systems; object-oriented; open distributed application; PageSpace architecture; server bound structure; server machines; truly open; user interfaces; Web browsers; World Wide Web; {Internet}", treatment = "P Practical", } @Article{Cilibrasi:1996:WJR, author = "Rudi Cilibrasi", title = "What is {Java}, Really?", journal = j-LINUX-J, volume = "30", pages = "??--??", month = oct, year = "1996", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Fri Oct 9 08:35:26 MDT 1998", bibsource = "http://www.linuxjournal.com/issue30/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.linuxjournal.com/issue30/whatjava.html", abstract = "Let's Skip the hype. This article explains what Java is and points you to the right places if you want to dive in.", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Article{Cleaveland:1996:LEW, author = "Craig Cleaveland and Ted Lewis", title = "Letters to the Editor: What's Wrong with the Binary Critic?", journal = j-COMPUTER, volume = "29", number = "8", pages = "10--11", month = aug, year = "1996", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Sat Aug 17 09:37:54 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Debate on the merits of the {Java} programming language.", acknowledgement = ack-nhfb, fjournal = "Computer", } @Book{Coffee:1996:HPJa, author = "Peter Coffee", title = "How to Program {Java}", publisher = pub-MACMILLAN-COMPUTER, address = pub-MACMILLAN-COMPUTER:adr, pages = "????", month = oct, year = "1996", ISBN = "0-614-20297-3", ISBN-13 = "978-0-614-20297-7", LCCN = "????", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99", acknowledgement = ack-nhfb, keywords = "Java (computer program language)", } @Book{Cohen:1996:CPJ, author = "Isaac Cohen", title = "{CGI\slash Perl} et {JavaScript}: creation de pages {HTML} interactives", publisher = pub-EYROLLES, address = pub-EYROLLES:adr, pages = "vii + 294", year = "1996", ISBN = "2-212-08918-X", ISBN-13 = "978-2-212-08918-9", LCCN = "????", bibdate = "Thu Aug 14 18:51:01 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes floppy disk.", price = "185 FF", URL = "http://www.estp.fr/eyrolles", acknowledgement = ack-nhfb, language = "French", } @Book{Cohen:1996:PJF, author = "Shy Cohen and Tom Mitchell and Andres Gonzalez and Larry Rodrigues", title = "Professional {Java} Fundamentals", publisher = pub-WROX, address = pub-WROX:adr, pages = "xix + 491", year = "1996", ISBN = "1-86100-038-3", ISBN-13 = "978-1-86100-038-5", LCCN = "QA76.73.J38P76 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1861000383/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wrox.com/", price = "US\$35.00", URL = "http://www.wrox.com/", acknowledgement = ack-nhfb, dimensions = "9.19in x 7.25in x 1.07in", paperback = "yes", } @Book{Cohn:1996:JDRa, author = "Mike Cohn", title = "{Java} Developer's Reference", publisher = pub-MACMILLAN-COMPUTER, address = pub-MACMILLAN-COMPUTER:adr, pages = "????", month = oct, year = "1996", ISBN = "0-614-20293-0", ISBN-13 = "978-0-614-20293-9", LCCN = "????", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$69.99", acknowledgement = ack-nhfb, keywords = "Java (computer program language)", xxauthor = "Mike Cohn and Bryan Morgan and Michael Morrison and Michael T. Nygard", } @Book{Cohn:1996:JDRb, author = "Mike Cohn and Bryan Morgan and Michael Morrison and Michael T. Nygard", title = "{Java} Developer's Reference", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xxiv + 1258", month = nov, year = "1996", ISBN = "1-57521-129-7", ISBN-13 = "978-1-57521-129-9", LCCN = "QA76.73.J38J365 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575211297.html; http://www.amazon.com/exec/obidos/ISBN=1575211297/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$59.99", URL = "http://www.mcp.com/cgi-bin/bag?isbn=1-57521-129-7&last=/bookstore", acknowledgement = ack-nhfb, dimensions = "9.40in x 7.70in x 2.47in", keywords = "Java (computer program language); technology -- computers and computer technology", } @Article{Cole:1996:NGG, author = "Barb Cole", title = "{Novell} gives {GroupWise Java}-enabled client", journal = j-COMPUTERWORLD, volume = "30", number = "49", pages = "3--3", day = "2", month = dec, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Sat Dec 28 18:10:31 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @InProceedings{Cole:1996:PGW, author = "R. Cole and S. Tooker", title = "Physics to go: {Web}-based tutorials for {CoLoS} physics simulations", crossref = "Iskander:1996:TBR", pages = "3--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "A0150H (Instructional computer use for education); C7810C (Computer-aided instruction); C6185 (Simulation techniques); C7320 (Physics and chemistry computing); C6150N (Distributed systems software); C5620W (Other computer networks)", conflocation = "Salt Lake City, UT, USA; 6--9 Nov. 1996", conftitle = "Technology-Based Re-Engineering Engineering Education Proceedings of Frontiers in Education FIE'96 26th Annual Conference", corpsource = "Dept. of Phys., California Univ., Davis, CA, USA", keywords = "animation files; CoLoS physics simulations; computer aided instruction; digital simulation; electricity and magnetism; HTML; Internet; JAVA; learning; physics; process; simulation software; tutorials; Web-based tutorials", sponsororg = "IEEE Educ. Soc.; IEEE Comput. Soc.; ASEE Educ. Res. and Methods Div", treatment = "P Practical", } @Book{Coombs:1996:JSJ, author = "Ted Coombs and Jason Coombs", title = "{Java}: Secrets of the {Java} Masters: {Java} Developer's Journal", publisher = pub-SYS-CON, address = pub-SYS-CON:adr, pages = "480", month = jun, year = "1996", ISBN = "1-886141-06-1", ISBN-13 = "978-1-886141-06-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sys-con.com/", price = "US\$38.95", series = "Java Training Ser.; Advanced", URL = "http://www.sys-con.com///books/index.html", acknowledgement = ack-nhfb, keywords = "Java (computer program language); technology -- computers and computer technology", } @Book{Coombs:1996:NLS, author = "Ted Coombs and Jason Coombs and Don Brewer", title = "The {Netscape LiveWire} Sourcebook: Create and Manage a {Java} Based {Web} Site", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xii + 465", month = jun, year = "1996", ISBN = "0-471-15605-1", ISBN-13 = "978-0-471-15605-5", LCCN = "TK5105.883.N48C66 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0471156051/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$29.95", URL = "http://www.wiley.com/compbooks/catalog/07/15605-1.html; http://www.wiley.com/compbooks/catalog/15605-1.htm", acknowledgement = ack-nhfb, dimensions = "9.19in x 7.54in x 1.06in", keywords = "(computer program); Java (Computer program language); Java (computer program language); Netscape; World Wide Web (information retrieval system); World Wide Web (Information retrieval system)", lccnalt = "96-019455", paperback = "yes", } @Book{Cornell:1996:CJa, author = "Gary Cornell and Cay S. Horstmann", title = "Core {Java}", publisher = pub-SUNSOFT, address = pub-SUNSOFT:adr, pages = "xix + 622", day = "1", month = apr, year = "1996", ISBN = "0-13-565755-5, 0-13-264516-5", ISBN-13 = "978-0-13-565755-3, 978-0-13-264516-4", LCCN = "QA76.73.J38C67 1996", bibdate = "Tue May 11 12:33:47 1999", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0135657555/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", note = "Includes CD-ROM. See review in \cite{Garfinkel:1996:JW,Young:1997:PBJ}. Also available in Italian translation \cite{Cornell:1997:CJb}", price = "US\$39.95", URL = "http://www.prenhall.com/ptrbooks/ptr_0135657555.html; http://www.sun.com/smi/ssoftpress/books/Cornell/Cornell_TOC.html", acknowledgement = ack-nhfb, annote = "The SunSoft Press Java Series CD-ROM is a standard ISO-9660 disc. Software on this CD-ROM requires Windows 95, Windows NT, Solaris 2, or Macintosh (System 7.5). Windows 3.1 is not supported.", dimensions = "9.23in x 7.18in x 1.98in", keywords = "Java (computer program language); technology -- data processing", paperback = "yes", } @Article{Coursey:1996:DLM, author = "David Coursey", title = "Don't let {Microsoft} hijack {Java}", journal = j-COMPUTERWORLD, volume = "30", number = "50", pages = "129--129", day = "9", month = dec, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Thu Dec 19 10:06:03 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Coursey:1996:TCC, author = "David Coursey", title = "{Texas}? {Canada}? {Corel} puts accent on {Java}", journal = j-COMPUTERWORLD, volume = "30", number = "41", pages = "137--137", day = "7", month = oct, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Nov 08 15:30:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Notes that Corel will soon ship a Java-based WordPerfect suite.", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @TechReport{Cowlishaw:1996:N, author = "Mike Cowlishaw", title = "{NetReXX}", type = "Web document", institution = "IBM Hursley", address = "Hursley, UK", pages = "????", year = "1996", bibdate = "Mon Mar 10 22:41:27 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Implements a Rexx-language compiler into Java.", URL = "http://www.ibm.com/Technology/NetRexx/", } @Book{Cox:1996:FMU, author = "Earl D. Cox", title = "Fuzzy Models Using {Java}", publisher = pub-CHARLES-RIVER-MEDIA, address = pub-CHARLES-RIVER-MEDIA:adr, pages = "650", month = nov, year = "1996", ISBN = "1-886801-31-2", ISBN-13 = "978-1-886801-31-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.charlesriver.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.95", URL = "http://www.charlesriver.com/titles/fuzzyjava.html", acknowledgement = ack-nhfb, keywords = "fuzzy systems; technology -- general", xxtitle = "Fuzzy Models with {Java}", } @Article{Cox:1996:PMJ, author = "John Cox", title = "{Powersoft} muscles into the {Java} market", journal = j-NETWORK-WORLD, volume = "13", number = "51", pages = "29--29", day = "16", month = dec, year = "1996", ISSN = "0887-7661", ISSN-L = "0887-7661", bibdate = "Tue Dec 24 14:36:51 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Cuenca:1996:PMG, author = "Mike Cuenca", title = "The Practical Manager's Guide to Useful {JavaScript} Snippets", journal = j-COMPUTERWORLD, volume = "30", number = "34", pages = "74--75", month = aug, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Aug 30 08:19:53 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Contains URLs for 7 sites with JavaScript code.", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Culverhouse:1996:SEU, author = "Mark Culverhouse and Clayton Walnum and Nelson Howell and Greg Perry", title = "Special Edition Using {Visual J++}", publisher = pub-QUE, address = pub-QUE:adr, edition = "Special", pages = "xxiii + 678", month = dec, year = "1996", ISBN = "0-7897-0884-1", ISBN-13 = "978-0-7897-0884-7", LCCN = "QA76.73.J38C85 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", URL = "http://www.mcp.com/cgi-bin/bag?isbn=0-7897-0884-1&last=/bookstore", acknowledgement = ack-nhfb, keywords = "Java (Computer program language); Microsoft Visual J++", } @InProceedings{Culwin:1996:JC, author = "Fintan Culwin", booktitle = "2nd SIGTOSE (Special Interest Group in the Teaching of Software Engineering), London, October 1996", title = "{Java} in the Curriculum", publisher = "????", address = "????", pages = "??--??", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Sep 08 17:41:09 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.scism.sbu.ac.uk/~fintan/publications.html", acknowledgement = ack-nhfb, } @InProceedings{Culwin:1996:JFL, author = "Fintan Culwin", booktitle = "Proceedings of 2nd All Ireland Computer on the teaching of computing, Dublin, 1996", title = "{Java} as a First Language?!", publisher = "????", address = "????", pages = "??--??", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Sep 08 17:39:42 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.scism.sbu.ac.uk/~fintan/publications.html", acknowledgement = ack-nhfb, } @Book{Daconta:1996:JCC, author = "Michael C. Daconta and Mike Daconta", title = "{Java} for {C\slash C++} programmers", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "vii + 443", day = "1", month = apr, year = "1996", ISBN = "0-471-15324-9 (paperback)", ISBN-13 = "978-0-471-15324-5 (paperback)", LCCN = "QA76.73.J38D33 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0471153249/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.95, CDN\$48.95", URL = "http://www.wiley.com/compbooks/catalog/07/15324-9.html", acknowledgement = ack-nhfb, annote = "System requirements: IBM compatible PC.", dimensions = "9.24in x 7.54in x 1.21in", keywords = "C (Computer program language); C++ (Computer program language); Java (Computer program language); Java (computer program language); Object-oriented programming; technology -- data processing; World Wide Web servers", paperback = "yes", } @Book{Danesh:1996:AJS, author = "Armen Danesh", title = "Aprendiendo {JavaScript} en una Semana", publisher = pub-PH-HISPANOAMERICANA, address = pub-PH-HISPANOAMERICANA:adr, pages = "576", year = "1996", ISBN = "968-880-640-4", ISBN-13 = "978-968-880-640-1", LCCN = "????", bibdate = "Thu Aug 14 12:31:58 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/spanish.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Spanish translation of \cite{Danesh:1996:TYJa}.", URL = "http://prentice.com.mx/; http://prentice.com.mx/libros/apren_java.html", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Danesh:1996:JDG, author = "Arman Danesh and Wes Tatters", title = "{JavaScript} 1.1 Developer's Guide", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xxiv + 604", month = dec, year = "1996", ISBN = "1-57521-084-3", ISBN-13 = "978-1-57521-084-1", LCCN = "QA76.73.J39D34 1996", bibdate = "Mon Jun 22 16:05:50 1998", bibsource = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575210843.html; http://www.amazon.com/exec/obidos/ISBN=1575210843/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", URL = "http://www.mcp.com/samsnet/", acknowledgement = ack-nhfb, dimensions = "9.08in x 7.38in x 1.58in", keywords = "(computer); Macintosh; technology -- computers and computer technology", paperback = "yes", } @Article{Danesh:1996:JDK, author = "Arman Danesh", title = "The {Java Developer's Kit}", journal = j-LINUX-J, volume = "31", pages = "??--??", month = nov, year = "1996", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Fri Oct 9 08:35:26 MDT 1998", bibsource = "http://www.linuxjournal.com/issue31/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Book{Danesh:1996:JTC, author = "Arman Danesh", title = "{JavaScript 7-Tage-Crashkurs}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, pages = "611", year = "1996", ISBN = "3-8272-5176-1 (??invalid ISBN??)", ISBN-13 = "978-3-8272-5176-3 (??invalid ISBN??)", LCCN = "????", bibdate = "Mon Mar 02 19:20:39 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "German translation of \cite{Danesh:1996:TYJa}.", price = "70 DM", URL = "http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm; http://www.mut.com/", acknowledgement = ack-nhfb, language = "German", xxtitle = "{JavaScript in einer Woche}", } @Book{Danesh:1996:PJ, author = "Armen Danesh", title = "Le programmeur {JavaScript}", publisher = pub-SIMON-SCHUSTER-FRANCE, address = pub-SIMON-SCHUSTER-FRANCE:adr, pages = "ix + 615", year = "1996", ISBN = "2-7440-0167-8", ISBN-13 = "978-2-7440-0167-3", LCCN = "????", bibdate = "Thu Aug 14 18:51:01 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "199 FF", URL = "http://www.ssm.fr/", acknowledgement = ack-nhfb, language = "French", xxnote = "Is this the same as \cite{Danesh:19xx:J}??", } @Book{Danesh:1996:TYJa, author = "Arman Danesh", title = "Teach yourself {JavaScript} in a week", publisher = pub-HWS, address = pub-HWS:adr, pages = "xxiii + 543 + 9", day = "1", month = apr, year = "1996", ISBN = "1-57521-073-8", ISBN-13 = "978-1-57521-073-5", LCCN = "QA76.73.J39D36 1996", bibdate = "Tue May 04 12:59:23 1999", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1575210738/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM. Also available in German \cite{Danesh:1996:JTC}, Spanish \cite{Danesh:1996:AJS}, and Swedish \cite{Danesh:1997:IMJb} translations.", price = "US\$39.99", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575210738.html; http://www.mcp.com/sams/samspub/books/073-8/tjsfmfi.htm#I1", acknowledgement = ack-nhfb, alttitle = "Teach yourself Java Script in a week", annote = "Version 1.0--Disk. Accompanying disk usable with Windows 95, Windows NT, or Macintosh.", dimensions = "9.06in x 7.38in x 1.40in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Book{Danesh:1996:TYJb, author = "Arman Danesh", title = "Teach Yourself {Javascript} 1.1 in a Week", publisher = pub-SAMS, address = pub-SAMS:adr, edition = "Second", pages = "xxiii + 587", day = "1", month = nov, year = "1996", ISBN = "1-57521-195-5", ISBN-13 = "978-1-57521-195-4", LCCN = "QA76.73.J39D356 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575211955.html; http://www.amazon.com/exec/obidos/ISBN=1575211955/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99", acknowledgement = ack-nhfb, dimensions = "9.12in x 7.38in x 1.58in", paperback = "yes", } @Book{Darnell:1996:JQR, author = "Rick Darnell and Mike Afergan", title = "{JavaScript} Quick Reference", publisher = pub-QUE, address = pub-QUE:adr, pages = "xxvi + 182", day = "1", month = aug, year = "1996", ISBN = "0-7897-0869-8", ISBN-13 = "978-0-7897-0869-4", LCCN = "QA76.73.J39D37 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://w3.phdirect.com/que/et/javascqr/; http://www.amazon.com/exec/obidos/ISBN=0789708698/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Also available in Spanish translation \cite{Darnell:1996:JSI}.", price = "US\$19.95", URL = "http://www.mcp.com/que", acknowledgement = ack-nhfb, dimensions = "8.45in x 5.51in x 0.58in", paperback = "yes", } @Book{Darnell:1996:JSI, author = "Rick Darnell", title = "{JavaScript} Soluciones Instant{\'a}neas", publisher = pub-PH-HISPANOAMERICANA, address = pub-PH-HISPANOAMERICANA:adr, pages = "224", year = "1996", ISBN = "968-880-809-1", ISBN-13 = "978-968-880-809-2", LCCN = "????", bibdate = "Mon Aug 18 17:10:04 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/spanish.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Spanish translation of \cite{Darnell:1996:JQR}.", URL = "http://prentice.com.mx/; http://prentice.com.mx/libros/java_soluc.html", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Davignon:1996:JWS, author = "Bernhard Davignon and Georg Edelmann", title = "{Java: Wie Steuere Ich Meine Kaffeemaschine?}", publisher = pub-TEWI, address = pub-TEWI:adr, pages = "184", year = "1996", ISBN = "3-89362-459-7", ISBN-13 = "978-3-89362-459-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.tewi.de/", price = "20 DM", URL = "http://www.tewi.de/scripts/tewi/details_ISBN.idc?ISBN=3-89362-459-7", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.tewi.de/", } @Book{Davignon:1996:WPM, author = "Bernhard Davignon and Georg Edelmann", title = "{WWW-Publishing: multimediale Web-Seiten selbst erstellen; alles Wissenswerte {\"u}ber JAVA; kurze Einf{\"u}hrung in VRML}", publisher = pub-TEWI, address = pub-TEWI:adr, pages = "????", year = "1996", ISBN = "3-89362-442-2", ISBN-13 = "978-3-89362-442-3", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "59 DM", URL = "http://www.tewi.de/scripts/tewi/details_ISBN.idc?ISBN=3-89362-442-2", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.tewi.de/", } @Book{Davis:1996:FJ, author = "Stephen R. Davis", title = "Formation {\`a} {Java}", publisher = "Microsoft Press France", address = "????", pages = "x + 413", year = "1996", ISBN = "2-84082-177-X", ISBN-13 = "978-2-84082-177-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.microsoft.com/france/mspress/", note = "French translation of \cite{Davis:1996:LJN}. Includes CD-ROM.", price = "198 FF", URL = "http://www.estp.fr/eyrolles/ouvrages/book003.html", acknowledgement = ack-nhfb, language = "French", } @Book{Davis:1996:IJA, author = "Owen Davis and Tom McGinn and Amit Bhatiani", title = "Instant {Java} Applets", publisher = pub-ZD, address = pub-ZD:adr, pages = "xi + 220 + 6", day = "1", month = jun, year = "1996", ISBN = "1-56276-386-5, 1-56276-415-2", ISBN-13 = "978-1-56276-386-2, 978-1-56276-415-9", LCCN = "QA76.73.J38D36 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/zdpress/; http://www.amazon.com/exec/obidos/ISBN=1562763865/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$29.99, CDN\$27.95", URL = "http://www.mcp.com/251356511370317/cgi-bin/bag?isbn=1-56276-386-5&last=/bookstore; http://www.mcp.com/zdpress", acknowledgement = ack-nhfb, annote = "Accompanying CD-ROM should be used on a Windows 95 or Windows NT system, or a Macintosh using a 68030 (or greater) or Power PC microprocessor running system 7.5, with a browser capable of viewing Java applets.", dimensions = "9.02in x 7.34in x 0.77in", keywords = "Java (Computer program language); Java (computer program language); Multimedia systems; Object-oriented programming (Computer science); technology -- computers and computer technology; World Wide Web (Information retrieval system)", paperback = "yes", } @Book{Davis:1996:JJ, author = "Stephen R. Davis", title = "{Java jetzt!: das komplette Lernpaket: mit voll funktionsfahiger Version von Microsoft Visual J++ auf CD-ROM}", publisher = "Microsoft Press Germany", address = "????", pages = "402", year = "1996", ISBN = "3-86063-021-0", ISBN-13 = "978-3-86063-021-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.microsoft.com/germany/mspress/", price = "79 DM", URL = "http://194.120.227.99/prd.i/pgen/press/FT16VFE47AS12P2E008MJ7W11XNLKLWL/product.html; isbn=3-86063-021-0", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.microsoft.com/germany/mspress/", } @Book{Davis:1996:LJN, author = "Stephen R. Davis", title = "Learn {Java} Now", publisher = pub-MICROSOFT, address = pub-MICROSOFT:adr, pages = "448", day = "1", month = nov, year = "1996", ISBN = "1-57231-428-1", ISBN-13 = "978-1-57231-428-3", LCCN = "QA76.73.J38D38 1996", bibdate = "Tue May 04 13:01:23 1999", bibsource = "http://mspress.microsoft.com/; http://www.amazon.com/exec/obidos/ISBN=1572314281/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Also available in Spanish translation \cite{Davis:19xx:AJ}.", price = "US\$39.95", URL = "http://mspress.microsoft.com/order/bookpage.asp?title_id=284; http://www.microsoft.com/mspress/", acknowledgement = ack-nhfb, dimensions = "9.21in x 7.39in x 1.26in", keywords = "Java (Computer program language)", paperback = "yes", } @InProceedings{Dean:1996:JSH, author = "Drew Dean and Edward W. Felten and Dan S. Wallach", title = "{Java} security: from {HotJava} to {Netscape} and beyond", crossref = "IEEE:1996:ISS", pages = "190--200", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Princeton Univ", affiliationaddress = "Princeton, NJ, USA", classcodes = "C6130S (Data security); C6140D (High level languages); C5620 (Computer networks and techniques)", classification = "721.1; 722.3; 723.1; 723.1.1; 723.2; 723.3", conference = "Proceedings of the 1996 17th IEEE Symposium on Security and Privacy", conflocation = "Oakland, CA, USA; 6--8 May 1996", conftitle = "Proceedings 1996 IEEE Symposium on Security and Privacy", corpsource = "Dept. of Comput. Sci., Princeton Univ., NJ, USA", journalabr = "Proc IEEE Comput Soc Symp Res Secur Privacy", keywords = "Browser; browsers; bytecode semantics; Codes (symbols); Computational linguistics; Computer architecture; Computer networks; Computer programming languages; Computer software; Database systems; errors; high level languages; HotJava; implementation; information servers; internetworking; Java security; Netscape; security needs; Security of data; security of data; Web browser; World wide web; World Wide Web", meetingaddress = "Oakland, CA, USA", meetingdate = "May 6--8 1996", meetingdate2 = "05/06--08/96", sponsor = "IEEE", sponsororg = "IEEE Comput. Soc. Tech. Committee on Security and Privacy; Int. Assoc. Cryptologic Res", treatment = "P Practical", } @Article{Dean:1996:VOC, author = "Jeffrey Dean and Greg DeFouw and David Grove and Vassily Litvinov and Craig Chambers", title = "{Vortex}: an optimizing compiler for object-oriented languages", journal = j-SIGPLAN, volume = "31", number = "10", pages = "83--100", month = oct, year = "1996", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:25 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses performance of Vortex compiler for Cecil, C++, Java, and Modula-3.", URL = "http://www.cs.washington.edu/research/projects/cecil/", acknowledgement = ack-nhfb, classcodes = "C6150C (Compilers, interpreters and other processors); C6110J (Object-oriented programming); C6140D (High level languages)", conflocation = "San Jose, CA, USA; 6--10 Oct. 1996", conftitle = "OOPSLA '96: Eleventh Annual Conference on Object Oriented Programming Systems Languages and Applications", corpsource = "Dept. of Comput. Sci. and Eng., Washington Univ., Seattle, WA, USA", fjournal = "ACM SIGPLAN Notices", keywords = "benchmark programs; C language; C++; Cecil; class; compilers; dynamic metrics; hierarchy analysis; hybrid languages; intermediate language; internal structure; Java; language-independent; Modula; Modula-3; object-oriented languages; optimising; optimization; optimizing compiler; prediction; profile-guided receiver class; program object-orientedness quantification; static metrics; suite; Vortex compiler infrastructure", sponsororg = "ACM", treatment = "P Practical", } @Article{DeCarmo:1996:IT, author = "Linden {De Carmo}", title = "{Internet} Tools", journal = j-PC-MAGAZINE, volume = "15", number = "14", pages = "297--??", day = "1", month = aug, year = "1996", CODEN = "PCMGEP", ISSN = "0888-8507", ISSN-L = "0888-8507", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Java and digital audio: An applet that shows Java's multimedia and cross-platform capabilities.", acknowledgement = ack-nhfb, fjournal = "PC Magazine", } @Book{December:1996:IJ, author = "John December", title = "Introducci{\'o}n a {Java}", publisher = pub-PH-HISPANOAMERICANA, address = pub-PH-HISPANOAMERICANA:adr, pages = "xv + 207", year = "1996", ISBN = "968-880-686-2", ISBN-13 = "978-968-880-686-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/spanish.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prentice.com.mx/", price = "2080 Ptas.; \$18 Argentine", URL = "http://www.pc-news.com/9608/27lect2.htm", acknowledgement = ack-nhfb, alttitle = "Presenting Java. Spanish", keywords = "Java (Computer program language); Java (Programa para computadoras); Redes de computadoras; World Wide Web (Information retrieval system)", language = "Spanish", xxtitle = "Introducci{\'o}n a {Java} y {HotJava}", } @Book{December:1996:JEU, author = "John December", title = "{Java-Einf{\"u}hrung und {\"U}berblick}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, pages = "290", year = "1996", ISBN = "3-8272-5055-2 (??invalid ISBN??)", ISBN-13 = "978-3-8272-5055-1 (??invalid ISBN??)", LCCN = "????", bibdate = "Tue Mar 03 10:20:23 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "49,00 DM", URL = "http://www.december.com/john/; http://www.mut.ch/html/buchinfo.htx?&x_pp=dJgxRqA9wlAYNijX&x_az=10&x_pk=VpLvjnsx7b5V&x_pa=B&x_pr=oS&x_bestell=25055&x_stichwort=December&x_sprache=D&x_start=1&x_gefunden=2&x_query=&x_lastpage=buchfund&x_soft=&x_suchewo=A; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm; http://www.mut.com/", acknowledgement = ack-nhfb, language = "German", } @Book{December:1996:JHJ, author = "John December and Koichi Matsuda", title = "{Java}, hot {Java} o shiru: {Intanneto} no atarashii sekai", publisher = "Kabushiki Kaisha Purentisuhoru", address = "Tokyo, Japan", edition = "Shohan", pages = "xv + 255", year = "1996", ISBN = "4-931356-99-0", ISBN-13 = "978-4-931356-99-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mmjp.or.jp/prentice/", URL = "http://www.mmjp.or.jp/prentice/wa_int06-j.html", acknowledgement = ack-nhfb, alttitle = "Presenting Java. Japanese", annote = "Translation of: Presenting Java.", keywords = "Java (Computer program language); World Wide Web (Information retrieval system)", language = "Japanese", xxtitle = "{Java\slash HotJava}", } @Article{Deitz:1996:ILE, author = "Dan Deitz", title = "Industry leaders endorse {Java} and {VRML}", journal = j-MECH-ENG, volume = "118", number = "????", pages = "28--??", month = "????", year = "1996", CODEN = "MEENAH", ISSN = "0025-6501", ISSN-L = "0025-6501", bibdate = "Sat Oct 12 16:26:29 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Mechanical Engineering: the journal of the American Society of Mechanical Engineers", keywords = "Internet; Java (Computer language); VRML (Computer language)", } @Article{Deitz:1996:JNT, author = "Dan Deitz", title = "{Java}: a new tool for engineering", journal = j-MECH-ENG, volume = "118", number = "4", pages = "68--72", month = apr, year = "1996", CODEN = "MEENAH", ISSN = "0025-6501", ISSN-L = "0025-6501", bibdate = "Thu Dec 12 17:15:14 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classification = "722.2; 722.4; 723.1.1; 723.5", fjournal = "Mechanical Engineering: the journal of the American Society of Mechanical Engineers", keywords = "Computer aided engineering; Computer aided manufacturing; Computer networks; Computer operating systems; Computer programming languages; Computer systems; Graphical user interfaces; Internet; Java (Computer language); Java programming language; Multimedia; Object oriented programming; Software Package Windows; World Wide Web", } @Article{DeRoest:1996:PHP, author = "Jim DeRoest", title = "Piping Hot Pages", journal = j-RS-MAGAZINE, volume = "5", number = "6", pages = "24--27", month = jun, year = "1996", ISSN = "1088-0844, 1061-0030", bibdate = "Fri Jun 14 06:34:35 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses ANDF, Java, and JavaScript, and provides pointers to a number of Java resources on the Internet.", acknowledgement = ack-nhfb, fjournal = "RS\slash Magazine", } @Article{Descy:1996:AAI, author = "Don Descy", title = "All Aboard the {Internet}: {NCSA Mosaic}, {Netscape}, and {Java}\slash {Hot Java}!!", journal = j-TECHTRENDS, volume = "41", number = "1", pages = "6--??", year = "1996", CODEN = "TETREF", ISSN = "8756-3894", ISSN-L = "1559-7075", bibdate = "Fri Feb 23 08:05:11 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "TechTrends: for leaders in education and training", } @Article{Dhabolt:1996:EJ, author = "J. Dhabolt and D. Weissman", title = "Exploring {Java}", journal = j-SCITECH-J, volume = "6", number = "3", pages = "14--16", month = mar, year = "1996", CODEN = "SITJE8", ISSN = "1072-0995", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming); C6150N (Distributed systems software); C7210 (Information services and centres)", fjournal = "SciTech Journal", keywords = "application development; Internet; Java; object-oriented; object-oriented languages; programming; World Wide Web", treatment = "G General Review", } @Article{Dick:1996:WDE, author = "K. Dick", title = "{Web} development environments", journal = j-OBJECT-MAG, volume = "6", number = "7", pages = "72--73", month = sep, year = "1996", CODEN = "OBMAFO", ISSN = "1055-3614", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210L (Computer communications); C6150N (Distributed systems software); C5620W (Other computer networks); C5690 (Other data communication equipment and techniques)", fjournal = "Object Magazine", keywords = "application development tools; backend applications; buyer guide; buyer's guides; general purpose programming language; Internet; Java; JFactory; NetCraft; network; network operating systems; server segment; server-specific; servers; software selection; VisualWave; Web based applications; Web development environments; Web development technology; Web servers; WebObjects", treatment = "P Practical", } @Article{DiDio:1996:IRU, author = "Laura DiDio", title = "{IBM} reassures users with {Java} for {Warp}", journal = j-COMPUTERWORLD, volume = "30", number = "48", pages = "14--14", day = "25", month = nov, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Dec 30 08:26:34 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Diehl:1996:JCS, author = "Stephan Diehl", title = "{Java \& Co: Die Sprachen des Webs: HTML, VRML, Java, JavaScript}", publisher = pub-AW, address = pub-AW:adr, pages = "288", year = "1996", ISBN = "3-8273-1124-1", ISBN-13 = "978-3-8273-1124-5", LCCN = "????", bibdate = "Tue Aug 19 09:06:11 1997", bibsource = "http://www.addison-wesley.de/katalog; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "49,90 DM", URL = "http://www.addison-wesley.de/katalog/item.ppml?textexpr=Java&id=00099", acknowledgement = ack-nhfb, language = "German", } @Article{DiGiorgio:1996:JDS, author = "Rinaldo DiGiorgio", title = "{Java} Developer: Smashing buttons", journal = j-SUNWORLD-ONLINE, volume = "01", pages = "??--??", year = "1996", ISSN = "1091-8914", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sun.com/sunworldonline/swol-01-1996/swol-01-java.html", abstract = "Laying out buttons and other GUI components can be easy if you use Java's built-in layout managers. The cocky may even try writing their own. (A few gratuitous applets have been thrown in for good measure.)", acknowledgement = ack-nhfb, fjournal = "SunWorld online", } @InProceedings{Domel:1996:MTA, author = "Peter Domel", title = "Mobile {Telescript} agents and the {Web}", crossref = "IEEE:1996:DPC", pages = "52--57", month = "????", year = "1996", bibdate = "Tue May 05 08:13:54 1998", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "General Magic, Inc", affiliationaddress = "Sunnyvale, CA, USA", classcodes = "B6210L (Computer communications); C5620 (Computer networks and techniques); C6170 (Expert systems); C5620W (Other computer networks); C6150N (Distributed systems software)", classification = "722.4; 723.1", conflocation = "Santa Clara, CA, USA; 25--28 Feb. 1996", conftitle = "COMPCON '96. Technologies for the Information Superhighway Digest of Papers", corpsource = "Gen. Magic, Sunnyvale, CA, USA", keywords = "computer; computer networks; Computer networks; Computer software; Electronic marketplace; Interactive agents; Interactive computer systems; Internet; Java; Java applets; Mobile agents; Mobile code; mobile Telescript agents; networks; Object oriented programming; software agents; Software agents; software programs; Telecommunication services; Telescript; Telescript agents; telesoftware; web browsers; Web services; Word wide web", meetingaddress = "Santa Clara, CA, USA", meetingdate = "Feb 25--28 1996", meetingdate2 = "02/25--28/96", sponsor = "IEEE", sponsororg = "IEEE Comput. Soc", treatment = "P Practical", } @Article{Donkers:1996:EYW, author = "Arthur Donkers", title = "Enhance Your {Web-Based GUI} with {Java}", journal = j-SYS-ADMIN, volume = "5", number = "7", pages = "35, 36, 39, 40, 42, 43, 45, 47, 50", month = jul, year = "1996", CODEN = "SYADE7", ISSN = "1061-2688", bibdate = "Tue Sep 03 17:26:50 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Sys admin: the journal for UNIX system administrators", } @Article{Dragan:1996:INN, author = "Richard V. Dragan and Thomas Mace", title = "Inside the {Netscape Navigator} Platform", journal = j-PC-MAGAZINE, volume = "15", number = "17", pages = "283--??", day = "8", month = oct, year = "1996", CODEN = "PCMGEP", ISSN = "0888-8507", ISSN-L = "0888-8507", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "How your plug-ins, JavaScript, and Java can interact in the industry-standard Web client.", acknowledgement = ack-nhfb, fjournal = "PC Magazine", } @Book{Drake:1996:JAP, author = "Robin Drake and Tad Ringo", title = "{Java} Applet Powerpack, Vol. 1", publisher = pub-PRIMA, address = pub-PRIMA:adr, pages = "xii + 344", day = "1", month = sep, year = "1996", ISBN = "0-7615-0678-0", ISBN-13 = "978-0-7615-0678-2", LCCN = "QA76.73.J38 J36 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0761506780/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.primapublishing.com/", price = "US\$30.00", URL = "http://www.primapublishing.com/cpd/76150678.html", acknowledgement = ack-nhfb, dimensions = "9.17in x 7.44in x 0.87in", paperback = "yes", xxnote = "Duplicate ISBN in \cite{Drake:1996:JAP,Savail:1996:JAP}.", } @InProceedings{Drespling:1996:JHJ, author = "W. Drespling", title = "{Java/HotJava\slash und wie das Internet zum Leben erweckt wird} [{English}: {Java}\slash {Hot Java} and the {Internet}]", crossref = "Anonymous:1996:OPO", pages = "118--122", year = "1996", bibdate = "Sat Oct 12 16:26:29 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming); C6150N (Distributed systems software)", conflocation = "Munchen, Germany; 12--16 Feb. 1996", conftitle = "Proceedings of OOP '96", countrypub = "Germany", keywords = "browser technology; distributed processing; Hot Java; Internet; Java; Java code; object-oriented languages; operating system neutral software; program interpreters; programming language; system; virtual machine; virtual machines", language = "German", treatment = "G General Review; P Practical", } @Article{Dryden:1996:JFR, author = "Patrick Dryden", title = "{Java} fuels remote hub management", journal = j-COMPUTERWORLD, volume = "30", number = "36", pages = "6--6", day = "2", month = sep, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Sep 06 10:53:39 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Dryden:1996:JPW, author = "Patrick Dryden", title = "{Java} pitched to wake up management tools", journal = j-COMPUTERWORLD, volume = "30", number = "24", pages = "24--24", day = "10", month = jun, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Aug 19 12:08:00 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{DSouza:1996:AAD, author = "Desmond D'Souza and Jun Wang", title = "Algorithm Alley: Data Management with {Java}", journal = j-WEB-TECHNIQUES, volume = "1", number = "6", pages = "30, 32, 33", month = sep, year = "1996", CODEN = "WETEFA", ISSN = "1086-556X", bibdate = "Thu Sep 05 08:19:09 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Web Techniques", } @InProceedings{DSouza:1996:AMD, author = "Desmond F. D'Souza and Petter Graff", title = "Advanced Modeling and Design for {Java} Systems", crossref = "USENIX:1996:PSUb", pages = "??--??", year = "1996", bibdate = "Mon Oct 21 14:29:18 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/coots96/", acknowledgement = ack-nhfb, } @Article{DSouza:1996:ISF, author = "D. D'Souza", title = "Interfaces, subtypes, and frameworks [{Java}]", journal = j-J-OOP, volume = "9", number = "7", pages = "19--22", month = nov # "-" # dec, year = "1996", CODEN = "JOOPEC", ISSN = "0896-8438", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6140D (High level languages); C6110F (Formal methods); C6180 (User interfaces)", corpsource = "ICON Comput., Austin, TX, USA", fjournal = "Journal of Object Oriented Programming", keywords = "abstract data types; argument type; behaviour; Catalysis methodology; exception restrictions; framework-style design; function name; hypothesized query set; interface; Java interfaces; multiple interfaces; object external; object state abstraction; object-; object-oriented; object-oriented design; object-oriented languages; oriented methods; oriented models; program implementation; return type; signatures; subtypes; type model; user interfaces; vocabulary", treatment = "P Practical", } @Article{DSouza:1996:JDM, author = "D. D'Souza", title = "{Java}: design and modeling opportunities", journal = j-J-OOP, volume = "9", number = "5", pages = "14--??, 16--18", month = sep, year = "1996", CODEN = "JOOPEC", ISSN = "0896-8438", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6140D (High level languages); C6110F (Formal methods); C6150E (General utility programs)", corpsource = "Icon Comput., Austin, TX, USA", fjournal = "Journal of Object Oriented Programming", keywords = "abstract data types; application program interface; application program interfaces; behavioral type definition; Catalysis method; collaborations; design opportunities; expressive form; general-; Java language feature; modeling; object classes; object-; object-oriented methods; opportunities; oriented languages; purpose object-oriented programming language; refinement; specifications; subtyping", treatment = "P Practical", } @Article{DSouza:1996:JRB, author = "Desmond D'Souza", title = "{Java}, {A} Refreshing Brew: Thinking in terms of objects", journal = j-WEB-TECHNIQUES, volume = "1", number = "2", pages = "??--??", month = may, year = "1996", CODEN = "WETEFA", ISSN = "1086-556X", bibdate = "Thu Sep 05 08:19:09 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.webtechniques.com/features/may96java.html", acknowledgement = ack-nhfb, fjournal = "Web Techniques", } @Article{Duan:1996:DDA, author = "Nick N. Duan", title = "Distributed database access in a corporate environment using {Java}", journal = j-COMP-NET-ISDN, volume = "28", number = "7--11", pages = "1149--1156", day = "1", month = may, year = "1996", CODEN = "CNISE9", ISSN = "0169-7552", ISSN-L = "0169-7552", bibdate = "Sat Sep 25 15:30:03 1999", bibsource = "ftp://ftp.ira.uka.de/pub/bibliography/Misc/Ciancarini.bib; http://www.elsevier.com/cgi-bin/cas/tree/store/cna/cas_free/browse/browse.cgi?year=1996&volume=28&issue=7-11; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.elsevier.com/cgi-bin/cas/tree/store/comnet/cas_sub/browse/browse.cgi?year=1996&volume=28&issue=7-11&aid=1600", acknowledgement = ack-nhfb, annote = "Proc. 5th Int. WWW Conference, Paris", classcodes = "C6160B (Distributed databases); C6110J (Object-oriented programming); C6140D (High level languages); C6150N (Distributed systems software); C7210 (Information services and centres); C6115 (Programming support); C6110B (Software engineering techniques); C7190 (Other fields of business and administrative computing)", conflocation = "Paris, France; 6--10 May 1996", conftitle = "Fifth International World Wide Web Conference", corpsource = "Internet Services Center of Excellence, Bell Atlantic, Alexandria, VA, USA", countrypub = "Netherlands", fjournal = "Computer Networks and ISDN Systems", keyword = "CORBA, WWW, groupware", keywords = "business data processing; client-server systems; corporate environment; database access; database application development; databases; distributed; enterprise applications; flexibility; HORB software tool; information networks; infrastructure; Java; Java applets; Java client objects; Java server; Object Request Broker; object-oriented languages; object-oriented programming; objects; portability; query processing; robust Web; robustness; scalability; software; software tools; Web", treatment = "P Practical", } @Book{Duntemann:1996:JPF, author = "Jeff Duntemann", title = "{JBuilder} Programming {FrontRunner}", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "????", year = "1996", ISBN = "1-57610-004-9", ISBN-13 = "978-1-57610-004-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Duplicate ISBN with \cite{Duntemann:1996:JPF,Goggin:19xx:JPF,Kerievsky:1997:OJP}.", price = "US\$29.95", URL = "http://www.coriolis.com/", acknowledgement = ack-nhfb, xxnote = "Duplicate ISBN with \cite{Duntemann:1996:JPF,Goggin:19xx:JPF,Kerievsky:1997:OJP}.", xxtitle = "{Latt{\'e}} Programming {FrontRunner}", } @Article{Dyson:1996:FTS, author = "P. E. Dyson", title = "{FutureTense's Texture}: slow page viewer mars powerful design tool", journal = j-SEYBOLD-REP-INTERNET-PUBLISHING, volume = "1", number = "1", pages = "5--8", month = sep, year = "1996", ISSN = "1090-4808", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D2105 (Media-TV, radio, press); D2080 (Information services and database systems)", corpsource = "FutureTense Inc., Acton, MA, USA", fjournal = "Seybold Report on Internet Publishing", keywords = "aesthetic; design; electronic publishing; FutureTense Texture; Internet; irregular runarounds; Java-based; multiple columns; page makeup tool; software reviews; typography; Web", treatment = "P Practical; R Product Review", } @Article{Eckel:1996:HGC, author = "B. Eckel", title = "How garbage collection can increase speed", journal = j-WEB-TECHNIQUES, volume = "1", number = "9", pages = "36--??, 38", month = dec, year = "1996", CODEN = "WETEFA", ISSN = "1086-556X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6120 (File organisation); C6110J (Object-oriented programming); C6140D (High level languages)", fjournal = "Web Techniques", keywords = "adaptive garbage; C language; C++; collection scheme; garbage collection; Internet; Java; JVM; Microsoft; object; object allocation; object-; object-oriented languages; oriented language speed; oriented programming; software performance evaluation; storage management", treatment = "P Practical", } @Article{Eckel:1996:JAS, author = "B. Eckel", title = "{{Java}} alley: speed", journal = j-WEB-TECHNIQUES, volume = "1", number = "7", pages = "24--??, 26--27", month = oct, year = "1996", CODEN = "WETEFA", ISSN = "1086-556X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210L (Computer communications); C6140D (High level languages); C6110J (Object-oriented programming); C5620W (Other computer networks); C6150N (Distributed systems software)", fjournal = "Web Techniques", keywords = "Internet; Java programming language; object; object-oriented; object-oriented languages; oriented programming; programming; speed; Web", treatment = "P Practical", } @Article{Eckel:1996:LE, author = "B. Eckel", title = "Language extensions", journal = j-WEB-TECHNIQUES, volume = "1", number = "8", pages = "36--??, 38", month = nov, year = "1996", CODEN = "WETEFA", ISSN = "1086-556X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming)", fjournal = "Web Techniques", keywords = "authoring languages; default arguments; Java language extensions; multipurpose development language; object oriented language; object persistence; object-; object-oriented languages; oriented programming; resources; software; software tools; tools", treatment = "P Practical", } @Book{Eckel:1996:TJ, author = "Bruce Eckel", title = "Thinking in {Java}", publisher = pub-PH, address = pub-PH:adr, pages = "????", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Fri Jun 14 11:57:33 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.zone.org/Eckel/books.htm", acknowledgement = ack-nhfb, } @InProceedings{El-Refai:1996:JDC, author = "M. Y. El-Refai and A. Kumar and A. S. Elmaghraby", title = "{JAVA-based} distributed conferencing for heterogeneous systems", crossref = "Yetongnon:1996:PII", volume = "1", pages = "2--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210P (Teleconferencing); C7410F (Communications computing); C6150N (Distributed systems software); C6110J (Object-oriented programming); C6115 (Programming support)", conflocation = "Dijon, France; 25--27 Sept. 1996", conftitle = "Proceedings of 9th International Conference on Parallel and Distributed Computing Systems. PDCS '96", corpsource = "Multimedia Lab., Louisville Univ., KY, USA", keywords = "client-server systems; distributed conferencing; environments; graphical user interfaces; heterogeneous systems; Internet; interoperability; Java support; object-oriented programming; open systems; programming; telecommunication computing; teleconferencing; Web browser; World-Wide Web", sponsororg = "ISCA; IEEE Comput. Soc.; IEEE Tech. Committee on Operating Syst.; et al", treatment = "A Application; P Practical", } @Article{Encarnacao:1996:NUI, author = "L. Encarna{\c{c}}{\~a}o and Klaus M. Bauer and Klaus B{\"o}hm and Roland Holzapfel and Tanja Koop and Ulrike Spierling", title = "New user interface aspects to the information highway --- applying {Java} and {VRML}", journal = j-INT-J-INFO-TECH, volume = "2", number = "1", pages = "79--95", month = jun, year = "1996", ISSN = "0218-7957", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210L (Computer communications); C6150N (Distributed systems software); C5620W (Other computer networks); C6180 (User interfaces); C7250N (Front end systems for online searching); C6110J (Object-oriented programming); C6130B (Graphics techniques); C6110V (Visual programming); C6140D (High level languages)", corpsource = "Comput. Graphics Center, ZGDV, Darmstadt, Germany", countrypub = "Singapore", fjournal = "International Journal of Information Technology", keywords = "document design; HTML; human factors; information highway; interactive systems; Internet; Java; Language; network bandwidth; novice; object-; online front-ends; oriented languages; user community; user friendly applications; user interface aspects; user interface design; user interfaces; users; virtual reality; Virtual Reality Modeling; visual programming; VRML; World Wide Web", treatment = "P Practical", } @Article{Erickson:1996:DDJ, author = "Jonathan Erickson", title = "{{\em Dr. Dobb's Journal} Excellence in Programming} Awards", journal = j-DDJ, volume = "21", number = "3", pages = "16--17", month = mar, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Sep 03 09:16:53 1996", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover database", abstract = "Larry Wall, author of Perl, and James Gosling, chief architect of Java, are recipients of our annual award that honors achievement in the world of software development.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Eriksson:1996:ESW, author = "Henrik Eriksson", title = "Expert Systems And The {Web}: Expert Systems as Knowledge Servers", journal = j-IEEE-EXPERT, volume = "11", number = "3", pages = "14--19", month = jun, year = "1996", CODEN = "IEEXE7", ISSN = "0885-9000", bibdate = "Fri Mar 14 12:38:44 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses applications of Java.", fjournal = "IEEE expert: intelligent systems and their applications", } @Book{Espeset:1996:KJP, author = "Tonny Espeset", title = "{KickAss Java} Programming: Cutting Edge {Java} Techniques with an Attitude", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "xii + 480", day = "1", month = aug, year = "1996", ISBN = "1-883577-99-3 (paperback)", ISBN-13 = "978-1-883577-99-5 (paperback)", LCCN = "QA76.73.J38E65 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1883577993/wholesaleproductA/; http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$39.99; CDN\$55.99", URL = "http://www.coriolis.com/site/msie/books/ind/kajp.htm; http://www.sn.no/~espeset; http://www.vmedia.com/home.html", acknowledgement = ack-nhfb, dimensions = "9.26in x 7.44in x 1.25in", keywords = "Java (Computer program language); Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Article{Espinosa:1996:IAB, author = "E. Espinosa and A. Brito and F. Ramos", title = "Intelligent Agent-Based Virtual Education Using the {Java} Technology", journal = j-LECT-NOTES-COMP-SCI, volume = "1086", pages = "270--278", year = "1996", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Wed Aug 14 09:38:08 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @InProceedings{Espinosa:1996:IAV, author = "E. Espinosa and A. Brito and F. Ramos", title = "Intelligent agent-based virtual education using the {Java} technology", crossref = "Frasson:1996:ITS", pages = "270--278", year = "1996", bibdate = "Sat Oct 12 15:29:39 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7810C (Computer-aided instruction); C6110J (Object-oriented programming); C6140D (High level languages); C6170 (Expert systems)", conflocation = "Montreal, Canada; 12--14 June 1996", conftitle = "Intelligent Tutoring Systems. Third International Conference, ITS '96", corpsource = "Dept. Comput. Sci., ITESM-CCM, Morelos, Mexico", countrypub = "Germany", keywords = "artificial intelligence; behavior patterns; cognition; computer science education; cooperative systems; course; courses; educational; epistemological; higher education; implications; initiatives; intelligent agent-based virtual education; Intelligent Multiagent Systems; intelligent tutoring systems; Java technology; languages; learning; measurement model; multidisciplinary research; multiplatform programming project; object-oriented; object-oriented programming; psychology; research; research projects; skill acquisition model; software agents; University Definition; Virtual; Virtualized Data Structures", treatment = "P Practical", } @InProceedings{Espinoza:1996:WIA, author = "F. Espinoza and K. Hook", title = "A {WWW} interface to an adaptive hypermedia system", crossref = "Anonymous:1996:PPF", pages = "143--167", year = "1996", bibdate = "Sat Oct 12 15:29:39 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210L (Computer communications); C7250N (Front end systems for online searching); C5620W (Other computer networks); C6130M (Multimedia); C6160Z (Other DBMS); C6170 (Expert systems)", conflocation = "London, UK; 22--24 April 1996", conftitle = "Proceedings of First International Conference on Practical Application of Intelligent Agents and Multi-Agent Technology", corpsource = "SICS, Kista, Sweden", countrypub = "UK", keywords = "adaptive behaviour; adaptive hypermedia system; adaptive scenario; ends; highly; hot words; HTML; hypermedia; implementation; industrially produced online manual; information; information seeking task; information space; intelligent software agent; interactive multi modal hypertext system; interactive systems; Internet; Java; knowledge base; online front-; overflow; prototype; SICStus Prolog; software agents; World Wide Web; WWW interface", treatment = "P Practical", } @InProceedings{Even:1996:CCA, author = "R. Even and B. Mishra", title = "{CAFE}: a {Complex Adaptive Financial Environment}", crossref = "IEEE:1996:PICa", pages = "20--25", month = "????", year = "1996", bibdate = "Fri Jan 3 07:17:51 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Courant Inst. of Math. Sci., New York, NY, USA", classcodes = "C7120 (Financial computing); C6110J (Object-oriented programming)", conflocation = "New York City, NY, USA; 24--26 March 1996", conftitle = "IEEE/IAFE 1996 Conference on Computational Intelligence for Financial Engineering (CIFEr)", corpsource = "Courant Inst. of Math. Sci., New York, NY, USA", keywords = "adaptive systems; adaptive systems simulation; CAFE; commerce; complex; Complex Adaptive Financial Environment; computational finance; data processing; digital simulation; distributed features; financial; food; gold; Java; Java programming language; market simulation; object-oriented design; object-oriented programming; software structure; speculators; trading", sponsororg = "IEEE Neural Networks Council; Int. Association of Financial Eng", treatment = "P Practical", } @Article{Fahey:1996:TTS, author = "Michael J. Fahey", title = "{Taligent Technology} to Support {Java}", journal = j-RS-MAGAZINE, volume = "5", number = "12", pages = "12--12", month = dec, year = "1996", ISSN = "1088-0844, 1061-0030", bibdate = "Tue Dec 10 05:32:40 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses an agreement between Sun Microsystems Inc. and IBM's Taligent Technology subsidiary to integrate the latter's support for Java internationalization into the Java development environment.", acknowledgement = ack-nhfb, fjournal = "RS\slash Magazine", } @Article{Falla:1996:W, author = "Jane M. Falla", title = "Webmastery", journal = j-WEBSERVER, volume = "1", number = "1", pages = "38--40, 42, 44, 46, 48, 50", month = mar # "\slash " # jun, year = "1996", ISSN = "1087-4232", bibdate = "Fri May 31 11:21:20 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cpg.com", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Book{Fan:1996:BAJ, author = "Joel Fan and Eric Ries and Calin Tenitchi", title = "Black Art of {Java} Game Programming", publisher = pub-WAITE-GROUP, address = pub-WAITE-GROUP:adr, pages = "xxxi + 933", day = "1", month = nov, year = "1996", ISBN = "1-57169-043-3", ISBN-13 = "978-1-57169-043-2", LCCN = "QA76.73.J38F36 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/waite/; http://www.amazon.com/exec/obidos/ISBN=1571690433/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", series = "Black Art Ser", URL = "http://www.mcp.com/cgi-bin/bag?isbn=1-57169-043-3&last=/bookstore; http://www.waite.com/waite/", acknowledgement = ack-nhfb, dimensions = "9.09in x 7.33in x 2.05in", keywords = "Java (Computer program language); Java (computer program language); technology -- computers and computer technology; Video games; World Wide Web (Information retrieval system)", paperback = "yes", } @Book{Fanta:1996:JU, author = "Rick Fanta", title = "{Java} Unleashed", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "971", day = "1", month = apr, year = "1996", ISBN = "1-57521-049-5", ISBN-13 = "978-1-57521-049-0", LCCN = "QA76.73.J38J384 1996", bibdate = "Thu Aug 21 16:52:30 1997", bibsource = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575210495.html; http://www.amazon.com/exec/obidos/ISBN=1575210495/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", acknowledgement = ack-nhfb, dimensions = "9.03in x 7.27in x 2.14in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", xxnote = "Library of Congress says authors are Mike Fletcher and others; this ISBN is recorded for \cite{Fanta:1996:JU,Morrison:1996:JU,Morrow:1996:JU}.", xxxnote = "This ISBN occurs in \cite{Morrison:1996:JU,Morrow:1996:JU,Fanta:1996:JU}.", } @Article{Farrell:1996:NJL, author = "Tom Farrell", title = "{Netspeak}: The origins and promise of the new lingua franca of distributed computing", journal = j-IEE-REV, volume = "42", number = "4", pages = "143--146", day = "18", month = jul, year = "1996", CODEN = "IEREEF", ISSN = "0953-5683 (or 0013-5127??)", ISSN-L = "0953-5683", bibdate = "Sat Oct 12 15:29:39 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "It happened almost by accident, but now the Java programming language is transforming the capabilities of the Internet. Tom Farrell describes the origins and promise of the new lingua franca of distributed computing.", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming); C6150N (Distributed systems software); C7210 (Information services and centres)", corpsource = "IONA Technol., Dublin, UK", countrypub = "UK", fjournal = "IEE Review", keywords = "distribution; executable content; Internet; Java programming language; object-oriented languages; object-oriented programming language; Wide Web; World", treatment = "G General Review", } @Article{Farrow:1996:REJ, author = "Rik Farrow", title = "Review: Exploring {Java}", journal = j-LOGIN, volume = "21", number = "5", pages = "46--??", month = oct, year = "1996", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Wed Aug 13 10:48:45 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/cgi-bin/sortbib.pl?-sA", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{Farrow:1996:UJa, author = "Rik Farrow", title = "Using {Java}", journal = j-LOGIN, volume = "21", number = "5", pages = "39--42", month = oct, year = "1996", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Wed Nov 27 08:41:31 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{Farrow:1996:UJb, author = "Rik Farrow", title = "Using {Java}", journal = j-LOGIN, volume = "21", number = "6", pages = "24--26", month = dec, year = "1996", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Nov 26 16:49:54 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{Farrow:1996:UJN, author = "Rik Farrow", title = "Using {Java}: {A} new series of articles about {Java}", journal = j-LOGIN, volume = "21", number = "5", pages = "39--??", month = oct, year = "1996", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Wed Aug 13 10:48:45 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/cgi-bin/sortbib.pl?-sA", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Book{Feather:1996:JE, author = "Stephen Feather and Luke Cassady-Dorion and Andrew Wooldridge", title = "{JavaScript} by Example", publisher = pub-QUE, address = pub-QUE:adr, pages = "xviii + 410", day = "1", month = jul, year = "1996", ISBN = "0-7897-0813-2", ISBN-13 = "978-0-7897-0813-7", LCCN = "QA76.73.J39F43 1996", bibdate = "Tue May 04 14:39:40 1999", bibsource = "http://www.amazon.com0/exec/obidos/ISBN=0789708132/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Also available in Italian translation \cite{Feather:1997:UJ}.", price = "US\$34.99", acknowledgement = ack-nhfb, alttitle = "Java Script by example", annote = "System requirements of accompanying disc: IBM-compatible PC with Windows, UNIX or Macintosh; CD-Rom drive.", dimensions = "9in x 7.30in x 1.14in", keywords = "JavaScript (Computer program language); World Wide Web (Information retrieval system)", paperback = "yes", } @Article{Fichtelman:1996:TJG, author = "M. Fichtelman", title = "The {Tao} of {Java}: generating random hexagrams", journal = j-WEB-TECHNIQUES, volume = "1", number = "7", pages = "55--57", month = oct, year = "1996", CODEN = "WETEFA", ISSN = "1086-556X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7820 (Humanities computing); C6110J (Object-oriented programming); C6140D (High level languages); C6130B (Graphics techniques); C6150N (Distributed systems software); C5620W (Other computer networks)", fjournal = "Web Techniques", keywords = "ancient Chinese; Chinese; complete computer programs; computer graphics; humanities; I Ching; Internet; Java program; object oriented; object-oriented; object-oriented languages; philosophers; philosophical aspects; philosophy of change; primordial states; programming; random hexagram generation; Taoists; yang; yin", treatment = "P Practical", } @Misc{Field:1996:JDW, author = "{Field and Marketing Communications} and {Indiana University-Purdue University Indianapolis. Office of and Integrated Technologies}", title = "{Java} development on the {Web}", publisher = "Integrated Technologies/IUPUI", address = "Indianapolis, IN, USA", day = "28", month = mar, year = "1996", bibdate = "Sat Aug 17 16:45:43 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "1 videocassette (60 min.).", acknowledgement = ack-nhfb, alttitle = "Sunergy, 20.", annote = "Off-air tape of a teleconference broadcast from Singapore and re-broadcast in the US on March 28, 1996. Edwin Hacking, director; Denise Marcucci, producer. John Gage, host and narrator. A panel of experts discuss national Internet policies and development technologies using Java programming language. VHS format.", keywords = "Computer software -- Development; Internet (Computer network); Internet (Computer network) -- Government policy; Java (Computer program language); World Wide Web (Information retrieval system)", } @Book{Fisco:1996:DGJ, author = "David Fisco and Patrick Fitzgerald", title = "A Developer's Guide to {JavaScript}", volume = "2", publisher = pub-SIGS-BOOKS-MULTIMEDIA, address = pub-SIGS-BOOKS-MULTIMEDIA:adr, pages = "200", year = "1996", ISBN = "0-13-579269-X", ISBN-13 = "978-0-13-579269-8", LCCN = "????", bibdate = "Mon Jun 22 08:55:40 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$24.95", series = "Java Report Professional Series", URL = "http://www.sigs.com/books/javascript.html", acknowledgement = ack-nhfb, keywords = "Java (computer program language); technology -- computers and computer technology", xxnote = "Is this the same as Fisco:1996:J??", } @Book{Fisher:1996:SWG, author = "Yuval Fisher", title = "Spinning the {Web}: {A} Guide to Serving Information on the {World Wide Web}", publisher = pub-SV, address = pub-SV:adr, pages = "xiv + 536", year = "1996", ISBN = "0-387-94539-3", ISBN-13 = "978-0-387-94539-2", LCCN = "TK5105.888.F58 1996", bibdate = "Fri Nov 01 10:29:55 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discussions Java, JavaScript, and VRML.", price = "US\$27.95", acknowledgement = ack-nhfb, } @Article{Flammia:1996:ISS, author = "G. Flammia", title = "On the {Internet}, software should be milked, not brewed", journal = j-IEEE-EXPERT, volume = "11", number = "6", pages = "87--88", month = dec, year = "1996", CODEN = "IEEXE7", ISSN = "0885-9000", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210L (Computer communications); C5620W (Other computer networks); C7210 (Information services and centres); C0230B (Legal aspects of computing); C6130S (Data security)", fjournal = "IEEE expert: intelligent systems and their applications", keywords = "cloning; computer software; economic issues; HTTP; hypertext platform; hypertext transfer protocol; industrial property; innovative user interface; intellectual property; Internet; Java; Java byte codes; legal issues; legislation; software; software products; time stamping software; Web; Web browsers", treatment = "P Practical", } @Article{Flanagan:1996:HTT, author = "Patrick Flanagan", title = "10 hottest technologies in telecom", journal = j-TELECOMMUNICATIONS-AMERICAS-ED, volume = "30", number = "5", pages = "??--??", month = may, year = "1996", CODEN = "TLCMDV", ISSN = "0278-4831", bibdate = "Thu Dec 12 16:46:56 MST 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classification = "716.1; 722.3; 723.1.1; 901", fjournal = "Telecommunications (Americas Edition)", journalabr = "Telecommunications Am Ed", keywords = "Asynchronous transfer mode; Automated network management; Cable modems; Computer networks; Computer programming languages; Data mining; Electric relays; Internet appliances; Intranet; Java programming language; Local area networks; Modems; Personal communication systems; Personal satellite phones; Technology; Telecommunication; Telecommunication systems; Telecommunication technology; Voice over frame relay; Voice/data communication systems", pagecount = "6", } @Book{Flanagan:1996:JDG, author = "David Flanagan", title = "{JavaScript}: The Definitive Guide", publisher = pub-ORA, address = pub-ORA:adr, edition = "Beta", pages = "xv + 454", year = "1996", ISBN = "1-56592-193-3", ISBN-13 = "978-1-56592-193-1", LCCN = "QA76.73.J38 F555 1996; QA76.73.J39 F53 1996", bibdate = "Mon Apr 18 14:52:21 MDT 2005", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/java.bib; z3950.loc.gov:7090/Voyager", price = "US\$29.95", series = "A Nutshell handbook", URL = "http://www.oreilly.com/catalog/9781565921931", acknowledgement = ack-nhfb, subject = "JavaScript (Computer program language); Web servers; Object-oriented programming (Computer science)", } @Book{Flanagan:1996:JDGa, author = "David Flanagan", title = "{JavaScript}: The Definitive Guide: Beta Edition", publisher = pub-ORA, address = pub-ORA:adr, edition = "Beta", pages = "xv + 454", month = aug, year = "1996", ISBN = "1-56592-193-3", ISBN-13 = "978-1-56592-193-1", LCCN = "QA76.73.J38F555 1996", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.95", acknowledgement = ack-nhfb, keywords = "(computer program language); JavaScript; technology -- computers and computer technology", } @Book{Flanagan:1996:JN, author = "David Flanagan", title = "{Java} in a Nutshell", publisher = pub-SSC, address = pub-SSC:adr, pages = "????", month = dec, year = "1996", ISBN = "1-55659-218-3 (softcover)", ISBN-13 = "978-1-55659-218-8 (softcover)", LCCN = "????", bibdate = "Sat Sep 13 14:36:20 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$19.95", } @Book{Flanagan:1996:JND, author = "David Flanagan", title = "{Java} in a Nutshell: {A} Desktop Quick Reference for {Java} Programmers", publisher = pub-ORA, address = pub-ORA:adr, pages = "xix + 438", month = feb, year = "1996", ISBN = "1-56592-183-6", ISBN-13 = "978-1-56592-183-2", LCCN = "QA76.73.J38F553 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", price = "US\$14.95", series = "Nutshell handbook", URL = "http://www.ora.com/gnn/bus/ora/item/javanut.html; http://www.ora.com/info/java", acknowledgement = ack-nhfb, annote = "Covers Java 1.0. Contains an accelerated introduction to Java for C and C++ programmers who want to learn the language fast. Part 1. Introducing Java: How Java differs from C; Classes and objects in Java -- part 2. Programming with the Java API; Applets; Graphical user interfaces; Input and output; Networking; Advanced graphics and images; Advanced threads -- part 3. Java syntax; Events; Fonts, colors, and cursors; System properties and applet parameters; Applet security; Java- related HTML and HTTP syntax; Unicode standard; JDK development tools -- part 4. API quick reference; java.applet package; java.awt package; java.awt.peer package; java.io package; java.lang package; java.net package; java.util package; Java errors and exceptions -- part 5. API cross references; Class defined-in index; Method defined-in index; Subclass index; Implemented-by index; Returned-by index; Passed-to index; Thrown-by index.", keywords = "Java (Computer program language); Java (computer program language); Object-oriented programming (Computer science); technology -- computers and computer technology; World Wide Web servers", } @Book{Flanagan:1996:JNV, author = "David Flanagan", title = "{Java} in a Nutshell, Version {Fran{\c{c}}aise}", publisher = pub-ORA-IT, address = pub-ORA:adr, pages = "xxii + 492", month = oct, year = "1996", ISBN = "2-84177-009-5", ISBN-13 = "978-2-84177-009-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.editions-oreilly.fr/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "French translation by Serge Chaumette, Georges Eyrolles and Alain Miniussi. Includes CD-ROM.", price = "220 FF", URL = "http://www.editions-oreilly.fr/international/france/prog/javanut.html; http://www.ora.de/", acknowledgement = ack-nhfb, language = "French", } @Article{Flynn:1996:HJM, author = "Jim Flynn and Bill Clarke", title = "How {Java} Makes Network-Centric Computing Real --- {Java} is likely to have a profound impact on the way businesses manage application development by bringing about an entirely new model --- the network-centric model --- of {C/S} computing", journal = j-DATAMATION, volume = "42", number = "5", pages = "42--43", month = "????", year = "1996", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat Oct 12 18:17:17 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Datamation", keywords = "Client server computing; Java (Computer language); Network servers", } @Book{Flynn:1996:VJJ, author = "Jim Flynn and Bill Clarke", title = "{Visual J++ Java} Programming", publisher = pub-NRP, address = pub-NRP:adr, pages = "xvi + 666", month = dec, year = "1996", ISBN = "1-56205-602-6", ISBN-13 = "978-1-56205-602-5", LCCN = "QA76.73.J38F56 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/newriders/; http://www.amazon.com/exec/obidos/ISBN=1562056026/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$45.00", URL = "http://www.mcp.com/cgi-bin/bag?isbn=1-56205-602-6&last=/bookstore; http://www.mcp.com/nrp/", acknowledgement = ack-nhfb, dimensions = "9.09in x 7.39in x 1.79in", keywords = "Java (computer program language); Microsoft Visual J++", } @Misc{FMC:1996:JDW, author = "{Field and Marketing Communications}", title = "{Java} development on the {Web}", number = "20", publisher = "Office of Integrated Technologies, Indiana University-Purdue University Indianapolis", address = "Indianapolis, IN, USA", year = "1996", bibdate = "Fri May 31 08:36:17 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "1 videocassette (60 min.)", series = "Sunergy", acknowledgement = ack-nhfb, annote = "Off-air tape of a teleconference broadcast from Singapore and re-broadcast in the US on March 28, 1996. Edwin Hacking, director; Denise Marcucci, producer. John Gage, host and narrator. A panel of experts discuss national Internet policies and development technologies using Java programming language. VHS format.", keywords = "Computer software -- Development; Internet (Computer network); Internet (Computer network) -- Government policy; Java (Computer program language); World Wide Web (Information retrieval system)", } @Article{Forestier:1996:DMW, author = "J.-P. Forestier", title = "Data management in the {Web} context", journal = j-DATABASES-J, volume = "????", number = "4-5", pages = "8--15", month = jul # "-" # oct, year = "1996", CODEN = "DAJOFP", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7210 (Information services and centres); C6150N (Distributed systems software); C6140D (High level languages)", countrypub = "France", fjournal = "Databases Journal", keywords = "applications; authoring languages; business communication; client-server; commercial; Common Gateway Interface; customer server communication; data management; Internet; Intranet; Java language; languages; Microsoft; multimedia; multimedia computing; object-oriented; professional use; protocols; security of data; system security; systems; transactions; VBScript; World Wide Web", language = "French", treatment = "P Practical", } @InProceedings{Foster:1996:ETW, author = "I. Foster and S. Tuecke", title = "Enabling technologies for {Web}-based ubiquitous supercomputing", crossref = "IEEE:1996:PFIa", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210L (Computer communications); C6150N (Distributed systems software); C5620W (Other computer networks); C5440 (Multiprocessing systems); C6120 (File organisation); C6110P (Parallel programming)", conflocation = "Syracuse, NY, USA; 6--9 Aug. 1996", conftitle = "Proceedings of 5th IEEE International Symposium on High Performance Distributed Computing", corpsource = "Div. of Math. and Comput. Sci., Argonne Nat. Lab., IL, USA", keywords = "advanced networks; collaborative environments; communication; communication structures; computational power; data structures; dynamic; enabling technologies; end computers; global; Internet; Java; Java programming language; library; local environments; mid range computing systems; network operating systems; Nexus; NexusJava library; parallel machines; parallel programming; pointer; program control; remote high; remote service request mechanisms; smart instruments; structures; transportable code; Web based ubiquitous supercomputing", sponsororg = "IEEE Comput. Soc. Tech. Committee on Distributed Process.; Northeast Parallel Architectures Center; New York State Center for Adv. Technol. Comput. Applications and Software Eng. (CASE Center) at Syracuse Univ.; Rome Lab", treatment = "P Practical", } @InProceedings{Fox:1996:TWJ, author = "G. Fox and W. Furmanski", title = "Towards {Web\slash Java-based} high performance distributed computing-an evolving virtual machine", crossref = "IEEE:1996:PFIa", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7430 (Computer engineering); C6150N (Distributed systems software)", conflocation = "Syracuse, NY, USA; 6--9 Aug. 1996", conftitle = "Proceedings of 5th IEEE International Symposium on High Performance Distributed Computing", corpsource = "Northeast Parallel Archit. Center, Syracuse Univ., NY, USA", keywords = "3D; authoring languages; Bridge-based Collaboratory; CareWeb; distributed interpretative virtual machine architecture; distributed processing; evolutionary path; Information Infrastructure; Internet; Java-based high-performance distributed computing; National; Northeast; object-oriented languages; Parallel Architectures Center; virtual machines; Visible Human; Web technology prototypes; WebFlow; WebVM; World Wide Web-based distributed environments", sponsororg = "IEEE Comput. Soc. Tech. Committee on Distributed Process.; Northeast Parallel Architectures Center; New York State Center for Adv. Technol. Comput. Applications and Software Eng. (CASE Center) at Syracuse Univ.; Rome Lab", treatment = "A Application; G General Review", } @Book{Fraize:1996:JSP, author = "Scott Fraize and Chris Laurel and Ryan Watkins", title = "{Java} Style: Programming {Web} Pages with {Java}\slash {HotJava}", publisher = pub-ZD, address = pub-ZD:adr, pages = "400", year = "1996", ISBN = "1-56276-368-7", ISBN-13 = "978-1-56276-368-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/zdpress/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35", URL = "http://www.mcp.com/zdpress", acknowledgement = ack-nhfb, } @Book{Fraize:1996:PMP, author = "Scott Fraize", title = "{PC Magazine} Programming {Java} Applets", publisher = pub-ZD, address = pub-ZD:adr, pages = "????", month = mar, year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$34.99", acknowledgement = ack-nhfb, keywords = "Java (computer program language); technology -- computers and computer technology", } @Book{Fraizer:1996:JAR, author = "Colin Fraizer and Jill Bond", title = "{Java API} Reference: java.applet and java.awt {API} Packages", publisher = pub-NRP, address = pub-NRP:adr, pages = "xxviii + 383", day = "17", month = jul, year = "1996", ISBN = "1-56205-598-4", ISBN-13 = "978-1-56205-598-1", LCCN = "QA76.73.J38 F73 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/newriders/; http://www.amazon.com/exec/obidos/ISBN=1562055984/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.99", URL = "http://www.mcp.com/295124552671766/cgi-bin/bag?isbn=1-56205-598-4&last=/bookstore; http://www.mcp.com/nrp/", acknowledgement = ack-nhfb, alttitle = "Java.applet and java.awt API packages", annote = "A complete reference to Java's essential API packages", dimensions = "9.05in x 7.33in x 1.09in", keywords = "Java (Computer program language)", paperback = "yes", xxauthor = "Jill Bond and Colin Fraizer", xxnote = "This ISBN occurs under \cite{Fraizer:1996:JAR,NewRiders:1996:JAR}. It also occurs with the spelling variant ``Frazer'' instead of ``Fraizer''. Library of Congress has authors: Colin Frazer, Jill Bond", } @Book{FraminanTorres:1996:JMI, author = "Jos{\'e} Manuel {Frami{\~n}{\'a}n Torres}", title = "{Java}: Manuales Imprescindibles", publisher = pub-ANAYA-MULTIMEDIA, address = pub-ANAYA-MULTIMEDIA:adr, pages = "336", year = "1996", ISBN = "84-415-0056-8", ISBN-13 = "978-84-415-0056-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.anaya.es/multimedia/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", price = "2995 Ptas.", URL = "http://www.anaya.es/Catalogo/CGA?act=L&art=2311044&ed=2300; http://www.anaya.es/multimedia/; http://www.anayamultimedia.es/cgi-multi/notas_prensa.pl?2311044&*2&torres&1", acknowledgement = ack-nhfb, language = "Spanish", xxtitle = "{Java} Manual Imprescindible", } @Article{Freed:1996:CVC, author = "G. Freed", title = "Captioning video clips in the {World Wide Web}", journal = j-FIRST-MONDAY, volume = "1", number = "3", pages = "??--??", day = "2", month = "????", year = "1996", ISSN = "1396-0466", ISSN-L = "1396-0458", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6130M (Multimedia); C5620W (Other computer networks); C7850 (Computer assistance for persons with handicaps)", countrypub = "Denmark", fjournal = "First Monday", keywords = "access technologies; Accessible Media; captioned; captioning QuickTime video clips; deaf computer users; disabilities; handicapped aids; Internet; low literacy; movies; multimedia systems; National Center for; NCAM; World Wide Web", treatment = "G General Review; P Practical", } @Book{Freedman:1996:JP, author = "Edie (?) Freedman and Rinaldo DiGiorgio", title = "{Java} Programming", publisher = pub-ORA, address = pub-ORA:adr, pages = "????", year = "1996", ISBN = "1-56592-185-2", ISBN-13 = "978-1-56592-185-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", price = "????", URL = "http://www.ora.com/", acknowledgement = ack-nhfb, } @Book{Freedman:1996:JPD, author = "Edie (?) Freedman and ?. DiGiorgio", title = "{Java} Programming", publisher = pub-ORA, address = pub-ORA:adr, pages = "????", year = "1996", ISBN = "1-56592-185-2", ISBN-13 = "978-1-56592-185-6", LCCN = "????", bibdate = "Sat Jun 8 06:59:57 MDT 1996", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.oreilly.com/catalog/9781565921856", acknowledgement = ack-nhfb, } @InProceedings{Freedman:1996:NCA, author = "R. S. Freedman and R. {Di Giorgio}", title = "New computational architectures for pricing derivatives", crossref = "IEEE:1996:PICa", pages = "14--19", month = "????", year = "1996", bibdate = "Fri Jan 3 07:17:51 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Inductive Solutions Inc., New York, NY, USA", classcodes = "C7120 (Financial computing); C1140G (Monte Carlo methods); C6150N (Distributed systems software); C5620W (Other computer networks)", conflocation = "New York City, NY, USA; 24--26 March 1996", conftitle = "IEEE/IAFE 1996 Conference on Computational Intelligence for Financial Engineering (CIFEr)", corpsource = "Inductive Solutions Inc., New York, NY, USA", keywords = "American put option; authorized; automatic speed-up; benchmark problem; binomial lattice; computational architectures; computer network infrastructure; computer networks; cost-; costing; derivative; derivative calculator applet; distributed algorithms; effective computation; environments; executable; expected present value; financial computing; financial data processing; interest rate; Internet; Java; Java-enabled Web Browser; machine-independent method; Monte Carlo method; Monte Carlo methods; parallelism; pricing derivatives; scenarios; securities trading; security; stochastic processes; structured security; ultimate computing topology; updatable method; users; World Wide Web", sponsororg = "IEEE Neural Networks Council; Int. Association of Financial Eng", treatment = "P Practical", } @Book{Freeman:1996:AJO, author = "Adam Freeman and Darrel Ince", title = "Active {Java}: {Object-Oriented} Programming for the {World Wide Web}", publisher = pub-AW, address = pub-AW:adr, pages = "xii + 235", day = "1", month = mar, year = "1996", ISBN = "0-201-40370-6", ISBN-13 = "978-0-201-40370-1", LCCN = "QA76.73.J38 F74 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0201403706/wholesaleproductA/; http://www.aw.com/cseng/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$25.77", URL = "http://www.aw.com/cseng/authors/freeman.a/actjava/", acknowledgement = ack-nhfb, dimensions = "9.18in x 6.73in x 0.60in", keywords = "Java (Computer program language); Multimedia systems; Object-oriented programming (Computer science); World Wide Web (Information retrieval system)", } @InProceedings{Freytag:1996:JIA, author = "A. Freytag", title = "{Java} Internationalization Architecture", crossref = "UC:1996:SDI", pages = "A3--??", year = "1996", bibdate = "Thu Aug 20 07:03:28 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "Internet; software development; Unicode", } @InProceedings{Frick:1996:FDI, author = "O. Frick", title = "Formal description and interpretation of coordination protocols for teamwork", crossref = "Spaniol:1996:TDS", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6150M (Protocols); B6210L (Computer communications); B6210R (Multimedia communications); C6130G (Groupware); C5640 (Protocols); C6155 (Computer communications software); C6110F (Formal methods); C6150N (Distributed systems software)", conflocation = "Aachen, Germany; 1--2 Oct. 1996", conftitle = "Trends in Distributed Systems. CORBA and Beyond. International Workshop TreDS '96. Proceedings", corpsource = "Inst. fur Telematik, Karlsruhe Univ., Germany", countrypub = "Germany", keywords = "abstract formal description techniques; abstract user-; application sharing; centred description; coordination; design method; distributed computing; distributed Java implementation; distributed processing; formal specification; groupware; multimedia communication; multimedia communication services; protocol; protocols; SDL specification; service quality; services; state-based specification; teamwork applications; telecommunication; user centred design", treatment = "P Practical", } @Book{Friedel:1996:CPF, author = "David H. {Friedel, Jr.} and Joshua Kerievsky and Anthony Potts and John Rodley", title = "{Caf{\'e}} Programming {FrontRunner}", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "xvii + 430", year = "1996", ISBN = "1-57610-003-0", ISBN-13 = "978-1-57610-003-5", LCCN = "QA76.73.J38C34 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.99", URL = "http://www.alexandria-home.com/library/1-57610-003-0cover.htm; http://www.coriolis.com/; http://www.coriolis.com/site/msie/books/ind/cafefrt.htm", acknowledgement = ack-nhfb, keywords = "Java (computer program language); technology -- computers and computer technology", } @Book{Friedel:1996:JP, author = "David H. Friedel and Anthony Potts", title = "{Das Java-Programmierhandbuch}", publisher = pub-TEWI, address = pub-TEWI:adr, pages = "430", year = "1996", ISBN = "3-89362-446-5", ISBN-13 = "978-3-89362-446-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.tewi.de/", note = "Includes CD-ROM.", price = "79 DM", URL = "http://www.tewi.de/scripts/tewi/details_ISBN.idc?ISBN=3-89362-446-5", acknowledgement = ack-nhfb, language = "German", } @Book{Frohlich:1996:LNS, author = "Marcus Fr{\"o}hlich", title = "{Lernen Sie in Nur 14 Stunden Java Applets zu Programmieren und Einzusetzen}", publisher = pub-TEWI, address = pub-TEWI:adr, pages = "191", year = "1996", ISBN = "3-89362-465-1", ISBN-13 = "978-3-89362-465-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.tewi.de/", note = "Includes CD-ROM.", price = "39 DM", URL = "http://www.tewi.de/scripts/tewi/details_ISBN.idc?ISBN=3-89362-465-4", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.tewi.de/", } @InProceedings{Fuchs:1996:LTE, author = "M. Fuchs", title = "Let's talk: extending the {Web} to support collaboration", crossref = "IEEE:1996:PWE", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6130G (Groupware); C7210 (Information services and centres); C5620W (Other computer networks); C6150N (Distributed systems software); C6170 (Expert systems); C6140D (High level languages)", conflocation = "Stanford, CA, USA; 19--21 June 1996", conftitle = "Proceedings of WET ICE '96. IEEE 5th Workshop on Enabling Technologies; Infrastucture for Collaborative Enterprises", corpsource = "Walt Disney Imagineering, Glendale, CA, USA", keywords = "agents; browser; cognizant agents; collaboration support; communication; cooperative systems; domain-specific little; groupware; IDL; independent computational agents; independent human; Internet; language semantics; languages; local applications; messages; page description; scalable intelligence; servers; SGML; software agents; Web extension; World Wide Web", sponsororg = "IEEE Comput. Soc.; Concurrent Eng. Res. Center, West Virginia Univ.; IEEE Commun. Soc.; ACM SIGOIS", treatment = "P Practical", } @Article{Gameiro:1996:NID, author = "G. Gameiro", title = "Networking intelligent devices", journal = j-DDJ, volume = "21", number = "2", pages = "68, 70, 72, 74, 104--105", month = feb, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Jan 3 07:17:51 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", keywords = "Java", } @Article{Ganssle:1996:BP, author = "Jack G. Ganssle", title = "Break Points", journal = j-EMBED-SYS-PROG, volume = "9", number = "8", pages = "89--??", day = "1", month = aug, year = "1996", CODEN = "EYPRE4", ISSN = "1040-3272", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Is Java Ready for Prime Time?", acknowledgement = ack-nhfb, fjournal = "Embedded Systems Programming", } @Article{Garfinkel:1996:ACB, author = "Simson L. Garfinkel", title = "Not All {CPUs} Are Built Alike", journal = j-WEBSERVER, volume = "1", number = "2", pages = "12, 14", month = jul # "\slash " # aug, year = "1996", ISSN = "1087-4232", bibdate = "Wed Aug 21 10:51:24 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses the ShBoom CPU chip from Patriot Scientific Corporation; the chip is suited for {Java} and {PostScript}.", URL = "http://www.cpg.com", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Garfinkel:1996:JCG, author = "Simson L. Garfinkel", title = "{Java} Clones Gain", journal = j-SUNEXPERT, volume = "7", number = "9", pages = "6, 8", month = sep, year = "1996", ISSN = "1053-9239", bibdate = "Fri Sep 20 11:14:08 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses Microsoft's own implementation of a Java Virtual Machine, anda just-in-time (JIT) compiler now bundled into Microsoft Internet Explorer Version 3.0, and into a future version of the Windows operating system. Apple is collaborating with Natural Intelligence Inc. on a separate Java runtime system.", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Garfinkel:1996:JSC, author = "Simson L. Garfinkel", title = "{Java} Security Cracked: Again and Again", journal = j-WEBSERVER, volume = "1", number = "2", pages = "8--8", month = jul # "\slash " # aug, year = "1996", ISSN = "1087-4232", bibdate = "Wed Aug 21 10:49:23 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cpg.com", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Garfinkel:1996:JW, author = "Simson L. Garfinkel", title = "{Java} War", journal = j-SUNEXPERT, volume = "7", number = "9", pages = "14--15", month = sep, year = "1996", ISSN = "1053-9239", bibdate = "Fri Sep 20 11:14:08 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses the conflict and competition between Sun's SunSoft and JavaSoft companies in the Java book market: the SunSoft Press Java Series \cite{Cornell:1996:CJa,Jackson:1996:JE,Pew:1996:IJ,vanderLinden:1996:JJ} is done with Prentice-Hall, and the JavaSoft Java series \cite{Arnold:1996:JPL,Campione:1996:JTO,Chan:1996:JCL,Gosling:1996:JAPa,Gosling:1996:JAPb,Gosling:1996:JLS,Lindholm:1997:JVM} from Addison-Wesley.", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Garfinkel:1996:NJ, author = "Simson L. Garfinkel", title = "{NEO} and {Java}", journal = j-WEBSERVER, volume = "1", number = "2", pages = "6, 8", month = jul # "\slash " # aug, year = "1996", ISSN = "1087-4232", bibdate = "Wed Aug 21 10:46:09 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cpg.com", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Garrett:1996:ENC, author = "Doug Garrett", title = "Examining the {Nutmeg} Class Library", journal = j-DDJ, volume = "21", number = "10", pages = "80, 82, 84, 86", day = "1", month = oct, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "The Nutmeg class library for Java is an implementation of a Smalltalk Collection class library. Thought Inc.'s Nutmeg provides a variety of ``smart,'' flexible array type objects to manage groups or sets of objects", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6115 (Programming support); C6140D (High level languages)", fjournal = "Dr. Dobb's Journal of Software Tools", keywords = "flexible array type objects; Java; library; Nutmeg class library; object management; object oriented language; object oriented programming; object-oriented languages; object-oriented programming; reuse; Smalltalk; Smalltalk collection class; software; software libraries; software reusability; Thought Incorporated", treatment = "P Practical", } @Article{Gaudin:1996:FAF, author = "Sharon Gaudin", title = "Firms add flavor to {Java} menu: {IBM} to develop architecture to link {OpenDoc} and {Java}", journal = j-COMPUTERWORLD, volume = "30", number = "23", pages = "14--14", day = "3", month = jun, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Wed Jun 05 16:52:29 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1996:HGU, author = "Sharon Gaudin and April Jacobs", title = "{HP} gives its {Unix} system a {Java} jolt", journal = j-COMPUTERWORLD, volume = "30", number = "47", pages = "53, 57", day = "18", month = nov, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Sat Nov 23 17:30:19 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Notes that HP is readying the HP-UX Java Developer Kit, the HP-UX Java Virtual Machine, and an HP-UX Just-In-Time compiler for Java. The first two are available now at http://www.hp.com/go/JAVA.", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1996:IMI, author = "Sharon Gaudin and April Jacobs", title = "{IBM} may incorporate {Java} into its network computer", journal = j-COMPUTERWORLD, volume = "30", number = "46", pages = "14--14", day = "11", month = nov, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Sat Nov 16 14:35:37 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1996:JHB, author = "Sharon Gaudin", title = "{JavaSoft} heats up {Beans} tool kit beta", journal = j-COMPUTERWORLD, volume = "30", number = "50", pages = "3--3", day = "9", month = dec, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Thu Dec 19 09:56:15 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Notes that Sun will release a beta version of the Beans Development Kit (BDK) at Internet World '96.", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1996:JHW, author = "Sharon Gaudin", title = "{Java} hits {Wall Street}", journal = j-COMPUTERWORLD, volume = "30", number = "42", pages = "51, 60", day = "14", month = oct, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Nov 08 15:30:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1996:JSD, author = "Sharon Gaudin", title = "{JavaScript} standard due by summer", journal = j-COMPUTERWORLD, volume = "30", number = "49", pages = "139--139", day = "2", month = dec, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Sat Dec 28 18:12:52 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1996:JSS, author = "Sharon Gaudin", title = "A jump start for slow {Java} apps: {Microsoft} releases {Java} plug-in for {Navigator}; {Netscape} plans upgrade", journal = j-COMPUTERWORLD, volume = "30", number = "48", pages = "2--2", day = "25", month = nov, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Dec 30 08:26:34 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1996:LBJ, author = "Sharon Gaudin and Frank Hayes", title = "Language Barriers: In 1997, {Java} and {ActiveX} will slug it out for corporate dominance", journal = j-COMPUTERWORLD, volume = "30", number = "52", pages = "38, 39", day = "23", month = dec, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Jan 03 07:04:18 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1996:MEJ, author = "Sharon Gaudin and Frank Hayes", title = "{Microsoft} eyes {Java} threat: will license {Office} language", journal = j-COMPUTERWORLD, volume = "30", number = "22", pages = "1, 14", day = "27", month = may, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Jun 03 11:18:07 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1996:MJC, author = "Sharon Gaudin", title = "{Microsoft}'s {Java} compiler plans unclear", journal = j-COMPUTERWORLD, volume = "30", number = "50", pages = "53, 58", day = "9", month = dec, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Thu Dec 19 09:56:15 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1996:NMR, author = "Sharon Gaudin", title = "{Netscape}, {Microsoft} ready {Java} for {Win 3.1}", journal = j-COMPUTERWORLD, volume = "30", number = "46", pages = "6--6", day = "11", month = nov, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Sat Nov 16 14:35:37 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1996:SRJ, author = "Sharon Gaudin", title = "{Sun} ripens {JavaBeans} ahead of schedule", journal = j-COMPUTERWORLD, volume = "30", number = "43", pages = "8--8", day = "21", month = oct, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Nov 08 15:30:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1996:SSB, author = "Sharon Gaudin", title = "{Sun} seeks a better {Java} for {Windows}", journal = j-COMPUTERWORLD, volume = "30", number = "49", pages = "3--3", day = "2", month = dec, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Sat Dec 28 18:09:04 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1996:TGJ, author = "Sharon Gaudin", title = "Tools to get {Java} perking faster", journal = j-COMPUTERWORLD, volume = "30", number = "46", pages = "54, 56", day = "11", month = nov, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Sat Nov 16 14:39:51 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Notes that Sun expects to ship a just-in-time compiler for Java in the first half of 1997, and a native compiler in the second half of 1997. Project Studio with a drag-and-drop Java application builder, and Project Ice-T for building and porting client/server applications, are expected in the second quarter of 1997,", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1996:VBJ, author = "Sharon Gaudin and Frank Hayes", title = "{Visual Basic}, {Java} vie for 'net crown", journal = j-COMPUTERWORLD, volume = "30", number = "24", pages = "1, 109", day = "10", month = jun, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Aug 19 12:08:00 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Geary:1996:PHP, author = "David Geary", title = "{Prentice Hall PTR\slash Sunsoft Press Graphic Java}", publisher = pub-PH, address = pub-PH:adr, pages = "????", month = sep, year = "1996", ISBN = "0-614-20319-8", ISBN-13 = "978-0-614-20319-6", LCCN = "????", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.95", acknowledgement = ack-nhfb, keywords = "Java (computer program language)", } @InProceedings{Geist:1996:APP, author = "G. A. Geist", title = "Advanced programming in {PVM}", crossref = "Bode:1996:PVM", pages = "1--??", year = "1996", bibdate = "Wed Apr 16 06:39:19 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classification = "C6110P (Parallel programming); C6115 (Programming support); C6150G (Diagnostic, testing, debugging and evaluating systems); C6150N (Distributed systems software)", corpsource = "Oak Ridge Nat. Lab., TN, USA", keywords = "advanced programming; application performance; applications; CUMULVS; distributed computing applications; fault tolerance; interactive; JavaPVM; message passing; parallel computing; parallel programming; Parallel Virtual Machine; performance evaluation; plug-ins; program debugging; PVM; software; software fault tolerance; software packages; TkPVM; virtual machines", pubcountry = "Germany", treatment = "P Practical", } @Book{Gesing:1996:JWW, author = "Ted Gesing and Jeremy Schneider", title = "{Javascript} for the {World Wide Web}: Visual Quickstart Guide", publisher = pub-PEACHPIT, address = pub-PEACHPIT:adr, pages = "ix + 182", day = "1", month = dec, year = "1996", ISBN = "0-201-68814-X", ISBN-13 = "978-0-201-68814-6", LCCN = "QA76.73.J38G47 1997", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=020168814X/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$17.95", series = "Visual quickstart guide", acknowledgement = ack-nhfb, dimensions = "8.97in x 7in x 0.39in", keywords = "Java (computer program language); JavaScript (Computer program language); World Wide Web (Information retrieval system)", paperback = "yes", } @Article{Gill:1996:JTS, author = "P. Gill", title = "{Java} tools are still brewing", journal = j-INFORMATION-WEEK, volume = "????", number = "594", pages = "1A, 3A-4A, 8A", day = "26", month = "????", year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D5000 (Office automation --- computing); D2010 (Business and professional)", fjournal = "Information Week", keywords = "application development; corporate programmers; corporate users; first-generation Java development tools; IBM; Internet; Internet application development; Java programming language; Marimba; Microsoft; object-oriented; object-oriented languages; production-quality applications; programming; software maker; software tools; Sun Microsystems; World Wide Web", treatment = "P Practical", } @Article{Gillin:1996:CJJ, author = "Paul Gillin", title = "Cooling down {Java} --- {Java} isn't the programmer's magic bullet", journal = j-COMPUTERWORLD, volume = "30", number = "14", pages = "36--??", month = "????", year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gillin:1996:LJC, author = "Paul Gillin", title = "Let {Java} cool", journal = j-COMPUTERWORLD, volume = "30", number = "14", pages = "36--36", day = "1", month = apr, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Thu Apr 11 11:19:20 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Girdley:1996:WPJ, author = "Michael Girdley and Kathryn A. Jones and others", title = "{Web} Programming With {Java}", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxii + 481", month = sep, year = "1996", ISBN = "1-57521-113-0", ISBN-13 = "978-1-57521-113-8", LCCN = "TK5105.888.G57 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575211130.html; http://www.amazon.com/exec/obidos/ISBN=1575211130/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99, CDN\$56.95, UK\pounds 37.50", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575211130.html; http://www.mcp.com/cgi-bin/bag?isbn=1-57521-113-0&last=/bookstore; http://www.mcp.com/samsnet/", acknowledgement = ack-nhfb, dimensions = "9.13in x 7.32in x 1.28in", keywords = "Java (computer program language); technology -- computers and computer technology; World wide Web (information retrieval system)", paperback = "yes", } @InProceedings{Godwin-Jones:1996:IWC, author = "R. Godwin-Jones", title = "Interactive {Webbing}: {CGI} scripting, {JavaScript} and linked programs for language learning", crossref = "Borchardt:1996:CAS", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7810C (Computer-aided instruction); C7820 (Humanities computing); C6130M (Multimedia); C7210 (Information services and centres)", conflocation = "Albuquerque, NM, USA; 27 May-1 June 1996", conftitle = "CALICO '96 Annual Symposium. Proceedings of the Computer Assisted Language Instruction Consortium 1996 Annual Symposium `Distance Learning'", corpsource = "Virginia Commonwealth Univ., Richmond, VA, USA", keywords = "CGI scripting; computer aided instruction; HTML forms; humanities; hypermedia; interactive Web pages; Internet; JavaScript; language; learning; linked programs; multimedia computing; multimedia materials; World-Wide Web", treatment = "A Application; P Practical", } @Article{Goldammer:1996:HCJ, author = "G. Goldammer", title = "{HTML-script} calls {Java-applet}\ldots{}a new development technique under a software- and applications-technology configuration", journal = j-IM-INFORMATION-MANAGEMENT, volume = "11", number = "3", pages = "6--14", day = "2", month = "????", year = "1996", ISSN = "0930-5181", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6150N (Distributed systems software); C6130D (Document processing techniques); C6130M (Multimedia); C6140D (High level languages); C6110B (Software engineering techniques); C6180 (User interfaces); C6155 (Computer communications software)", countrypub = "Germany", fjournal = "IM Information Management", keywords = "application developments; applications technology; client-server systems; computer communications software; configuration; Development, Leipzig University, Germany; embedded Java programs; engineering; HTML scripts; hypermedia; Hypertext Markup Language; Institute of Software and System; intelligent user dialogue; Internet; Java applets; JavaScript; multimedia; online applications; page description languages; programming; software; software development technique; software engineering; software technology configuration; subroutines; technology; telematics; user interfaces; Wide Web; World", language = "German", treatment = "P Practical", } @Book{Golla:1996:EHK, author = "Andreas F. Golla", title = "{Erste-Hilfe-Kasten Java: HotJava Developers Kit V1.0 Beta}", publisher = pub-SYBEX-VERLAG, address = pub-SYBEX-VERLAG:adr, pages = "7", year = "1996", ISBN = "3-8155-9926-1", ISBN-13 = "978-3-8155-9926-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.de/", note = "Includes CD-ROM.", price = "40 DM", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.sybex.de/", } @Book{Goodman:1996:DGJ, author = "Danny Goodman", title = "{Danny} Goodman's {JavaScript} Handbook", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xxi + 520", year = "1996", ISBN = "0-7645-3003-8", ISBN-13 = "978-0-7645-3003-6", LCCN = "QA76.73.J39G66 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0764530038/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$34.99", URL = "http://db.www.idgbooks.com/database/book/isbn/generic-book.tmpl?query=0-7645-3003-8", acknowledgement = ack-nhfb, dimensions = "9.19in x 7.34in x 1.34in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Book{Goodman:1996:JB, author = "Danny Goodman", title = "{JavaScript Bible}", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, edition = "Second", pages = "xxvii + 607", year = "1996", ISBN = "0-7645-3022-4", ISBN-13 = "978-0-7645-3022-7", LCCN = "QA76.73.J39G66 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0764530224/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99", acknowledgement = ack-nhfb, dimensions = "9.18in x 7.35in x 1.55in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Book{Goodman:1996:PAJ, author = "Danny Goodman", title = "Programmer avec {JavaScript}", publisher = pub-SYBEX-VERLAG, address = pub-SYBEX-VERLAG:adr, pages = "xix + 546", year = "1996", ISBN = "2-7361-2212-7", ISBN-13 = "978-2-7361-2212-6", LCCN = "????", bibdate = "Thu Aug 14 18:51:01 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM. French translation of \cite{Goodman:1996:DGJ}.", URL = "????", acknowledgement = ack-nhfb, language = "French", xxnote = "Check publisher: pub-SYBEX-VERLAG or pub-SYBEX-FRANCE??", } @InProceedings{Goppold:1996:LTS, author = "A. Goppold", title = "The {Leibniz TLSI}: a secondary macro programming interface and universal {ASCII} user interface shell for hypermedia", crossref = "Sanchez:1996:CAL", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6180 (User interfaces); C6150C (Compilers, interpreters and other processors); C7810C (Computer-aided instruction); C6130M (Multimedia); C6160Z (Other DBMS)", conflocation = "San Sebastian, Spain; 29--31 July 1996", conftitle = "Proceedings of International Conference on Computer Aided Learning and Instruction in Science and Engineering", corpsource = "FAW Ulm, Germany", countrypub = "Germany", keywords = "ASCII readable definition files; C; compatible applications; courseware; courseware applications; End User; EUPL; flexible; help; hypermedia; information; Inter-Actor technology; Java environment; Java Virtual Machine; key bindings; Leibniz TLSI; macro programmable user shell; macros; menu layouts; program control structures; programming access; programming interface; Programming Language; secondary macro programming interface; secondary programming facility; TLSI technology; universal ASCII user interface shell; user interfaces", sponsororg = "Udako Ikastaroak/Fundacion Cursos de Verano; Euskal Herriko Unib/Univ. del Pais Vasco; et al", treatment = "P Practical", } @Article{Gordon:1996:JNB, author = "B. Gordon", title = "{Java} --- a new brew for educators, administrators and students", journal = j-EDUCOM-REV, volume = "31", number = "2", pages = "44--46", month = mar # "-" # apr, year = "1996", CODEN = "EDREEW", ISSN = "1045-9146", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Acad. and Res. Comput., Sun Microsyst. Comput. Co., USA", classcodes = "C7210 (Information services and centres); C6110J (Object-oriented programming); C6140D (High level languages); C7810C (Computer-aided instruction); C7250N (Front end systems for online searching)", corpsource = "Acad. and Res. Comput., Sun Microsyst. Comput. Co., USA", fjournal = "Educom review", keywords = "animation; browsers; computer animation; educational computing; home pages; HotJava; industry; interactive; interactive system; Internet; Java; Microsystems; Mosaic browser; Navigator; Netscape; object oriented programming language; object-; object-oriented languages; online front-ends; Oracle; oriented programming; PowerBrowser; Spyglass; standard; students; Sun; systems; World Wide Web; World Wide Web browser", treatment = "P Practical", } @Misc{Gosling:1996:J, author = "James Gosling and Arthur {van Hoff}", title = "{Java}", publisher = pub-UNIV-VIDEO-COMM, address = pub-UNIV-VIDEO-COMM:adr, year = "1996", bibdate = "Wed Oct 2 18:55:05 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "2 videocassettes (ca. 167 min.)", series = "Distinguished lecture series (Stanford, CA)", acknowledgement = ack-nhfb, annote = "Sponsored by Sun Microsystems, Inc. Presenter: James Gosling, Arthur Van Hoff. Lecture describes Sun's Java Programming Language as a new object-oriented programming language developed by Sun Microsystems to solve a number of problems in modern programming practice and to provide a programming language for the internet. Java runs on any hardware and software platform. VHS format.", keywords = "Java (Computer program language); Object-oriented programming (Computer science)", } @Book{Gosling:1996:JABa, author = "James Gosling and Frank Yellin and {the Java-Team}", title = "{Das Java API, Band 1: Die Basispakete}", publisher = pub-AW, address = pub-AW:adr, pages = "xxxvii + 441", year = "1996", ISBN = "3-8273-1040-7", ISBN-13 = "978-3-8273-1040-8", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.addison-wesley.de/katalog; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "German translation of \cite{Gosling:1996:JAPa}.", price = "89,90 DM", URL = "http://www.addison-wesley.de/katalog/item.ppml?textexpr=Java&id=00075", acknowledgement = ack-nhfb, language = "German", url-author = "http://java.sun.com/people/jag/", url-publisher = "http://www.addison-wesley.de/", } @Book{Gosling:1996:JABb, author = "James Gosling and Frank Yellin and {the Java-Team}", title = "{Das Java API: Band 2: Das Window Toolkit und Applets}", publisher = pub-AW, address = pub-AW:adr, pages = "xxxvii + 367", year = "1996", ISBN = "3-8273-1084-9", ISBN-13 = "978-3-8273-1084-2", LCCN = "????", bibdate = "Tue Aug 19 08:32:53 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.addison-wesley.de/katalog; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "German translation of \cite{Gosling:1996:JAPb}.", price = "79,90 DM", URL = "http://www.addison-wesley.de/katalog/item.ppml?textexpr=Java&id=00076", acknowledgement = ack-nhfb, language = "German", } @Book{Gosling:1996:JAPa, author = "James Gosling and Frank Yellin and {The Java Team}", title = "The {Java} Application Programming Interface. Vol. 1: Core packages", publisher = pub-AW, address = pub-AW:adr, pages = "494 (or 600??)", year = "1996", ISBN = "0-201-63453-8", ISBN-13 = "978-0-201-63453-2", LCCN = "QA76.73.J38G67 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0201634538/wholesaleproductA/; http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35.95", series = "The Java Series", URL = "http://www.aw.com/cp/javaseries.html; http://www.aw.com/cseng/titles/0-201-63453-8/", acknowledgement = ack-nhfb, dimensions = "9.19in x 7.42in x 0.83in", keywords = "computers and computer technology; Java (computer program language); Java (Computer program language); programming languages (electronic computers); technology --", } @Book{Gosling:1996:JAPb, author = "James Gosling and Frank Yellin and {The Java Team}", title = "The {Java} Application Programming Interface. Vol 2: Window Toolkit and Applets", publisher = pub-AW, address = pub-AW:adr, pages = "406", year = "1996", ISBN = "0-201-63459-7", ISBN-13 = "978-0-201-63459-4", LCCN = "QA76.73.J38G67 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0201634597/wholesaleproductA/; http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35.95", series = "The Java Series", URL = "http://www.aw.com/cp/javaseries.html; http://www.aw.com/cseng/titles/0-201-63459-7/", acknowledgement = ack-nhfb, dimensions = "9.25in x 7.55in x 0.77in", keywords = "Java (Computer program language)", } @TechReport{Gosling:1996:JLE, author = "James Gosling and Henry McGilton", title = "The {Java} Language Environment: {A} White Paper", type = "Technical Report", institution = pub-SUN, address = pub-SUN:adr, pages = "????", month = oct, year = "1996", bibdate = "Thu Nov 07 09:33:34 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Book{Gosling:1996:JLS, author = "James Gosling and Bill Joy and Guy L. Steele", title = "The {Java} Language Specification", publisher = pub-AW, address = pub-AW:adr, pages = "xxv + 825", year = "1996", ISBN = "0-201-63451-1", ISBN-13 = "978-0-201-63451-8", LCCN = "QA76.73.J38G68 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0201634511/wholesaleproductA/; http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$36.75", series = "The Java Series", URL = "http://www.aw.com/cp/javaseries.html; http://www.aw.com/cseng/titles/0-201-63451-1/", acknowledgement = ack-nhfb, dimensions = "7.38in x 9.19in x 1.25in", keywords = "computers and computer technology; Java (Computer program language); Java (computer program language); programming languages (electronic computers); technology --", paperback = "yes", } @Misc{Gosling:1996:JLT, author = "James Gosling", title = "{Java} language tutorial: your first jolt", publisher = pub-UNIV-VIDEO-COMM, address = pub-UNIV-VIDEO-COMM:adr, year = "1996", bibdate = "Wed Oct 2 18:55:05 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "1 videocassette (82 min.)", acknowledgement = ack-nhfb, alttitle = "Breakout sessions", keywords = "Java (Computer program language)", } @Article{Graham:1996:JPE, author = "John R. Graham", title = "{Java} Programming: Exceptions and Applets", journal = j-WEBSERVER, volume = "1", number = "3", pages = "38--43", month = sep # "\slash " # oct, year = "1996", ISSN = "1087-4232", bibdate = "Tue Dec 03 07:46:39 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cpg.com", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Graham:1996:JPG, author = "John R. Graham", title = "{Java} Programming: Getting a Handle on Class and Scope", journal = j-WEBSERVER, volume = "1", number = "2", pages = "44--49", month = jul # "\slash " # aug, year = "1996", ISSN = "1087-4232", bibdate = "Wed Aug 21 10:55:53 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cpg.com", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Graham:1996:JPJ, author = "John R. Graham", title = "{Java} Programming: Java Classes", journal = j-WEBSERVER, volume = "1", number = "1", pages = "52--54, 56, 58, 60", month = mar # "\slash " # jun, year = "1996", ISSN = "1087-4232", bibdate = "Fri May 31 11:21:20 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cpg.com", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Graham:1996:JPT, author = "John R. Graham", title = "{Java} Programming: Threads and Network Communication", journal = j-WEBSERVER, volume = "1", number = "4", pages = "34--36, 38, 39", month = nov # "\slash " # dec, year = "1996", ISSN = "1087-4232", bibdate = "Tue Dec 03 07:02:15 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cpg.com", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Greenberg:1996:JAX, author = "Ross M. Greenberg", title = "{Java} or {Active X}? Maybe both", journal = j-COMPUTERWORLD, volume = "30", number = "39", pages = "98--98", day = "23", month = sep, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Nov 08 15:30:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Grehan:1996:BBH, author = "Rick Grehan", title = "Beyond the Bouncing Heads: Use {JFactory} to quickly assemble {Java} applications", journal = j-BYTE, volume = "21", number = "10", pages = "216--216", month = oct, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Thu Sep 19 19:19:59 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses Rogue Wave Software's JFactory, a GUI tool for rapid prototyping of Java screens.", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Grehan:1996:WCD, author = "R. Grehan", title = "Womb-to-tomb {C++} development [{C++} compiler]", journal = j-BYTE, volume = "21", number = "7", pages = "159--160", month = jul, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6150C (Compilers, interpreters and other processors); C6115 (Programming support); C6140D (High level languages)", fjournal = "BYTE Magazine", keywords = "(BC++) 5.0; 16-bit hosted version; BC++ 5.0; Borland C++; C language; C++ compiler; C++ Development Suite; CodeGuard; InstallShield Express; Java support; ObjectWindows Library 5.0; program compilers; programming environments; PVCS; software engineering; software reviews; Tools; Visual Database; womb-to-tomb C++ development", treatment = "P Practical; R Product Review", } @Book{Groner:1996:JLA, author = "Dan Groner and K. C. Hopson and Harish Prabandham and Todd Sundsted and Daniel Groner", title = "{Java} Language {API SuperBible}: the comprehensive reference to the Java programming language: everything you need to know about the standard language, input\slash output, and debugging classes", publisher = pub-WAITE-GROUP, address = pub-WAITE-GROUP:adr, pages = "xxiii + 851", day = "1", month = oct, year = "1996", ISBN = "1-57169-038-7", ISBN-13 = "978-1-57169-038-8", LCCN = "QA76.73.J38J37 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/waite/; http://www.amazon.com/exec/obidos/ISBN=1571690387/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$59.99", URL = "http://www.mcp.com/cgi-bin/bag?isbn=1-57169-038-7&last=/bookstore; http://www.waite.com/waite/", acknowledgement = ack-nhfb, dimensions = "8.51in x 6.52in x 1.76in", keywords = "application; Java (computer program language); software; technology -- computers and computer technology", paperback = "yes", } @Book{Groner:1996:JLS, author = "Daniel Groner", title = "{Java} Language {SuperBible}", publisher = pub-MACMILLAN-COMPUTER, address = pub-MACMILLAN-COMPUTER:adr, pages = "????", month = sep, year = "1996", ISBN = "0-614-20294-9", ISBN-13 = "978-0-614-20294-6", LCCN = "????", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$59.99", acknowledgement = ack-nhfb, keywords = "Java (computer program language)", } @Article{Grosky:1996:NWH, author = "William Grosky", title = "In the News: Whither the High Definition in {HDTV}? {TV} on the {Net}; Telecommunications Overhauled; Videoconferencing market Grows; {ITU} Videoconferencing Standards; Credit on the Net; {Bell Labs} Brews a Rival to {Sun}'s {Java}; {$3$D} Multimedia Comes on a Chip; New Print Output", journal = j-IEEE-MULTIMEDIA, volume = "3", number = "1", pages = "6--9", month = "Spring", year = "1996", CODEN = "IEMUE4", ISSN = "1070-986X (print), 1941-0166 (electronic)", ISSN-L = "1070-986X", bibdate = "Mon Jan 29 16:05:12 MST 2001", bibsource = "http://www.computer.org/multimedia/mu1996/; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses the Inferno programming language.", URL = "http://dlib.computer.org/mu/books/mu1996/pdf/u1006.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE MultiMedia", } @Article{Grosse:1996:NPC, author = "Eric Grosse", title = "Network Programming and {CSE}", journal = j-IEEE-COMPUT-SCI-ENG, volume = "3", number = "2", pages = "40--41", month = "Summer", year = "1996", CODEN = "ISCEE4", DOI = "http://dx.doi.org/10.1109/99.503309", ISSN = "1070-9924", ISSN-L = "1070-9924", bibdate = "Sat Jan 9 08:57:23 MST 1999", bibsource = "http://www.computer.org/cse/cs1998; http://www.math.utah.edu/pub/bibnet/authors/g/grosse-eric.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses the emergence of systems like Java and Inferno for scientific visualization.", acknowledgement = ack-nhfb, classcodes = "B6210L (Computer communications); C6150N (Distributed systems software); C5620 (Computer networks and techniques); C6110B (Software engineering techniques); C6110P (Parallel programming)", fjournal = "IEEE Computational Science \& Engineering", keywords = "communication; components; computer networks; database interfaces; graphical user; IEEE floating point; Inferno; interfaces; interprocess; Java; language support; NAG; Netlib; network naming rules; network operating systems; network programming; network services; networking languages; Numerical Recipes; parallel; portability; portable programming; programming; reusable; scientific computing; simple visualization; software portability; software reuse", treatment = "P Practical", } @Article{Guadagno:1996:SFB, author = "L. Guadagno and O. B. {Okon, III}", title = "Stepping up the flow of business information", journal = j-OBJECT-MAG, volume = "????", number = "????", pages = "41--45", month = jul, year = "1996", CODEN = "OBMAFO", ISSN = "1055-3614", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7170 (Marketing computing); C6140D (High level languages); C6110J (Object-oriented programming); C7210 (Information services and centres); C6150N (Distributed systems software); C5620W (Other computer networks); C6130G (Groupware); C5620L (Local area networks)", corpsource = "Cellular Infrastructure Group, Motorola Inc., Arlington Heights, IL, USA", fjournal = "Object Magazine", keywords = "applications; business data processing; business information flow; business teams; client-server systems; corporate; customers; databases; dynamic object-oriented; enabled business applications; geographically dispersed business teams; groupware; information; information sharing; interactive information; Internet; intranet-based business applications; Java; local area networks; management; marketing data processing; marketing organizations; multimedia; net-based; object-oriented languages; object-oriented programming; organizations; programming language; sales; sales management; superhighway shop; supplier; Web browser; Web page animation; Web-", treatment = "G General Review", } @Article{Guenette:1996:CWB, author = "D. R. Guenette and R. Gustavson", title = "{CD-ROM} and {Web} browsers: <{HTML}> as the {Lingua Franca}", journal = j-CD-ROM-PROF, volume = "9", number = "8", pages = "26--30, 32--34, 36, 38--42, 44, 46--48, 50--51", month = aug, year = "1996", CODEN = "CRPFEX", ISSN = "1049-0833", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210L (Computer communications); C6150N (Distributed systems software); C5620W (Other computer networks); C6130M (Multimedia); C5320K (Optical storage); C7250R (Information retrieval techniques); C6140D (High level languages); C7230 (Publishing and reproduction); C6160Z (Other DBMS)", fjournal = "CD-ROM Professional", keywords = "browser; capabilities; CD-ROM; CD-ROM publishers; CD-ROMs; developers; HTML; hypermedia; information retrieval; interactivity; Internet; Internet data type; Java users; motion video; multimedia; optical publishing; page description languages; real time audio; Web browsers; Web sites; World Wide Web", treatment = "P Practical", } @Book{Gulbransen:1996:CWA, author = "David Gulbransen and Kenrick Rawlings and John December", title = "Creating {Web} Applets With {Java}", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "307", year = "1996", ISBN = "1-57521-070-3", ISBN-13 = "978-1-57521-070-4", LCCN = "QA76.73.J38G85 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575210703.html; http://www.amazon.com/exec/obidos/ISBN=1575210703/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99", URL = "http://www.mcp.com/210167322173490/cgi-bin/bag?isbn=1-57521-070-3&last=/bookstore; http://www.mcp.com/samsnet/", acknowledgement = ack-nhfb, dimensions = "9.05in x 7.35in x 0.96in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Book{Gulbransen:1996:JCA, author = "David Gulbransen", title = "{Java} Creation d'Applets Pour le {Web}", publisher = pub-SIMON-SCHUSTER-FRANCE, address = pub-SIMON-SCHUSTER-FRANCE:adr, pages = "????", month = aug, year = "1996", ISBN = "2-7440-0163-5", ISBN-13 = "978-2-7440-0163-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ssm.fr/", note = "Includes CD-ROM.", price = "129 FF", URL = "http://www.ssm.fr/", acknowledgement = ack-nhfb, language = "French", } @Book{Gulbransen:1996:WAJ, author = "David Gulbransen and Kenrick Rawlings", title = "{Web Applets mit Java}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, pages = "????", month = oct, year = "1996", ISBN = "3-8272-5182-6", ISBN-13 = "978-3-8272-5182-4", LCCN = "????", bibdate = "Tue Mar 03 08:34:49 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "50 DM", URL = "http://www.mut.ch/html/buchinfo.htx?&x_pp=dJgxRqA9wlAYNijX&x_az=10&x_pk=VpLvjnsx7b5V&x_pa=B&x_pr=oS&x_bestell=25182&x_stichwort=Gulbransen&x_sprache=A&x_start=1&x_gefunden=4&x_query=&x_lastpage=buchfund&x_soft=&x_suchewo=A; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm; http://www.mut.com/", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.mut.ch/", } @Article{Gulesian:1996:PW, author = "M. Gulesian", title = "Plugging into the {Web}", journal = j-DBMS, volume = "9", number = "13", pages = "69--70, 72", month = dec, year = "1996", CODEN = "DBMSEO", ISSN = "1041-5173", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6150N (Distributed systems software); C7210 (Information services and centres); C7250N (Front end systems for online searching); C6180 (User interfaces)", fjournal = "DBMS", keywords = "ActiveX controls; browser plug-ins; business applications; business data processing; client server; client-server systems; data-driven applications; HTML; Internet; Internet Explorer; Java; market; Microsoft; Netscape Navigator; online front-ends; PowerBuilder Window Plug-In; standards; tools; user interfaces; Web applications; World Wide Web", treatment = "P Practical", } @Book{Gurewich:1996:JMS, author = "Nathan Gurewich and Ori Gurewich", title = "{Java} Manual of Style", publisher = pub-ZD, address = pub-ZD:adr, pages = "xvii + 170", day = "1", month = apr, year = "1996", ISBN = "1-56276-408-X", ISBN-13 = "978-1-56276-408-1", LCCN = "QA76.73.J38G87 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/zdpress/; http://www.amazon.com/exec/obidos/ISBN=156276408X/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$24.99", URL = "http://www.mcp.com/zdpress", acknowledgement = ack-nhfb, dimensions = "9.12in x 7.40in x 0.62in", keywords = "Internet (Computer network); Java (computer program language); Java (Computer program language) -- Handbooks, manuals, etc.; technology -- computers and computer technology; World Wide Web servers", paperback = "yes", } @Book{Gurewich:1996:WS, author = "Nathan Gurewich and Ori Gurewich and Larry Aronson", title = "{Webmaster} {SuperPack}", publisher = pub-ZD, address = pub-ZD:adr, pages = "520", month = may, year = "1996", ISBN = "1-56276-395-4 (softcover)", ISBN-13 = "978-1-56276-395-4 (softcover)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/zdpress/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes Both Java Manual of Style and {HTML} 3 Manual of Style.", price = "US\$40.49", acknowledgement = ack-nhfb, } @Article{Guth:1996:LJT, author = "Rob Guth", title = "Low-cost {Java} terminal on tap", journal = j-COMPUTERWORLD, volume = "30", number = "18", pages = "42--42", day = "29", month = apr, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Tue May 07 10:52:24 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Hackl:1996:GBJ, author = "Yan Hackl and Michael Knapp and Bernd Kretschmer", title = "{Das gro{\ss}e Buch Java}", publisher = pub-DATA-BECKER, address = pub-DATA-BECKER:adr, pages = "606", year = "1996", ISBN = "3-8158-1259-3", ISBN-13 = "978-3-8158-1259-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.data-becker.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "69 DM", URL = "http://www.data-becker.de/", acknowledgement = ack-nhfb, language = "German", } @Book{Hackl:1996:GLJ, author = "Yann Hackl", title = "Le grand livre de {JAVA}", publisher = pub-EDITION-MICRO-APPLICATIONS, address = pub-EDITION-MICRO-APPLICATIONS:adr, pages = "605", year = "1996", ISBN = "2-7429-0764-5", ISBN-13 = "978-2-7429-0764-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.microapp.com/", note = "Includes CD-ROM.", price = "195 FF", URL = "http://www.microapp.com/", acknowledgement = ack-nhfb, language = "French", } @InProceedings{Hall:1996:WVJ, author = "S. E. Hall and M. K. Ramamurthy and R. B. Wilhelmson and J. Plutchak and D. Wojtowicz and M. Sridhar", title = "The {Weather Visualizer}: a {Java} tool for interactive learning", crossref = "Stein:1996:IIG", volume = "3", pages = "4--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "A9260 (Lower atmosphere); A9365 (Data and information; acquisition, processing, storage and dissemination in geophysics); A0150 (Educational aids); C7340 (Geophysics computing); C6130B (Graphics techniques); C6115 (Programming support); C7810C (Computer-aided instruction)", conflocation = "Lincoln, NE, USA; 27--31 May 1996", conftitle = "IGARSS '96. 1996 International Geoscience and Remote Sensing Symposium", corpsource = "Dept. of Atmos. Sci., Illinois Univ., Urbana, IL, USA", keywords = "computer aided instruction; computer graphics; courseware; customized image; education; geophysics computing; interactive learning; interactive systems; Java tool; meteorology; software tools; Weather Visualizer; web-based visualization tool", sponsororg = "IEEE Geosci. and Remote Sensing Soc.; Univ. Nabraska; NASA; NOAA; Office of Naval Res", treatment = "A Application; P Practical", } @InProceedings{Hamilton:1996:JJT, author = "James Hamilton", title = "{Java} and {JDBC}: tools supporting data-centric business application development", crossref = "Frieder:1996:PFI", pages = "121--138", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE catalog number 96TB100054.", acknowledgement = ack-nhfb, affiliation = "IBM Toronto Lab", affiliationaddress = "Toronto, Ont, Can", classcodes = "C7100 (Business and administration); C6115 (Programming support); C6110B (Software engineering techniques); C6130B (Graphics techniques); C6150N (Distributed systems software); C5620W (Other computer networks)", classification = "722.2; 723.2; 723.3; 723.5; 911", conference = "Proceedings of the 1996 4th International Symposium on Assessment of Software Tools", conflocation = "Toronto, Ont., Canada; 22--24 May 1996", conftitle = "Proceedings of IEEE International Symposium on Assessment of Software Tools", corpsource = "IBM Toronto Lab., Ont., Canada", keywords = "2 dimensional windowed user interfaces; Administrative data processing; application deployment costs; application domains; business data; business data processing; client server computing; computer aided software; Computer aided software engineering; Computer architecture; Costs; data; data centric business application; Data reduction; Data structures; data visualisation; Data visualization; Database systems; development; engineering; external users; Graphical user interfaces; high information bandwidth 3 dimensional data visualization; installation; Internet; intranets; Java; JDBC tool; maintenance; portable GUI class libraries; software porting; software tools; Three dimensional; Virtual reality; virtual reality systems; visualization", meetingaddress = "Toronto, Can", meetingdate = "May 22--24 1996", meetingdate2 = "05/22--24/96", sponsor = "IEEE", sponsororg = "IEEE Comput. Soc. Tech. Council on Software Eng.; Univ. Toronto", treatment = "P Practical; R Product Review", } @Article{Hamilton:1996:JSN, author = "Marc A. Hamilton", title = "{Java} and the Shift to Net-Centric Computing", journal = j-COMPUTER, volume = "29", number = "8", pages = "31--39", month = aug, year = "1996", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Java, with its write once, run anywhere model, changes the basic techniques by which software is designed, developed, and deployed.", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming); C7210 (Information services and centres); C6120 (File organisation)", classification = "722.3; 723.1; 723.1.1; 723.2; 723.3; 723.5", corpsource = "Sun Microsyst., El Segundo, CA, USA", fjournal = "Computer", keywords = "application program interfaces; application programming; C; C (programming language); C++; computer aided software; Computer architecture; Computer hardware; Computer networks; Computer operating systems; Computer simulation; Computer software; Computer software portability; Distributed database systems; Dynamic linking; engineering; environments; garbage collection; interfaces; Internet; Internet, Object oriented programming; interpreted language; Java; Java programming language; language; management; Memory management; Middleware, Computer programming languages; multithreading; Multithreading; multithreading; Net centric computing; net-centric computing; Network centric computing; Numeric data types; object-; object-oriented languages; object-oriented programming; oriented programming; program compiler; Program compilers; program debugging; Program interpreters; program testing; programming environments; Security of data; software development; Software engineering; software-development life cycle; storage; Storage allocation (computer); Virtual machines; Web browser; Web browsers; World Wide Web", treatment = "P Practical", } @Article{Hamit:1996:BLP, author = "Francis Hamit", title = "{Bill Lee} preaches {Java} gospel to {Hollywood}", journal = j-SUN-OBSERVER, volume = "10", number = "5", pages = "4--4", month = may, year = "1996", ISSN = "1058-5400", bibdate = "Tue May 07 11:04:42 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Sun Observer", } @MastersThesis{Hang:1996:EJA, author = "Raksas Hang", title = "An evaluation of {Java} and its application to the fifteen-puzzle", type = "Thesis (M.S.)", school = "University of California, Santa Cruz", address = "Santa Cruz, CA, USA", pages = "viii + 82", year = "1996", bibdate = "Wed Oct 2 18:55:05 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "Fifteen puzzle; Heuristic programming; Java (Computer program language)", } @TechReport{Hardwick:1996:JIL, author = "Jonathan C. Hardwick and Jay Sipelstein", title = "{Java} as an Intermediate Language", type = "Technical Report", number = "CMU-CS-96-161", institution = "School of Computer Science, Carnegie Mellon University", address = "Pittsburgh, PA, USA", pages = "17", day = "12", month = aug, year = "1996", bibdate = "Mon Mar 10 21:55:28 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Describes the use of Java as the output language of a compiler for NESL, a high-level parallel programming language.", URL = "http://www.cs.cmu.edu/~scandal/html-papers/javanesl/", acknowledgement = ack-nhfb, } @Article{Hare:1996:JWJ, author = "Dwight Hare", title = "{Java} and the {Web} Join to Create True {Internet} Programming", journal = j-SUN-DEVELOPER-NEWS, volume = "1", number = "1", pages = "1, 2", month = "Fall", year = "1996", bibdate = "Tue Dec 03 11:46:37 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Book{Harmon:1996:WDG, author = "Trevor Harmon", title = "{Web} Developer's Guide to {Visual J++} \& {ActiveX}", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "xviii + 409", year = "1996", ISBN = "1-57610-062-6", ISBN-13 = "978-1-57610-062-2", LCCN = "QA76.73.J38H36 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$39.99, CDN\$55.99", URL = "http://www.coriolis.com/cgi-win/KBsearch.exe; http://www.course.com/templates/catalog/detail.cfm?isbn=1-57610-062-6", acknowledgement = ack-nhfb, } @Book{Harms:1996:WSP, author = "David Harms and Barton C. Fiske and Jeffrey C. Rice", title = "{Web} Site Programming With {Java}", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xxix + 578", year = "1996", ISBN = "0-07-912986-2", ISBN-13 = "978-0-07-912986-4", LCCN = "TK5105.888 .H37 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0079129862/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", note = "Includes CD-ROM. Covers Java 1.0.", price = "US\$39.95", URL = "http://www.incunabula.com/websitejava/index.html", acknowledgement = ack-nhfb, dimensions = "9.22in x 7.47in x 1.26in", keywords = "Internet (Computer network); internet (computer network); Java (computer; Java (Computer program language); program language); technology -- data processing; World Wide Web (Information retrieval system); World Wide Web (information retrieval system)", } @Book{Harold:1996:JDR, author = "Elliotte Rusty Harold", title = "The {Java} Developer's Resource: {A} Tutorial and On-Line Supplement", publisher = pub-PH, address = pub-PH:adr, pages = "vii + 608", year = "1996", ISBN = "0-13-570789-7", ISBN-13 = "978-0-13-570789-0", LCCN = "QA76.73.J38H37 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0135707897/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$26.95", URL = "http://www.prenhall.com/ptrbooks/ptr_0135707897.html", acknowledgement = ack-nhfb, dimensions = "9.21in x 7.04in x 1.70in", keywords = "Java (Computer program language)", paperback = "yes", } @Book{Harold:1996:JS, author = "Elliotte Rusty Harold", title = "{Java} Secrets", publisher = pub-IDG, address = pub-IDG:adr, pages = "xxvi + 885", year = "1996", ISBN = "0-7645-8007-8", ISBN-13 = "978-0-7645-8007-9", LCCN = "QA76.73.J38 H373 1997", bibdate = "Mon Jun 22 08:10:41 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$60", URL = "http://www.idgbooks.com/database/book_result.msql?uid=uidg323&isbn=0-7645-8007-8", acknowledgement = ack-nhfb, xxnote = "Duplicate ISBN with \cite{Tittel:1996:UJ}.", } @Book{Harold:1996:PMJ, author = "Elliotte Rusty Harold", title = "{PC} Magazine {Java} Programming", publisher = pub-ZD, address = pub-ZD:adr, pages = "????", month = may, year = "1996", ISBN = "1-56276-407-1", ISBN-13 = "978-1-56276-407-4", LCCN = "????", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$34.95", URL = "http://www.mcp.com/zdpress", acknowledgement = ack-nhfb, keywords = "Java (computer program language); technology -- computers and computer technology", xxauthor = "Jason Wehling", xxnote = "Library of Congress has entry \cite{Wehling:1996:LNA} for this ISBN.", } @Article{Harrison:1996:NJF, author = "Brad Harrison", title = "Are {Netscape} and {Java} De Facto Standards", journal = j-INTERNETWORK, volume = "7", number = "5", pages = "8--8", month = may, year = "1996", ISSN = "1079-0373", bibdate = "Tue May 21 12:38:15 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Internetwork", } @Article{Hayes:1996:CIF, author = "Frank Hayes", title = "Corporate {IS} frets about {Java} security, frowns on applet use", journal = j-COMPUTERWORLD, volume = "30", number = "37", pages = "68--68", day = "9", month = sep, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Sep 20 11:32:22 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Notes that Boeing Co., the U.S. Defense Intelligence Agency, and Telstra Corporation have all banned, or otherwise discouraged, the use of Java because of security concerns.", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:DCC, author = "Frank Hayes", title = "Developers can control {Java} access with firewall", journal = j-COMPUTERWORLD, volume = "30", number = "43", pages = "60--60", day = "21", month = oct, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Nov 08 15:30:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:DGT, author = "Frank Hayes", title = "Developers get taste of visual {Java}", journal = j-COMPUTERWORLD, volume = "30", number = "20", pages = "50--50", day = "13", month = may, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Tue May 21 12:47:14 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:DJR, author = "Frank Hayes", title = "Does {Java} really need the refills?", journal = j-COMPUTERWORLD, volume = "30", number = "40", pages = "49, 52", day = "30", month = sep, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Nov 08 15:30:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:DUL, author = "Frank Hayes and Kim S. Nash", title = "Desktop users left thirsting for {Java}", journal = j-COMPUTERWORLD, volume = "30", number = "17", pages = "1--1", day = "22", month = apr, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Apr 26 17:19:59 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:DWA, author = "Frank Hayes", title = "Developers worried about safety of {Java} and {Active X}", journal = j-COMPUTERWORLD, volume = "30", number = "41", pages = "55--55", day = "7", month = oct, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Nov 08 15:30:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:JAX, author = "Frank Hayes", title = "{Java}, {Active X} push for platforms", journal = j-COMPUTERWORLD, volume = "30", number = "39", pages = "6--6", day = "23", month = sep, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Nov 08 15:30:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:JBU, author = "Frank Hayes", title = "{Java} bug; users shrug", journal = j-COMPUTERWORLD, volume = "30", number = "14", pages = "16--16", day = "1", month = apr, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Thu Apr 11 11:18:27 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:JCT, author = "Frank Hayes", title = "{JavaScript} can trace user tracks", journal = j-COMPUTERWORLD, volume = "30", number = "12", pages = "1, 113", day = "18", month = mar, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Apr 01 15:52:28 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:JGW, author = "Frank Hayes", title = "{Java} gets {Windows} flavoring", journal = j-COMPUTERWORLD, volume = "30", number = "43", pages = "24--24", day = "21", month = oct, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Nov 08 15:30:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:JJN, author = "Frank Hayes", title = "{Java} jolts new add-on tools arena", journal = j-COMPUTERWORLD, volume = "30", number = "23", pages = "47, 50", day = "3", month = jun, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Wed Jun 05 16:59:50 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:JMM, author = "Frank Hayes", title = "{Java} makes {Microsoft} look like {IBM}", journal = j-COMPUTERWORLD, volume = "30", number = "50", pages = "58--58", day = "9", month = dec, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Thu Dec 19 10:02:28 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:JPT, author = "Frank Hayes", title = "A {Java} pick-me-up for tired systems: Firms port language to boost aging platforms", journal = j-COMPUTERWORLD, volume = "30", number = "40", pages = "12--12", day = "30", month = sep, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Nov 08 15:30:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:JTB, author = "Frank Hayes", title = "{Java} team breaks away from {Sun}", journal = j-COMPUTERWORLD, volume = "30", number = "6", pages = "32--32", day = "5", month = feb, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Tue Mar 05 13:01:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:JTE, author = "Frank Hayes", title = "{Java-speak}: Tools ease {Internet} applet conversion", journal = j-COMPUTERWORLD, volume = "30", number = "17", pages = "47--47", day = "22", month = apr, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Apr 26 17:24:50 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Describes tools from a dozen companies that assist in converting {C/C++} GUI code to Java.", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:JTS, author = "Frank Hayes", title = "{Java} tools still in short supply", journal = j-COMPUTERWORLD, volume = "30", number = "34", pages = "50--50", day = "19", month = aug, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Aug 30 08:19:32 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:LM, author = "Frank Hayes", title = "Listen up, Microsoft", journal = j-COMPUTERWORLD, volume = "30", number = "47", pages = "61--61", day = "18", month = nov, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Sat Nov 23 19:19:02 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Chides Microsoft for not offering Java support on Windows 3.1.", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:OSW, author = "Frank Hayes", title = "{Oracle} still working to add {Java} client", journal = j-COMPUTERWORLD, volume = "30", number = "41", pages = "55--55", day = "7", month = oct, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Nov 08 15:30:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:OVP, author = "Frank Hayes", title = "{OS} vendors place {Java} support on 1996 menu", journal = j-COMPUTERWORLD, volume = "30", number = "18", pages = "6--6", day = "29", month = apr, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Tue May 07 10:49:32 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:PPS, author = "Frank Hayes and Sharon Gaudin", title = "Not a prime-time player: {Sun}'s {Java} lacks supporting tools, middleware, third-party libraries", journal = j-COMPUTERWORLD, volume = "30", number = "44", pages = "45--45", day = "28", month = oct, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Nov 08 15:30:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:SJA, author = "Frank Hayes", title = "Some {Java} applets stink up {Web}", journal = j-COMPUTERWORLD, volume = "30", number = "21", pages = "57--57", day = "20", month = may, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Jun 03 11:30:41 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:SJI, author = "Frank Hayes", title = "Support for {Java} increases, but problems bubbling up", journal = j-COMPUTERWORLD, volume = "30", number = "23", pages = "14--14", day = "3", month = jun, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Wed Jun 05 16:56:01 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:SPJ, author = "Frank Hayes and Sharon Gaudin", title = "{Sun} pours {Java} client", journal = j-COMPUTERWORLD, volume = "30", number = "41", pages = "1, 15", day = "7", month = oct, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Nov 08 15:30:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:SUS, author = "Frank Hayes", title = "Some users are sipping {Java} slowly", journal = j-COMPUTERWORLD, volume = "30", number = "38", pages = "6--6", day = "16", month = sep, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Sep 20 11:54:42 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses Java GUI builders from Symantec", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:TBJ, author = "Frank Hayes", title = "Three books on {Java} target different audiences", journal = j-COMPUTERWORLD, volume = "30", number = "45", pages = "59--59", day = "4", month = nov, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Nov 08 15:30:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Brief reviews of \cite{Deitel:1997:JHPa,Levine:1996:LJD,Laffra:1996:AJI}.", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:USK, author = "Frank Hayes", title = "Users struggle to keep track of {Java} definitions", journal = j-COMPUTERWORLD, volume = "30", number = "29", pages = "53--53", day = "15", month = jul, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Aug 19 12:08:00 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:VBJ, author = "Frank Hayes", title = "Vendors boost {Java} support, aim for enterprise", journal = j-COMPUTERWORLD, volume = "30", number = "36", pages = "48--48", day = "2", month = sep, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Sep 06 10:56:07 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1996:VDF, author = "Frank Hayes", title = "Vendors drag feet on {Java} for {Win 3.1}", journal = j-COMPUTERWORLD, volume = "30", number = "48", pages = "53--53", day = "25", month = nov, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Dec 30 08:26:34 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Heib:1996:J, author = "David Heib", title = "{JavaScript}", publisher = pub-PRIMA, address = pub-PRIMA:adr, pages = "xii + 337", year = "1996", ISBN = "0-7615-0685-3", ISBN-13 = "978-0-7615-0685-0", LCCN = "QA76.73.J39K66 1996", bibdate = "Thu Oct 03 06:01:46 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$34.95", URL = "http://www.webcom.com/~prima", acknowledgement = ack-nhfb, xxnote = "Library of Congress says authors are Paul Kooros and Michele DeWolfe. This ISBN occurs under \cite{Jacobs:1996:JBW,Heib:1996:J}.", } @Article{Hemrajani:1996:ESC, author = "Anil Hemrajani", title = "Examining {Symantec's Caf{\'e}}: Visual development meets {Java} programming", journal = j-DDJ, volume = "21", number = "8", pages = "78, 80, 82", month = aug, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "Compendex database; http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Caf{\'e} is a 32-bit standalone Java visual-development environment available for both Windows and Macintosh. Anil uses it to develop a typical Java applet --- a phonebook for retrieving information about a person at a given Web site using their first name, last name, telephone number, fax number, or e-mail address.", acknowledgement = ack-nhfb, classcodes = "C6115 (Programming support); C6110V (Visual programming); C6155 (Computer communications software); C0310H (Equipment and software evaluation methods); C6150N (Distributed systems software)", classification = "722.2; 723.1; 723.2; 723.5; 912.2", corpsource = "Fortune 500, McLean, VA, USA", fjournal = "Dr. Dobb's Journal of Software Tools", keywords = "32 bit; 32-bit stand-alone Java visual; Apple; Application screens; authoring languages; browsers; Caf{\'e}; class; Codes (symbols); color-coded source code; compilers; Computer aided software engineering; computer communications software; Computer programming; delimited flat file; development environment; development systems; downloading; drag-and-drop; environment; field-; File editors; File organization; graphical debuggers; graphical integrated-development; Graphical user interfaces; information retrieval; Integrated development environments; Internet; Java applet; Java programming; Java source code; Macintosh operating system; phonebook; Program debugging; programming environments; project management; Project management; software reviews; Studio resource editor; Symantec Caf{\'e} for Windows; Virtual reality; visual controls; Visual debugging; visual programming; Windows 95; Windows NT; Windows resource scripts; wizards; World Wide Web site", treatment = "P Practical; R Product Review", } @Article{Hemrajani:1996:JAW, author = "Anil Hemrajani", title = "The {Java Abstract Window Toolkit}", journal = j-DDJ, volume = "21", number = "9", pages = "40, 42, 44", month = sep, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Anil examines the Java Abstract Window Toolkit (AWT), a portable GUI class library for developing applications and applets. He then builds a text-editor application for Window 95 and Solaris, along with an applet for Windows 95.", acknowledgement = ack-nhfb, classcodes = "C6115 (Programming support); C6110J (Object-oriented programming); C6180G (Graphical user interfaces); C6140D (High level languages)", fjournal = "Dr. Dobb's Journal of Software Tools", keywords = "application program interface; application program interfaces; class; colors; component placement; containers; drawing; event handling; fonts; graphical; graphical user interfaces; images; Internet; Java Abstract Window Toolkit; Java API; Java-compatible browser; libraries; object-oriented; object-oriented languages; portable GUI applications; programming; programming environments; software libraries; software packages; sounds; user interface; user interface management systems", treatment = "P Practical", } @Article{Hemrajani:1996:JCC, author = "Anil Hemrajani", title = "The {Java} and {C} Connection", journal = j-CCCUJ, volume = "14", number = "9", pages = "43--46, 48--50", month = sep, year = "1996", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Fri Aug 30 06:12:34 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Sure, Java is a neat new toy. But it's nice to know you can mix in a bit of C code, from time to time, to beef up a Java program.", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Herbst:1996:WI, author = "Kris Herbst", title = "Webfest {IV}", journal = j-INTERNET-WORLD, volume = "7", number = "3", pages = "22--??", day = "1", month = mar, year = "1996", CODEN = "IERNE8", ISSN = "1064-3923", bibdate = "Wed May 22 12:48:55 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "The fourth World-Wide Web Conference in Boston was abuzz with Web talk. Hot topics included Web commerce, Java, VRML, and HTML extensions.", acknowledgement = ack-nhfb, fjournal = "Internet World", } @Article{Herbst:1996:WIF, author = "Kris Herbst", title = "{Webfest IV} --- The fourth {World-Wide Web Conference} in {Boston} was abuzz with {Web} talk. Hot topics included {Web} commerce, {Java}, {VRML}, and {HTML} extensions", journal = j-INTERNET-WORLD, volume = "7", number = "3", pages = "22--??", month = "????", year = "1996", CODEN = "IERNE8", ISSN = "1064-3923", bibdate = "Tue Mar 12 13:11:43 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Internet World", } @Article{Hibbard:1996:MSA, author = "Justin Hibbard", title = "{Microsoft}, {Sun} add {Java} to {Web} servers", journal = j-COMPUTERWORLD, volume = "30", number = "51", pages = "12--12", day = "16", month = dec, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Thu Dec 19 10:11:04 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hines:1996:JJ, author = "John R. Hines", title = "{Java}: jive?", journal = j-IEEE-SPECTRUM, volume = "33", number = "????", pages = "15--??", month = "????", year = "1996", CODEN = "IEESAM", ISSN = "0018-9235 (print), 1939-9340 (electronic)", ISSN-L = "0018-9235", bibdate = "Sat Oct 12 16:26:29 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "IEEE Spectrum", keywords = "Java (Computer language)", } @Article{Holden:1996:MTW, author = "Julie Holden", title = "My Take on the Whole {Java} Thing", journal = j-INTERNETWORK, volume = "7", number = "3", pages = "18--18", month = mar, year = "1996", ISSN = "1079-0373", bibdate = "Wed Mar 13 05:54:41 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Internetwork", } @Book{Holzner:1996:JPLa, author = "Steve Holzner", title = "{Java} Programming with {Latt{\'e}}", publisher = pub-HENRY-HOLT, address = pub-HENRY-HOLT:adr, pages = "????", month = nov, year = "1996", ISBN = "0-614-20301-5", ISBN-13 = "978-0-614-20301-1", LCCN = "????", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.95", acknowledgement = ack-nhfb, keywords = "Java (computer program language)", } @Book{Holzner:1996:JWP, author = "Steven Holzner", title = "{Java} Workshop Programming", publisher = pub-MIS # " and " # pub-MT, address = pub-MIS:adr # " and " # pub-MT:adr, pages = "xv + 464", year = "1996", ISBN = "1-55851-491-0", ISBN-13 = "978-1-55851-491-1", LCCN = "QA76.73.J38 H65 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1558514910/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mispress.com/", price = "US\$34.95", URL = "http://www.mandt.com/javaworkshopprog.htm; www.mispress.com", acknowledgement = ack-nhfb, dimensions = "9.20in x 7.09in x 1.42in", keywords = "Java (Computer program language)", lccnalt = "96-021245", paperback = "yes", } @Book{Hopson:1996:DAC, author = "K. C. Hopson and Stephen E. Ingram", title = "Desenvolvendo Applets com {Java}", publisher = pub-EDITORE-CAMPUS, address = pub-EDITORE-CAMPUS:adr, pages = "668", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 12:44:14 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/portuguese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Portuguese translation of \cite{Hopson:1996:DPJ}.", price = "R\$ 83,00", URL = "http://www.campus.com.br/about-us.htm; http://www.campus.com.br/catalogo/resposta.cfm", acknowledgement = ack-nhfb, language = "Portuguese", } @Book{Hopson:1996:DPJ, author = "K. C. (Casey) Hopson and Stephen E. Ingram", title = "Developing Professional {Java} Applets", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xv + 528", day = "1", month = jul, year = "1996", ISBN = "1-57521-083-5", ISBN-13 = "978-1-57521-083-4", LCCN = "QA76.73.J38H66 1996", bibdate = "Mon Jun 22 08:12:13 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575210835.html; http://www.amazon.com/exec/obidos/ISBN=1575210835/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", URL = "http://www.mcp.com/251356511370317/cgi-bin/bag?isbn=1-57521-083-5&last=/bookstore; http://www.mcp.com/samsnet/", acknowledgement = ack-nhfb, dimensions = "9.12in x 7.40in x 1.50in", keywords = "Java (Computer program language)", paperback = "yes", } @Article{Horowitz:1996:NP, author = "Bradley Horowitz", title = "New Products: {FreeD} links Photographs and {$3$D}; Server Views Images on the {Web}; {Mercury Mail} Delivers; {Web} Tool Provides Database Functions; Building {Java}-Based Tables and Forms; Viewing Interactive Maps on the Net; Managing Multimedia On Demand; {Internet} Video Solution Offered", journal = j-IEEE-MULTIMEDIA, volume = "3", number = "4", pages = "89--90", month = "Winter", year = "1996", CODEN = "IEMUE4", ISSN = "1070-986X (print), 1941-0166 (electronic)", ISSN-L = "1070-986X", bibdate = "Mon Jan 29 16:05:13 MST 2001", bibsource = "http://www.computer.org/multimedia/mu1996/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/mu/books/mu1996/pdf/u4089.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE MultiMedia", } @Article{Horowitz:1996:NPd, author = "Bradley Horowitz", title = "New Products: {FreeD} links Photographs and {$3$D}; Server Views Images on the {Web}; {Mercury Mail} Delivers; {Web} Tool Provides Database Functions; Building {Java}-Based Tables and Forms; Viewing Interactive Maps on the Net; Managing Multimedia On Demand; {Internet} Video Solution Offered", journal = j-IEEE-MULTIMEDIA, volume = "3", number = "4", pages = "89--90", month = "Winter", year = "1996", CODEN = "IEMUE4", ISSN = "1070-986X (print), 1941-0166 (electronic)", ISSN-L = "1070-986X", bibdate = "Mon Jan 29 16:05:13 MST 2001", bibsource = "http://www.computer.org/multimedia/mu1996/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/mu/books/mu1996/pdf/u4089.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE MultiMedia", } @Article{Horstmann:1996:JPS, author = "C. S. Horstmann", title = "{Java} programming with {Sun's Java} development kit", journal = j-C-PLUS-PLUS-REPORT, volume = "8", number = "3", pages = "63--70", month = mar, year = "1996", CODEN = "CRPTE7", ISSN = "1040-6042", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6140D (High level languages); C6150C (Compilers, interpreters and other processors); C6150G (Diagnostic, testing, debugging and evaluating systems); C6115 (Programming support); C5620W (Other computer networks); C6180G (Graphical user interfaces)", corpsource = "San Jose State Univ., CA, USA", fjournal = "C++ Report", keywords = "compiler; debugging; debugging tools; graphical user interface; graphical user interfaces; high level languages; Internet; Java; network; object-oriented programming; object-oriented programming language; program; program compilers; programming; software development kit; software tools; Sun Microsystems; World Wide Web", treatment = "P Practical", } @Article{Hosch:1996:JFL, author = "Frederick Hosch", title = "{Java} as a First Language: an Evaluation", journal = j-SIGCSE, volume = "28", number = "3", pages = "45--??", day = "1", month = sep, year = "1996", CODEN = "SIGSD3", ISSN = "0097-8418", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", acknowledgement = ack-nhfb, fjournal = "SIGCSE Bulletin (ACM Special Interest Group on Computer Science Education)", } @Article{Hosch:1996:JST, author = "F. Hosch", title = "{Java} as a first language: an evaluation", journal = j-SIGCSE, volume = "28", number = "3", pages = "45--50", month = sep, year = "1996", CODEN = "SIGSD3", ISSN = "0097-8418", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C0220 (Computing education and training); C6110J (Object-oriented programming); C6140D (High level languages)", corpsource = "Dept. of Comput. Sci., New Orleans Univ., LA, USA", fjournal = "SIGCSE Bulletin (ACM Special Interest Group on Computer Science Education)", keywords = "computer science education; course; CS 1 course; data design; educational courses; engineering; first language; first software development; implementation; introductory computer science course; iterative specify/design/implement/test; Java programming language; language design; object-; object-oriented programming; oriented languages; procedural concepts; simple object; simple object design; software; strategy", treatment = "P Practical", } @Article{Howlett:1996:SWP, author = "D. Howlett", title = "Sophisticated {Web} page creation [{HoTMetaL Pro 3.0}]", journal = j-PC-USER, volume = "????", number = "287", pages = "47--??", month = "????", year = "1996", CODEN = "PCUSDW", ISSN = "0263-5720", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D2080 (Information services and database systems); D5050 (Word processing equipment)", countrypub = "UK", fjournal = "PC User", keywords = "authoring systems; AxtiveX controls; default interface; drag and drop support; dynamic Web pages; Forms toolbar; HoTMetaL Pro 3.0; HTML functionality; hypermedia; Internet; Java; languages; online help; page description; technical support; Web authoring tool; web page creation", treatment = "P Practical", } @InProceedings{Hoyle:1996:SSW, author = "L. Hoyle", title = "{SAS} software and the {WWW} --- what next?", crossref = "Anonymous:1996:PTF", volume = "1", pages = "2--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C5620W (Other computer networks); C7310 (Mathematics computing); C7210 (Information services and centres); C7250R (Information retrieval techniques); C6130B (Graphics techniques)", conflocation = "Chicago, IL, USA; 10--13 March 1996", conftitle = "Proceedings of 21st Annual SAS Users Group International Conference", corpsource = "Inst. for Public Policy and Bus. Res., Kansas Univ., Lawrence, KS, USA", keywords = "data visualisation; information retrieval; information server; interactive information visualization; Internet; JAVA language; SAS software; statistical analysis; VRML; Web services; World Wide Web; WWW", treatment = "P Practical", } @InProceedings{Hsieh:1996:JBN, author = "C.-H. A. Hsieh and J. C. Gyllenhaal and W. W. Hwu", title = "{Java} bytecode to native code translation: the {Caffeine} prototype and preliminary results", crossref = "IEEE:1996:PAI", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, corpsource = "Center for Reliable and High Performance Comput., Illinois Univ", sponsororg = "IEEE Comput. Soc. Tech. Committee on Microprogramming and Microarchit.; ACM SIGMICRO", } @Article{Hughes:1996:PPJ, author = "J. Hughes", title = "Programming with {PARTS} for {Java}", journal = j-WEB-TECHNIQUES, volume = "1", number = "8", pages = "71--73", month = nov, year = "1996", CODEN = "WETEFA", ISSN = "1086-556X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6115 (Programming support); C6110J (Object-oriented programming); C6140D (High level languages); C6150N (Distributed systems software)", fjournal = "Web Techniques", keywords = "applet; generation; HTML; Internet; Java; Java code; object-oriented programming; PARTS for Java; PARTS tool; programming; Smalltalk; software; tools; URL; Web page", treatment = "P Practical", } @Article{Hummel:1996:HJC, author = "Robert L. Hummel", title = "How {Java} Can Pay the Rent", journal = j-BYTE, volume = "21", number = "6", pages = "40, 42", month = jun, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Tue May 21 06:23:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Husain:1996:EJJ, author = "K. Husain", title = "Extending {JavaScript} with {Java}", journal = j-WEB-TECHNIQUES, volume = "1", number = "7", pages = "58--??, 60--62", month = oct, year = "1996", CODEN = "WETEFA", ISSN = "1086-556X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6130D (Document processing techniques); C6140D (High level languages); C6110J (Object-oriented programming); C6130M (Multimedia); C6150N (Distributed systems software); C5620W (Other computer networks)", fjournal = "Web Techniques", keywords = "applications; graphics; HTML code; HTML page; hypermedia; Internet; Java applets; JavaScript; Netscape Navigator 3; object-; object-oriented languages; oriented programming; page description languages; sockets; Web pages", treatment = "P Practical", } @Periodical{IDG:1996:JWI, key = "Java World", title = "{Java World}: {IDG}'s magazine for the {Java} community", publisher = pub-IDG, address = pub-IDG:adr, year = "1996", ISSN = "????", bibdate = "Fri Feb 23 12:43:20 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Manual{iMatrix:1996:LTP, title = "Libero --- the thinking programmer's tool", organization = "iMatrix", address = "????", edition = "????", month = "????", year = "1996", bibdate = "Mon Mar 10 22:38:26 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Compiles a finite-state machine into one of several languages, including Java.", URL = "http://www.imatrix.com/html/libero/ (no longer accessible)", } @Misc{Intermetrics:1996:TCA, author = "{Intermetrics}", title = "Tool Converts {Ada 95} Source Code to {Java} Bytecode", howpublished = "Java Report Online", address = "Intermetrics\\ 733 Concord Ave.\\ Cambridge, MA 02138-1002\\ v: 617.661.1840, 617.576.3266\\ f: 617.547.3879\\ http://www.intermetrics.com", year = "1996", bibdate = "Tue Dec 24 04:59:50 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Intermetrics Inc. debuted AppletMagic, a tool that converts Ada 95 source code to Java bytecode for execution by any Java-capable Web browser. AppletMagic simplifies the development of complex, high-reliability applets and can be used as a supplement or an alternative to the Java language. Ada provides compile-time advantages such as enumeration types and generic templates, as well as in, in-out, and out parameter modes. The Java execution technology contributes runtime flexibility through automatic garbage collection, dynamic linking, and platform independence.", URL = "http://www.sigs.com/publications/docs/jro/twij96/twij961216.html#TOOL", acknowledgement = ack-nhfb, annote = "This is the first instance that I have noted of compilation of another language for the Java Virtual Machine.", } @Article{Isaak:1996:CSP, author = "Jim Isaak", title = "A call for standards for portable {Web} applications", journal = j-COMPUTER, volume = "29", number = "6", pages = "89--90", month = jun, year = "1996", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Fri Mar 14 16:34:11 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Recommends standardization of Java, JavaScript, VBScript, and Java's byte codes.", acknowledgement = ack-nhfb, fjournal = "Computer", keywords = "Information technology standards; Java (Computer language); World Wide Web", } @Book{Ito:1996:ZWJ, author = "Tomohachiro Ito and Mitsuo Kawano", title = "Zukai 60-fun de wakaru {Java}: {Intanetto} hyojun gengo ga kano ni suru 500-doru pasokon no shogeki", publisher = "PHP Kenkyujo", address = "Tokyo, Japan", edition = "Dai 1-han", pages = "206", year = "1996", ISBN = "4-569-55133-5", ISBN-13 = "978-4-569-55133-3", LCCN = "????", bibdate = "Sat Aug 17 16:45:43 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, alttitle = "Zukai rokujuppun de wakaru Java 60-fun de wakaru Java Rokujuppun de wakaru Java", keywords = "Internet (Computer network); Java (Computer program language); World Wide Web (Information retrieval system)", } @Book{Jackson:1996:JE, author = "Jerry R. Jackson and Alan L. McClellan", title = "{Java} by Example", publisher = pub-PH, address = pub-PH:adr, pages = "xxx + 345", year = "1996", ISBN = "0-13-565763-6", ISBN-13 = "978-0-13-565763-8", LCCN = "QA76.76.J38J33 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0135657636/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$34.95", series = "Java series", URL = "http://www.sun.com/smi/ssoftpress/books/Jackson/Jackson.html", acknowledgement = ack-nhfb, annote = "The SunSoft Press Java Series CD-ROM is a standard ISO-9660 disc. Software on this CD-ROM requires Windows 95, Windows NT, Solaris 2 or Macintosh (System 7.5). Windows 3.1 is not supported.", dimensions = "9.25in x 7.05in x 1.29in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Article{Jacobs:1996:FHF, author = "Stephan Jacobs and Michael Gebhardt and Stefanie Kethers and Wojtek Rzasa", title = "Filling {HTML} forms simultaneously: {CoWeb-architecture} and functionality", journal = j-COMP-NET-ISDN, volume = "28", number = "7--11", pages = "1385--1395", day = "1", month = may, year = "1996", CODEN = "CNISE9", ISSN = "0169-7552", ISSN-L = "0169-7552", bibdate = "Fri Sep 24 20:21:29 MDT 1999", bibsource = "http://www.elsevier.com/cgi-bin/cas/tree/store/cna/cas_free/browse/browse.cgi?year=1996&volume=28&issue=7-11; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/sgml.bib", URL = "http://www.elsevier.com/cgi-bin/cas/tree/store/comnet/cas_sub/browse/browse.cgi?year=1996&volume=28&issue=7-11&aid=1607", acknowledgement = ack-nhfb, classcodes = "C6130G (Groupware); C6130D (Document processing techniques); C6130M (Multimedia); C6150N (Distributed systems software); C6140D (High level languages)", conflocation = "Paris, France; 6--10 May 1996", conftitle = "Fifth International World Wide Web Conference", corpsource = "Inf. V, Tech. Hochschule Aachen, Germany", countrypub = "Netherlands", fjournal = "Computer Networks and ISDN Systems", keywords = "chatting channel; client-server systems; computer-; cooperation; CoWeb; CSCW; description languages; functionality; groupware; HTML document; HTML form-filling; hypermedia; Hypertext Markup Language; image section highlighting; input fields; Java applets; Java-compatible client; page; pointers; remote locations; simultaneous; simultaneous working; stretching rectangles; supported cooperative work; synchronous work; system architecture; Web; World Wide; {Internet}", treatment = "P Practical", } @Book{Jacobs:1996:JBW, author = "Russell Jacobs", title = "{Javascript}: Blueprints to a world beyond {HTML}", publisher = pub-PRIMA, address = pub-PRIMA:adr, pages = "xii + 337", month = jul, year = "1996", ISBN = "0-7615-0685-3", ISBN-13 = "978-0-7615-0685-0", LCCN = "QA76.73.J39K66 1996", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35.00", acknowledgement = ack-nhfb, keywords = "Java (computer program language)", xxnote = "Library of Congress says authors are Paul Kooros and Michele DeWolfe. This ISBN occurs under \cite{Jacobs:1996:JBW,Heib:1996:J,Kooros:1996:JBW}.", } @InProceedings{Jagannathan:1996:CIU, author = "V. Jagannathan and G. Almasi and A. Suvaiala", title = "Collaborative infrastructures using the {WWW} and {CORBA-based} environments", crossref = "IEEE:1996:PWE", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210L (Computer communications); C6150N (Distributed systems software); C5620W (Other computer networks); C6110P (Parallel programming); C6140D (High level languages); C6110J (Object-oriented programming); C6130G (Groupware); C7250R (Information retrieval techniques)", conflocation = "Stanford, CA, USA; 19--21 June 1996", conftitle = "Proceedings of WET ICE '96. IEEE 5th Workshop on Enabling Technologies; Infrastucture for Collaborative Enterprises", corpsource = "Concurrent Eng. Res. Center, West Virginia Univ., Morgantown, WV, USA", keywords = "Broker Architecture; collaborative infrastructures; Common Object Request; computer; CORBA; CORBA based; environments; fieldable systems; groupware; information retrieval; information sources; Internet; interoperable CORBA standards; interoperable standard; Java language; languages; object-oriented; parallel programming; popular WWW browsers; programming; public domain; vendors; Web browsers; World Wide Web; WWW", sponsororg = "IEEE Comput. Soc.; Concurrent Eng. Res. Center, West Virginia Univ.; IEEE Commun. Soc.; ACM SIGOIS", treatment = "P Practical", } @InProceedings{Jagannathan:1996:CWP, author = "V. Jagannathan and G. Almasi and T. Davis and R. Raman", editor = "C. P. Waegemann", title = "{CORBA-based} and {Web}-based patient record integration", crossref = "Waegemann:1996:PTE", pages = "243--247 (vol. 2)", year = "1996", bibdate = "Sat Oct 12 16:26:29 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7140 (Medical administration); C7210 (Information services and centres); C6110J (Object-oriented programming); C6110F (Formal methods); C7250 (Information storage and retrieval); C6160B (Distributed databases)", conflocation = "San Diego, CA, USA; 13--18 May 1996", conftitle = "Proceedings of Toward An Electronic Patient Record '96", corpsource = "Concurrent Eng. Res. Center, West Virginia Univ., Morgantown, WV, USA", keywords = "Broker Architecture; common data; Common Object Request; communication protocols; CORBA-based patient; database software; distributed databases; distributed heterogeneous system; file systems; health care; heterogeneous data formats; HTTP protocol; information; information access; information networks; information retrieval; interoperable communication standards; Java-based object-oriented computing; legacy databases; medical computing; medical information systems; Object Management Group; object-oriented methods; object-oriented programming; object-oriented technologies; organizations; patient care; patient information; record integration; records management; representations; retrieval; W3 Consortium; Web-based patient record integration; Wide Web; World", treatment = "P Practical", } @Book{Jamsa:1996:JNE, author = "Kris A. Jamsa", title = "{Java} Now: The Easiest Way to Learn {Java} in the Least Amount of Time", publisher = pub-JAMSA, address = pub-JAMSA:adr, pages = "218", month = jun, year = "1996", ISBN = "1-884133-30-4", ISBN-13 = "978-1-884133-30-5", LCCN = "QA76.73.J38J355 1996", bibdate = "Mon Jun 22 08:52:15 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1884133304/wholesaleproductA/; http://www.jamsa.com/jp.htm; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$16.95", URL = "http://www.jamsa.com/catalog/javanow/javanow.htm", acknowledgement = ack-nhfb, dimensions = "10.38in x 8.54in x 0.60in", paperback = "yes", } @Book{Jamsa:1996:WPV, author = "Kris Jamsa and Suleiman `Sam' Lalani and Steve Weakley", title = "{Web} Programming: {Visual Basic}, {TCP\slash IP}, {JavaScript}, {HTML}, {HTTP}, {VRML}, {VBScript}, {Java}, {CGI}, {J++}, {C++}", publisher = pub-JAMSA, address = pub-JAMSA:adr, pages = "xxii + 506", year = "1996", ISBN = "1-884133-27-4 (softcover)", ISBN-13 = "978-1-884133-27-5 (softcover)", LCCN = "QA76.625 .J36 1996", bibdate = "Sat Sep 13 14:36:20 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$44.95", } @Article{Jander:1996:WRW, author = "M. Jander", title = "Welcome to the revolution [{WWW-based} network management]", journal = "Data Communications International", volume = "25", number = "16", pages = "38--42, 44, 46, 48, 50, 52--53", day = "21", month = "????", year = "1996", CODEN = "DCINEU", ISSN = "0363-6399", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210C (Network management); B6210L (Computer communications)C7410F (Communications computing); C5620 (Computer networks and techniques)", keywords = "browsers; business communication; CGI scripts; computer network management; custom applications; dial-up links; HTML; Internet; Java; network management; telecommunication computing; Web; Web servers; World-Wide Web; WWW", treatment = "G General Review", } @Book{Jasper:1996:JK, author = "Dirk Jasper", title = "{Java Kannich}", publisher = pub-DATA-BECKER, address = pub-DATA-BECKER:adr, pages = "254", year = "1996", ISBN = "3-8158-1300-X", ISBN-13 = "978-3-8158-1300-3", LCCN = "????", bibdate = "Mon Mar 02 18:47:26 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.data-becker.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "30 DM", URL = "http://www.data-becker.de/", acknowledgement = ack-nhfb, language = "German", } @Book{Jaworski:1996:JDG, author = "Jamie Jaworski", title = "{Java} Developer's Guide", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxvi + 729", day = "1", month = jul, year = "1996", ISBN = "1-57521-069-X", ISBN-13 = "978-1-57521-069-8", LCCN = "QA76.73.J38J39 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.amazon.com/exec/obidos/ISBN=157521069X/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", URL = "http://www.mcp.com/288190891680543/cgi-bin/bag?isbn=1-57521-069-X&last=/bookstore", acknowledgement = ack-nhfb, dimensions = "9.08in x 7.58in x 2.43in", paperback = "yes", } @Book{Jepson:1996:PBD, author = "Brian Jepson", title = "Programando Banco de Dados em {Java}: Domine as {T}{\'e}cnicas dos Bancos de Dados da {Web}", publisher = pub-MAKRON, address = pub-MAKRON:adr, pages = "504", year = "1996", ISBN = "85-346-0759-1", ISBN-13 = "978-85-346-0759-9", LCCN = "????", bibdate = "Mon Aug 18 12:36:15 1997", bibsource = "http://safe.tesla.com.br/makron/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Portuguese translation of \cite{Jepson:1997:JDP}.", price = "R\$ 65,00", URL = "http://safe.tesla.com.br/makron/; http://safe.tesla.com.br/makron/options/livro.asp?id=7; http://www.makron.com/", acknowledgement = ack-nhfb, language = "Portuguese", } @Article{Jessup:1996:WSC, author = "Elizabeth R. Jessup and Roscoe C. Giles", title = "What Should Computer Scientists Teach to Physical Scientists and Engineers? Part 2. Response to {Wilson}: Teach Computing in Context", journal = j-IEEE-COMPUT-SCI-ENG, volume = "3", number = "3", pages = "54--62", month = "Fall", year = "1996", CODEN = "ISCEE4", DOI = "http://dx.doi.org/10.1109/99.537092", ISSN = "1070-9924", ISSN-L = "1070-9924", bibdate = "Sat Jan 09 11:11:56 1999", bibsource = "http://www.computer.org/cse/cs1998; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Proposes that Java be included in a week-long course of ``computer science for physical scientists.''", URL = "http://www.computer.org/cse/cs1998/c3054abs.htm", acknowledgement = ack-nhfb, fjournal = "IEEE Computational Science \& Engineering", } @Book{Jobst:1996:PJ, author = "Fritz Jobst", title = "{Programmieren in Java}", publisher = pub-CARL-HANSER, address = pub-CARL-HANSER:adr, pages = "????", month = sep, year = "1996", ISBN = "3-446-18789-8", ISBN-13 = "978-3-446-18789-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.hanser.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "42 DM", URL = "http://www.hanser.de/computer/buecher/jo18789.htm", acknowledgement = ack-nhfb, language = "German", } @Article{Johnson:1996:JAD, author = "J. Johnson", title = "{Java} as an application development language", journal = j-OBJECT-MAG, volume = "6", number = "4", pages = "59--61", month = jun, year = "1996", CODEN = "OBMAFO", ISSN = "1055-3614", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming); C6110B (Software engineering techniques); C6150N (Distributed systems software)", corpsource = "Nowell Inc., Provo, UT, USA", fjournal = "Object Magazine", keywords = "application development language; distributed object development paradigm; distributed processing; Java; object embedding; object linking; object-; object-oriented; object-oriented languages; oriented programming; software development; software engineering", treatment = "G General Review", } @Book{Johnson:1996:JMS, author = "Marcus Johnson", title = "{JavaScript} 2.1 Manual of Style", publisher = pub-ZD, address = pub-ZD:adr, pages = "xiv + 277", year = "1996", ISBN = "1-56276-423-3", ISBN-13 = "978-1-56276-423-4", LCCN = "QA76.73.J39J65 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1562764233/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$24.99", URL = "http://www.mcp.com/zdpress", acknowledgement = ack-nhfb, dimensions = "9.09in x 7.43in x 0.98in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", xxtitle = "{JavaScript} Manual of Style", } @Book{Johnson:1996:LNM, author = "Marc Johnson and Robert McDaniel and Michael Morrison", title = "Late Night {Microsoft Visual J++}", publisher = pub-ZD, address = pub-ZD:adr, pages = "xxi + 598", year = "1996", ISBN = "1-56276-452-7", ISBN-13 = "978-1-56276-452-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/zdpress/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", URL = "http://www.mcp.com/cgi-bin/bag?isbn=1-56276-452-7&last=/bookstore", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/zdpress/", } @Book{Joshi:1996:TYJ, author = "Daniel I. Joshi and Laura Lemay and Charles L. Perkins", title = "Teach yourself {Java} in {Caf{\'e}} in 21 days", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxiv + 614", year = "1996", ISBN = "1-57521-157-2", ISBN-13 = "978-1-57521-157-2", LCCN = "QA76.73.J38J676 1996", bibdate = "Mon Jun 22 08:13:36 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575211572.html; http://www.joshipublishing.com/cafe.htm", acknowledgement = ack-nhfb, alttitle = "Java in Caf{\'e}", annote = "``Symantec Caf{\'e}''--Cover.", keywords = "Java (Computer program language)", } @Article{Jurvis:1996:GJT, author = "J. Jurvis", title = "A guide to {Java} tools", journal = j-INFORMATION-WEEK, volume = "????", number = "599", pages = "55--56, 58, 60, 64", day = "30", month = "????", year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D5000 (Office automation - computing)", corpsource = "Solid Logic Comput. Solutions Inc., Eden Prairie, MN, USA", fjournal = "Information Week", keywords = "buyer's guides; CodeWarrior 10 for Macintosh; DR2 for Macintosh; HotJava Web browser; Java development environments; Macintosh; Metrowerks; Microsoft Visual J++ 1.0 Beta 3 for; Natural Intelligence Roaster; programming environments; Solaris; Sun Microsystems Java WorkShop 1.0 for Windows; Symantec Caf{\'e} 1.5 for Windows; Symantec Caf{\'e} DR2.01 for; Windows", treatment = "P Practical; R Product Review", } @Article{Kalakota:1996:IIW, author = "Ravi Kalakota and Andrew Whinston", title = "Intranets --- Internal {Web} servers that have {Java} applets could transform the client\slash server world--and even replace {SAP} applications, professors {Ravi Kalakota} and {Andrew Whinston} predict", journal = j-COMPUTERWORLD, volume = "30", number = "11", pages = "37--??", month = "????", year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Kalin:1996:SRI, author = "Sari Kalin and Michael Parsons", title = "{Sun} reveals its {Internet Toaster}", journal = j-SUNWORLD-ONLINE, volume = "02", pages = "??--??", year = "1996", ISSN = "1091-8914", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sun.com/sunworldonline/swol-02-1996/swol-02-appliance.html", abstract = "Eric Schmidt revealed a prototype of Sun's Internet Terminal at Demo 96. Here's the maximum amount of information Schmidt would tell us.", acknowledgement = ack-nhfb, fjournal = "SunWorld online", } @Article{Kamba:1996:IPN, author = "T. Kamba and K. Bharat", title = "An interactive, personalized, newspaper on the {WWW}", journal = j-PROC-SPIE, volume = "2667", pages = "290--301", month = "????", year = "1996", CODEN = "PSISDG", ISSN = "0277-786X (print), 1996-756X (electronic)", ISSN-L = "0277-786X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7210 (Information services and centres); C7250 (Information storage and retrieval); C5620W (Other computer networks)", conflocation = "San Jose, CA, USA; 29--31 Jan. 1996", conftitle = "Multimedia Computing and Networking 1996", corpsource = "Coll. of Comput., Georgia Inst. of Technol., Atlanta, GA, USA", fjournal = "Proceedings of the SPIE --- The International Society for Optical Engineering", keywords = "information retrieval; information services; interactive; Internet; Krakatoa Chronicle; newspaper; online newspapers; social issues; systems; technical issues; web server; web-client; World Wide Web; WWW", sponsororg = "SPIE; Soc. Imaging Sci. and Technol", treatment = "P Practical", } @Article{Kamba:1996:PON, author = "T. Kamba", title = "Personalized online newspaper", journal = j-NEC-TECH-J, volume = "49", number = "7", pages = "11--16", month = jul, year = "1996", CODEN = "NECGEZ", ISSN = "0285-4139", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7210 (Information services and centres); C7108 (Desktop publishing); C7230 (Publishing and reproduction); C5620W (Other computer networks)", countrypub = "Japan", fjournal = "NEC Technical Journal = NEC giho", keywords = "browser; electronic publishing; interactive agent; Internet; Java program; Krakatoa Chronicle; personalized online newspaper; profile; user; Wide Web; World", language = "Japanese", treatment = "A Application; P Practical", } @Book{Kanerva:1996:JFFa, author = "Jonni Kanerva", title = "The {Java FAQ}: Frequently Asked Questions", publisher = pub-AW, address = pub-AW:adr, pages = "352", month = jul, year = "1996", ISBN = "0-201-63456-2", ISBN-13 = "978-0-201-63456-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0201634562/wholesaleproductA/; http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$28", URL = "http://www.aw.com/cseng/titles/0-201-63456-2", acknowledgement = ack-nhfb, dimensions = "9.19in x 7.38in x 0.91in", } @Article{Kaneshige:1996:ITC, author = "Thomas Kaneshige", title = "Industry Trends: Cyberwar; {Clipper} chip; Network Computers", journal = j-COMPUTER, volume = "29", number = "7", pages = "20--23", month = jul, year = "1996", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Sat Jun 28 10:32:14 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Contains news brief: Lots of Java brewing at conference.", acknowledgement = ack-nhfb, fjournal = "Computer", } @InProceedings{Karacapilidis:1996:ABF, author = "N. I. Karacapilidis and D. Papadias and T. F. Gordon", title = "An argumentation based framework for defeasible and qualitative reasoning", crossref = "Borges:1996:AAI", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6170K (Knowledge engineering techniques); C4210 (Formal logic); C1230 (Artificial intelligence)", conflocation = "Curitiba, Brazil; 23--25 Oct. 1996", conftitle = "Advances in Artificial Intelligence. 13th Brazilian Symposium on Artificial Intelligence, SBIA '96. Proceedings", corpsource = "Nat. Res. Center for Comput. Sci., St. Augustin, Germany", countrypub = "Germany", keywords = "argumentation based framework; argumentation-based framework; common-sense reasoning; consistency; cooperation; cooperative systems; defeasible reasoning; formal logic; inference mechanism; interval-based qualitative; Java; knowledge; multiagent settings; qualitative reasoning; software agents; value logic", treatment = "T Theoretical or Mathematical", } @Article{Karduck:1996:MWM, author = "Achim P. Karduck and Andr{\'e} Geiser and Thomas Gutekunst", title = "Multimedia at Work: Multimedia Technology in Banking", journal = j-IEEE-MULTIMEDIA, volume = "3", number = "4", pages = "82--86", month = "Winter", year = "1996", CODEN = "IEMUE4", DOI = "http://dx.doi.org/10.1109/93.556464", ISSN = "1070-986X (print), 1941-0166 (electronic)", ISSN-L = "1070-986X", bibdate = "Mon Jan 29 16:05:13 MST 2001", bibsource = "http://www.computer.org/multimedia/mu1996/; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses the Portfolio Analysis System (PAS) using Java.", URL = "http://dlib.computer.org/mu/books/mu1996/pdf/u4082.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE MultiMedia", } @Book{Karpinski:1996:BHC, author = "Richard Karpinski", title = "Beyond {HTML}: Covers {Acrobat}, {Java}, {Shockwave}, {VRML}, and More", publisher = pub-OMH, address = pub-OMH:adr, pages = "xxiii + 472", year = "1996", ISBN = "0-07-882198-3", ISBN-13 = "978-0-07-882198-1", LCCN = "QA76.76.H94K37 1996", bibdate = "Wed Aug 14 06:51:54 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$27.95", acknowledgement = ack-nhfb, } @Book{Kaufman:1996:TYA, author = "Sanders {Kaufman, Jr.} and Jeff Perkins and Dina Fleet", title = "Teach yourself {ActiveX} programming in 21 days", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xvi + 575", year = "1996", ISBN = "1-57521-163-7", ISBN-13 = "978-1-57521-163-3", LCCN = "QA76.625 .K38 1996", bibdate = "Thu Aug 14 11:46:32 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Also covers JavaScript.", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575211637.html", acknowledgement = ack-nhfb, } @Article{Kay:1996:JAW, author = "Roger L. Kay", title = "{Java} at Work", journal = j-COMPUTERWORLD, volume = "30", number = "20", pages = "85, 88", day = "13", month = may, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Tue May 21 12:50:07 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Kay:1996:JC, author = "Jeffrey Kay", title = "{Java} and {C++}", journal = j-DDJ, volume = "21", number = "11", pages = "8, 10", month = nov, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Oct 15 06:55:32 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Comments on \cite{Stevens:1996:CPH}.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Keefe:1996:JWB, author = "Patricia Keefe", title = "{JavaSoft} won't be snubbed", journal = j-COMPUTERWORLD, volume = "30", number = "44", pages = "130--130", day = "28", month = oct, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Nov 08 15:30:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "????", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Kent:1996:ONJ, author = "Peter Kent and John Kent", title = "Official {Netscape JavaScript} Book: The Nonprogrammer's Guide to Interactive {Web} Pages", publisher = pub-VENTANA-COMM-GROUP, address = pub-VENTANA-COMM-GROUP:adr, pages = "xx + 480", day = "1", month = jul, year = "1996", ISBN = "1-56604-465-0", ISBN-13 = "978-1-56604-465-3", LCCN = "QA76.73.J39K46 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1566044650/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.99", acknowledgement = ack-nhfb, dimensions = "9.24in x 7.36in x 1.39in", keywords = "Java (computer program language)", paperback = "yes", } @InProceedings{Kero:1996:ISD, author = "B. Kero and S. Tsur", title = "The {IQ} System: {A} deductive database information lens for reasoning about textual information", crossref = "Pedreschi:1996:LDI", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6160K (Deductive databases); C7250R (Information retrieval techniques)", conflocation = "San Miniato, Italy; 1--2 July 1996", conftitle = "Logic in Databases. International Workshop LID '96. Proceedings", corpsource = "Decision and Inf. Sci. Div., Argonne Nat. Lab., IL, USA", countrypub = "Germany", keywords = "context-base; data visualisation; deductive database; deductive databases; document; information; information lens; information retrieval; Internet; IQ System; JAVA; LDL++ deductive database; reasoning; repositories; retrieval; textual information; Wide Web; World", treatment = "A Application; P Practical", } @Book{Kierdorf:1996:IPJ, author = "Wolfgang H.-D. Kierdorf", title = "{Internet Programmierung mit Java}", publisher = pub-AW, address = pub-AW:adr, pages = "308", year = "1996", ISBN = "3-612-28134-8", ISBN-13 = "978-3-612-28134-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "40 DM", URL = "http://www.addison-wesley.de/", acknowledgement = ack-nhfb, language = "German", } @Article{Kikinis:1996:DBA, author = "Ron Kikinis and Martha E. Shenton and Dan V. Iosifescu and Robert W. McCarley and Pairash Saiviroonporn and Hiroto H. Hokama and Andre Robatino and David Metcalf and Cynthia G. Wible and Chiara M. Portas and Robert M. Donnino and Ferenc A. Jolesz", title = "A Digital Brain Atlas for Surgical Planning, Model-Driven Segmentation, and Teaching", journal = j-IEEE-TRANS-VIS-COMPUT-GRAPH, volume = "2", number = "3", pages = "232--241", month = sep, year = "1996", CODEN = "ITVGEA", ISSN = "1077-2626 (print), 1941-0506 (electronic), 2160-9306", ISSN-L = "1077-2626", bibdate = "Fri Jan 12 18:12:02 MST 2001", bibsource = "http://www.computer.org/tvcg/tg1996/; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Illustrates the use of Java for display and visualization of medical images.", URL = "http://dlib.computer.org/tg/books/tg1996/pdf/v0232.pdf; http://www.computer.org/tvcg/tg1996/v0232abs.htm", acknowledgement = ack-nhfb, fjournal = "IEEE Transactions on Visualization and Computer Graphics", } @Article{Kim:1996:RAW, author = "Eugene Eric Kim", title = "Running at {Warp} Speed", journal = j-DDJ, volume = "21", number = "12", pages = "12--12", month = dec, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Oct 30 05:46:04 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Brief discussion of Java products under IBM OS/2.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{King:1996:JTG, author = "Julia King", title = "{Java} top guns seek glory, not gold", journal = j-COMPUTERWORLD, volume = "30", number = "42", pages = "2--2", day = "14", month = oct, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Nov 08 15:30:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "????", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @InProceedings{Kleinoder:1996:MER, author = "J. Kleinoder and M. Golm", title = "{MetaJava}: an efficient run-time meta architecture for {Java}", crossref = "Cabrera:1996:PFI", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6150J (Operating systems); C6140D (High level languages); C6150C (Compilers, interpreters and other processors)", conflocation = "Seattle, WA, USA; 27--28 Oct. 1996", conftitle = "Proceedings of the Fifth International Workshop on Object-Orientation in Operating Systems", corpsource = "Dept. of Comput. Sci. IV, Erlangen-Nurnberg Univ., Germany", keywords = "adaptability; computing; concurrent; distributed computing; Java; just-in-; location control; meta objects; MetaJava; method invocation; mobile objects; object-; object-oriented languages; object-oriented programming; of data; operating; operating systems (computers); oriented language; program compilers; reflection; remote; run-time meta architecture; run-time performance; security; security policies; software performance evaluation; system; time compilation", sponsororg = "IEEE Comput. Soc. Tech. Committee on Oper. Syst.; USENIX", treatment = "P Practical", } @InProceedings{Kleinoeder:1996:MER, author = "J{\"u}rgen Kleinoeder and Michael Golm", title = "{MetaJava}: An efficient run-time meta architecture for {Java}", crossref = "Cabrera:1996:PFI", pages = "54--61", year = "1996", bibdate = "Sat Jan 25 15:06:13 MST 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Adaptability to special requirements of applications is a crucial concern of modern operating system architectures. Reflection and meta objects are means to achieve this adaptability. This paper reports on ideas and experience we obtained while extending the run-time system of the object-oriented language Java with reflective capabilities. We explain our model of an object-oriented architecture that allows flexible and selective attachment of reflective properties to objects. We show how reflection can be obtained with minimal changes to the existing system and how the penalty in run-time performance can be minimized. Our architecture is not limited to special application domains like distributed or concurrent computing but can also be used to support different security policies, just-in-time compilation, location control of mobile objects, etc. As an example, a remote method invocation mechanism is described to demonstrate how the Java programming model can be enhanced using our meta architecture.", acknowledgement = ack-nhfb, affiliation = "Univ of Erlangen-Nuernberg", affiliationaddress = "Ger", classification = "722.4; 723; 723.1; 723.2; 723.3", conference = "Proceedings of the 1996 5th International Workshop on Object Orientation in Operating Systems", journalabr = "Int Workshop Object Orientat Oper Syst", keywords = "Computer architecture; Computer operating systems; Computer systems programming; Concurrency control; Distributed computer systems; Java programming language; Meta objects; Object oriented programming; Remote method invocation mechanism; Run time systems; Security of data", meetingaddress = "Seattle, WA, USA", meetingdate = "Oct 27--28 1996", meetingdate2 = "10/27--28/96", } @Book{Knappe:1996:CSA, author = "Heiko Knappe and Till S. Schwalm", title = "{Chip Special\slash Anwenderpraxis: HTML und Java}", publisher = "Vogel", address = "W{\"u}rzburg, Germany", pages = "138", year = "1996", ISBN = "3-8259-1382-1 (??invalid checksum??)", ISBN-13 = "978-3-8259-1382-3 (??invalid checksum??)", LCCN = "????", bibdate = "Thu Aug 14 17:40:22 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "34 DM", URL = "http://medweb.uni-muenster.de/zbm/liti/design.html#473", acknowledgement = ack-nhfb, language = "German", } @Book{Knappe:1996:HJH, author = "Heiko Knappe and Till S. Schwalm", title = "{HTML und Java: HTML-Crashkurs mit vielen Tips, Applets zum Einbinden in eigene HTML-Seiten, Programmierung mit Java, grosser Referenzteil, Java-Zauberei}", publisher = "Vogel", address = "W{\"u}rzburg, Germany", pages = "138", year = "1996", ISBN = "3-8259-1382-1", ISBN-13 = "978-3-8259-1382-3", LCCN = "????", bibdate = "Mon Jun 22 09:09:44 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "34 DM", URL = "http://medweb.uni-muenster.de/zbm/liti/design.html#473", acknowledgement = ack-nhfb, language = "German", xxtitle = "{Chip Special\slash Anwenderpraxis: HTML und Java}", } @Book{Knecht:1996:WDJ, author = "Joachim Knecht", title = "{Web Design mit Java}", publisher = pub-SV, address = pub-SV:adr, pages = "????", month = oct, year = "1996", ISBN = "3-540-61182-7", ISBN-13 = "978-3-540-61182-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.springer.de/", note = "Includes CD-ROM.", price = "40 DM", URL = "http://www.springer.de/", acknowledgement = ack-nhfb, language = "German", xxnote = "Check author name: Jochim or Joachim??", } @Book{Knobloch:1996:JBB, author = "Frank Knobloch", title = "{Java: (Das BHV Buch)}", publisher = pub-BHV, address = pub-BHV:adr, pages = "????", month = sep, year = "1996", ISBN = "3-89360-335-2", ISBN-13 = "978-3-89360-335-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.ctn-service.com/bhv/inhalt.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "79 DM", URL = "????", acknowledgement = ack-nhfb, language = "German", } @Article{Knowles:1996:SWJ, author = "Anne Knowles", title = "Second-wave {Java} tools tuned to perform", journal = j-DATAMATION, volume = "42", number = "18", pages = "82--??", month = "????", year = "1996", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Tue Jan 26 09:28:04 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "If you're fed up with the prehistoric state of Java {GUI} builders, debuggers, and compilers (what compilers?), help is on the way in second- generation Java tools", acknowledgement = ack-nhfb, fjournal = "Datamation", } @Book{Kooros:1996:JBW, author = "Paul Kooros and Michele DeWolfe and David Heib", title = "{JavaScript}: Blueprints to a world beyond {HTML}", publisher = pub-PRIMA, address = pub-PRIMA:adr, pages = "xii + 337", day = "1", month = aug, year = "1996", ISBN = "0-7615-0685-3", ISBN-13 = "978-0-7615-0685-0", LCCN = "A76.73.J39K66 1996", bibdate = "Mon Jun 22 08:15:02 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0761506853/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35.00", acknowledgement = ack-nhfb, dimensions = "9.22in x 7.48in x 0.91in", paperback = "yes", xxnote = "Library of Congress says authors are Paul Kooros and Michele DeWolfe. This ISBN occurs under \cite{Jacobs:1996:JBW,Heib:1996:J,Kooros:1996:JBW}.", } @Book{Koosis:1996:JPD, author = "Donald J. Koosis and David S. Koosis", title = "{Java} Programming for Dummies", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xxvi + 382 (or 408??)", day = "1", month = jun, year = "1996", ISBN = "1-56884-995-8", ISBN-13 = "978-1-56884-995-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1568849958/wholesaleproductA/; http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.99", URL = "http://db.www.idgbooks.com/database/book/isbn/generic-book.tmpl?query=1-56884-995-8; http://www.idgbooks.com/database/book_result.msql?uid=uidg323&isbn=1-56884-995-8", acknowledgement = ack-nhfb, dimensions = "9.17in x 7.38in x 1.04in", paperback = "yes", } @TechReport{Kramer:1996:JP, author = "Doug Kramer", title = "The {Java} Platform", type = "Report", institution = pub-SUN, address = pub-SUN:adr, pages = "????", year = "1996", bibdate = "Wed Mar 03 07:39:45 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://java.sun.com/doc/whitePaper.Platform/JavaPlatform.doc.html", abstract = "This paper defines the Java Platform and provides descriptions of each of its parts. It is written for developers and others interested in understanding the wide range of environments where Java-powered applets and applications can run.\par For more up-to-date and detailed information about the features and architecture of the Java Platform and development environment, refer to the Developer's Corner at the JavaSoft web site http://java.sun.com. In particular, see The Java Language Environment: A White Paper.\par The Java Platform is developed by JavaSoft, an operating company of Sun Microsystems, Inc.", acknowledgement = ack-nhfb, } @Article{Krishna:1996:PRC, author = "Dileep Krishna", title = "Product Reviews: {Caf{\'e}}: the Right Place for {Java}", journal = j-COMPUTER, volume = "29", number = "7", pages = "104--108", month = jul, year = "1996", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Mon Aug 19 08:41:56 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computer", } @Book{Kuhnel:1996:JF, author = "Ralf K{\"u}hnel", title = "{Die Java Fibel: Programmierung interaktiver Homepages f{\"u}r das World Wide Web}", publisher = pub-AW, address = pub-AW:adr, pages = "224", year = "1996", ISBN = "3-8273-1024-X (??Invalid checksum??)", ISBN-13 = "978-3-8273-1024-8 (??Invalid checksum??)", LCCN = "????", bibdate = "Wed Feb 21 07:43:39 2001", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "59,90 DM", URL = "http://www.addison-wesley.de/; http://www.addison-wesley.de/KD/NE/1024.html", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.addison-wesley.de/", } @Book{Ladd:1996:PEU, author = "Eric Ladd and Jim O'Donnell", title = "Platinum Edition Using {HTML}, {Java} and {CGI}", publisher = pub-QUE, address = pub-QUE:adr, pages = "xlvi + 1471", month = nov, year = "1996", ISBN = "0-7897-0932-5", ISBN-13 = "978-0-7897-0932-5", LCCN = "QA76.76.H94L33 1996", bibdate = "Tue Feb 24 15:32:30 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$69.99", acknowledgement = ack-nhfb, keywords = "HTML (document markup language); Java (computer program; language); technology --- computers and computer technology; World Wide Web (information retrieval system)", } @Book{Ladd:1996:UHJa, author = "Eric Ladd and Jim O'Donnell and Jerry Ablan and others", title = "Using {HTML} 3.2, {Java} 1.1, and {CGI}: Platinum Edition", publisher = pub-QUE, address = pub-QUE:adr, pages = "xlvi + 1471", day = "1", month = nov, year = "1996", ISBN = "0-7897-0932-5", ISBN-13 = "978-0-7897-0932-5", LCCN = "QA76.76.H94L33 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/07897/bud/0789709325.html; http://www.amazon.com/exec/obidos/ISBN=0789709325/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes two CD-ROMs.", price = "US\$69.99", acknowledgement = ack-nhfb, dimensions = "9.46in x 7.64in x 2.38in", keywords = "HTML (document markup language); Java (computer program language); technology -- computers and computer technology; World Wide Web (information retrieval system)", } @Book{Ladd:1996:UHJb, author = "Eric Ladd", title = "Using {HTML}, {Java} and {CGI}, Platinum Edition", publisher = pub-MACMILLAN-COMPUTER, address = pub-MACMILLAN-COMPUTER:adr, pages = "????", month = nov, year = "1996", ISBN = "0-614-20289-2", ISBN-13 = "978-0-614-20289-2", LCCN = "????", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$69.99", acknowledgement = ack-nhfb, keywords = "CGI (computer network protocol); HTML (document markup; Java (computer program language); language)", } @Book{Laffra:1996:AJI, author = "Chris Laffra", title = "Advanced {Java}: Idioms, Pitfalls, Styles and Programming Tips", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xv + 270", day = "12", month = sep, year = "1996", ISBN = "0-13-534348-8", ISBN-13 = "978-0-13-534348-7", LCCN = "QA76.73.J38L34 1997", bibdate = "Mon Jun 22 08:16:11 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0135343488/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$35.95", URL = "http://members.aol.com/laffra/book.html", acknowledgement = ack-nhfb, dimensions = "9.24in x 7.04in x 1.01in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Article{Lakos:1996:LCS, author = "J. Lakos", title = "Large-scale {C++} software design: physical hierarchy. 2 Effective testing, improved maintainability, independent reuse", journal = j-C-PLUS-PLUS-REPORT, volume = "8", number = "8", pages = "55--64", month = sep, year = "1996", CODEN = "CRPTE7", ISSN = "1040-6042", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6110B (Software engineering techniques); C6150C (Compilers, interpreters and other processors); C6140D (High level languages)", corpsource = "Mentor Graphics Corp., Warren, NJ, USA", fjournal = "C++ Report", keywords = "C language; C++ software design-time; compile-time coupling; compiled languages; component include; encapsulation; graph; independent; large-scale C++ software design; large-scale systems; logical; object-oriented languages; object-oriented programming; physical dependencies; physical design; physical design rules; physical hierarchy; program; program compilers; relationships; run-time efficiency; separate translation; software maintainability; software maintenance; software reusability; software reuse; software testing; testing; units", treatment = "P Practical", } @Book{Lalani:1996:JPLa, author = "Suleiman `Sam' Lalani and Kris A. Jamsa", title = "{Java} Programmer's Library", publisher = pub-JAMSA, address = pub-JAMSA:adr, pages = "iv + 556", year = "1996", ISBN = "1-884133-26-6", ISBN-13 = "978-1-884133-26-8", LCCN = "QA76.73.J38L35 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1884133266/wholesaleproductA/; http://www.jamsa.com/jp.htm; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.95", URL = "http://www.jamsa.com/catalog/javalib/javalib.htm", acknowledgement = ack-nhfb, dimensions = "10.38in x 8.51in x 1.38in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Book{Lalani:1996:JPLb, author = "Suleiman Lalani and Kris Jamsa", title = "{Java Programmer's Library, Deutsche Ausgabe}", publisher = pub-FRANZIS-VERLAG, address = pub-FRANZIS-VERLAG:adr, pages = "????", month = sep, year = "1996", ISBN = "3-7723-4573-5", ISBN-13 = "978-3-7723-4573-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.franzis-buch.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "German translation of \cite{Lalani:1996:JPLa}. Includes CD-ROM.", price = "89 DM", URL = "http://www.franzis-buch.de/katalog/javalibrary/", acknowledgement = ack-nhfb, language = "German", } @InProceedings{Lamping:1996:VLT, author = "John Lamping and Ramana Rao", title = "Visualizing large trees using the hyperbolic browser", crossref = "Tauber:1996:PCH", pages = "388--389", year = "1996", bibdate = "Thu Dec 12 16:46:56 MST 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Xerox Palo Alto Research Cent", affiliationaddress = "Palo Alto, CA, USA", classification = "722.2; 722.4; 723.1.1; 723.2; 723.5; 903.3", conference = "Proceedings of the 1996 Conference on Human Factors in Computing Systems, CHI 96", journalabr = "Conf Hum Fact Comput Syst Proc", keywords = "C (programming language); Computational geometry; Data structures; Display devices; Focus plus context scheme; Graphical user interfaces; Hierarchical systems; Hyperbolic browser; Hyperbolic plane; Information retrieval; Information visualization; Interactive computer graphics; Interactive computer systems; JAVA language; LISP (programming language); Mathematical techniques; Visualization; Web Space visualization", meetingaddress = "Vancouver, BC, Can", meetingdate = "Apr 13--18 1996", meetingdate2 = "04/13--18/96", } @Book{Laurel:1996:J, author = "Chris Laurel", title = "{3-D Java}", publisher = pub-NRP, address = pub-NRP:adr, pages = "xxviii + 383", day = "1", month = jul, year = "1996", ISBN = "1-56205-597-6", ISBN-13 = "978-1-56205-597-4", LCCN = "QA76.73.J38F73 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/newriders/; http://www.amazon.com/exec/obidos/ISBN=1562055976/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", URL = "http://www.mcp.com/nrp/", acknowledgement = ack-nhfb, xxtitle = "{3D Java}", } @Article{Lavallee:1996:SLB, author = "Paul C. Lavallee", title = "Shedding Light on {Broadway}: While it reminds people of {Java}, the {X} follow-on has a set of powerful capabilities in its own right", journal = j-X-J, volume = "5", number = "5", pages = "32--34, 36", month = may, year = "1996", CODEN = "XJOUEA", ISSN = "1056-7003", bibdate = "Tue May 07 06:55:10 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "The X Journal", } @Book{Lea:1996:CPJ, author = "Douglas Lea", title = "Concurrent Programming in {Java}: Design Principles and Patterns", publisher = pub-AW, address = pub-AW:adr, pages = "xii + 339", day = "1", month = nov, year = "1996", ISBN = "0-201-69581-2 (paperback)", ISBN-13 = "978-0-201-69581-6 (paperback)", LCCN = "QA76.73.J38L4 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0201695812/wholesaleproductA/; http://www.aw.com/devpress/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.76", series = "Addison/Wesley Java series Java series", URL = "http://www.aw.com/cseng/titles/0-201-69581-2/", acknowledgement = ack-nhfb, dimensions = "9.24in x 7.45in x 0.74in", keywords = "Java (Computer program language); Parallel programming (Computer science); technology -- computers and computer technology", paperback = "yes", } @Book{Lea:1996:JVW, author = "Rodger Lea and Kouichi Matsuda and Ken Miyashita", title = "{Java} for {3D} and {VRML} Worlds", publisher = pub-NRP, address = pub-NRP:adr, pages = "xiii + 399", day = "1", month = dec, year = "1996", ISBN = "1-56205-689-1", ISBN-13 = "978-1-56205-689-6", LCCN = "QA76.73.J38L43 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/newriders/; http://www.amazon.com/exec/obidos/ISBN=1562056891/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$45.00", URL = "http://www.mcp.com/cgi-bin/bag?isbn=1-56205-689-1&last=/bookstore", acknowledgement = ack-nhfb, dimensions = "9.03in x 7.31in x 1.06in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Article{Leach:1996:RHJ, author = "George W. Leach", title = "Review: Hooked on {Java}", journal = j-LOGIN, volume = "21", number = "3", pages = "55--??", month = jun, year = "1996", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Wed Aug 13 10:48:45 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/cgi-bin/sortbib.pl?-sA", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{Leach:1996:RJP, author = "George W. Leach", title = "Review: The {Java} Programming Language", journal = j-LOGIN, volume = "21", number = "5", pages = "46--??", month = oct, year = "1996", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Wed Aug 13 10:48:45 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/cgi-bin/sortbib.pl?-sA", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @TechReport{Lehman:1996:H, author = "Mike Lehman", title = "{HotTEA}", type = "Web page", institution = "Cereus Design Corp.", address = "1199 Forest Ave., Suite 264, Pacific Grove, CA 93950, USA, Voice \& Fax: 408-626-3016", pages = "????", year = "1996", bibdate = "Mon Mar 10 22:36:05 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Implements a simple Basic interpreter in Java.", URL = "http://www.mbay.net/~cereus7/HotTEA.html", } @Book{Lemay:1996:JT, author = "Laura Lemay and Charles L. Perkins", title = "{Java in 21 Tagen}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, pages = "571", year = "1996", ISBN = "3-87791-865-4", ISBN-13 = "978-3-87791-865-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", note = "Includes CD-ROM.", price = "79 DM", URL = "http://rendezvous.com/java/book.html; http://slack.lne.com/lemay/index.html; http://www.mut.com/", acknowledgement = ack-nhfb, language = "German", } @Book{Lemay:1996:LLW, author = "Laura Lemay and Michael G. Moncur", title = "{Laura Lemay}'s {Web} Workshop {JavaScript}", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxix + 393", day = "1", month = sep, year = "1996", ISBN = "1-57521-141-6", ISBN-13 = "978-1-57521-141-1", LCCN = "QA76.73.J39L47 1996", bibdate = "Mon Jun 22 08:26:04 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1575211416/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99, CDN\$56.95, CDN\$37.50", series = "Laura Lemay's Web Workshop Series", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575211416.html", acknowledgement = ack-nhfb, dimensions = "9.11in x 7.40in x 1.17in", paperback = "yes", } @Book{Lemay:1996:PJ, author = "Laura Lemay and Charles L. Perkins", title = "Le Programmeur {Java}", publisher = pub-SIMON-SCHUSTER-FRANCE, address = pub-SIMON-SCHUSTER-FRANCE:adr, pages = "xvii + 498", year = "1996", ISBN = "2-7440-0104-X", ISBN-13 = "978-2-7440-0104-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ssm.fr/", note = "French translation of \cite{Lemay:1996:TYJa}. Includes CD-ROM.", price = "220 FF", series = "Le Programmeur", URL = "http://slack.lne.com/lemay/index.html", acknowledgement = ack-nhfb, language = "French", xxnote = "Wrong ISBN in french.html: has 2-84180-078-4 instead of 2-7440-0104-X, and missing Perkins as second author.", xxtitle = "{Java}", } @Book{Lemay:1996:TYJa, author = "Laura Lemay and Charles L. Perkins", title = "Teach Yourself {Java} in 21 Days", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxiv + 527", year = "1996", ISBN = "1-57521-030-4", ISBN-13 = "978-1-57521-030-8", LCCN = "QA76.73.J38L46 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.amazon.com/exec/obidos/ISBN=1575210304/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM. 250,000 copies of this book were sold in its first eight weeks.", price = "US\$39.99", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575210304.html; http://www.mcp.com/13113543955138/cgi-bin/bag?isbn=1-57521-030-4&last=/bookstore", acknowledgement = ack-nhfb, dimensions = "9.09in x 7.36in x 1.51in", keywords = "computers and computer technology; Java (computer program language); Java (Computer program language) -- Handbooks, manuals, etc.; programming languages (electronic computers); technology --", paperback = "yes", } @Book{Lemay:1996:TYJb, author = "Laura Lemay and Charles L. Perkins and Tim Webster", title = "Teach Yourself {Java} for {MacIntosh} in 21 Days", publisher = pub-HAYDEN, address = pub-HAYDEN:adr, pages = "xviii + 567", month = apr, year = "1996", ISBN = "1-56830-280-0 (paperback)", ISBN-13 = "978-1-56830-280-5 (paperback)", LCCN = "QA76.73.J38L45 1996", bibdate = "Mon Jun 22 16:02:04 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/hayden/; http://www.amazon.com/exec/obidos/ISBN=1568302800/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40.00", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15683/bud/1568302800.html; http://www.mcp.com/hayden/internet/tyjava/index.html", acknowledgement = ack-nhfb, dimensions = "9.07in x 7.33in x 1.57in (paperback), 9.54in x 7.73in x 2.53in (hardback)", keywords = "Java (Computer program language); Macintosh (Computer)", paperback = "yes", } @Book{Lemay:1996:TYJd, author = "Laura Lemay and Charles L. Perkins and Michael Morrison", title = "Teach Yourself {Java} in 21 Days: Professional Reference Edition", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxxvi + 1247", year = "1996", ISBN = "1-57521-183-1", ISBN-13 = "978-1-57521-183-1", LCCN = "QA76.73.J38 L46 1996b", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.amazon.com/exec/obidos/ISBN=1575211831/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$59.99", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575211831.html; http://www.mcp.com/cgi-bin/bag?isbn=1-57521-183-1&last=/bookstore", acknowledgement = ack-nhfb, dimensions = "9.07in x 7.33in x 1.57in (paperback), 9.54in x 7.73in x 2.53in (hardback)", keywords = "Java (Computer program language); Macintosh (Computer)", paperback = "yes", } @Book{Lemay:1996:TYS, author = "Laura Lemay and Charles L. Perkins and Rogers Cadenhead", title = "Teach Yourself {Sunsoft Java Workshop} in 21 Days", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxvi + 622", year = "1996", ISBN = "1-57521-159-9", ISBN-13 = "978-1-57521-159-6", LCCN = "QA76.73.J39L46 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.amazon.com/exec/obidos/ISBN=1575211599/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575211599.html; http://www.mcp.com/cgi-bin/bag?isbn=1-57521-159-9&last=/bookstore", acknowledgement = ack-nhfb, dimensions = "9.08in x 7.39in x 1.61in", paperback = "yes", } @Book{Lemay:1996:WWN, author = "Laura Lemay and Ned Snell", title = "{Laura Lemay's Web} workshop: {Netscape Gold} and {JavaScript}", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxii + 368", year = "1996", ISBN = "1-57521-128-9", ISBN-13 = "978-1-57521-128-2", LCCN = "TK5105.883.N48L466 1996", bibdate = "Fri Jun 14 13:26:46 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575211289.html; http://www.mcp.com/samsnet/", acknowledgement = ack-nhfb, xxtitle = "Netscape navigator gold 3", } @Article{Lemay:1996:YJI, author = "Laura Lemay and Charles Perkins", title = "Yes, {Java} is Secure. Here's Why --- Secure transactions on the {Internet}? Yup. Here, today, now. Just run {Java-compiled} bytecode on a {Java Virtual Machine}, and you can keep the cyberpunks off the {Internet}", journal = j-DATAMATION, volume = "42", number = "5", pages = "47--??", month = "????", year = "1996", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat May 4 17:16:13 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Datamation", } @Article{Lemay:1996:YJS, author = "Laura Lemay and Charles Perkins", title = "Yes, {Java}'s secure. Here's why", journal = j-DATAMATION, volume = "42", number = "????", pages = "47--49", month = "????", year = "1996", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat Oct 12 16:26:29 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Datamation", keywords = "Internet --- Access control; Java (Computer language)", } @Article{Levin:1996:SSN, author = "Rich Levin and Mary Hayes", title = "{Sun}'s Shiny New Object: Meet {Joe}, a universal messaging widget that eases development of globally distributed apps. The {Web} will never be the same", journal = j-INFORMATION-WEEK, volume = "572", pages = "14--15", day = "25", month = mar, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Thu Aug 15 14:29:39 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "From the article: ``Sun's product, named Joe, will be a universal messaging widget that will make developing globally distributed apps as easy as adding three lines of Java code.''", acknowledgement = ack-nhfb, fjournal = "Information Week", } @Book{Levine:1996:LJD, author = "David Levine", title = "Live {Java}: Database to Cyberspace", publisher = pub-AP-PROFESSIONAL, address = pub-AP-PROFESSIONAL:adr, pages = "xxi + 323", month = aug, year = "1996", ISBN = "0-12-445485-2", ISBN-13 = "978-0-12-445485-9", LCCN = "QA76.73.J38L48 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0124454852/wholesaleproductA/; http://www.apnet.com/approfessional/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$24.95", URL = "http://www.apcatalog.com/cgi-bin/AP?ISBN=0124454852&LOCATION=US&FORM=FORM2", acknowledgement = ack-nhfb, dimensions = "9.28in x 7.41in x 0.96in", keywords = "advertising; business -- advertising and public relations; internet; Java (Computer program language)", lccnalt = "96-023412", paperback = "yes", } @Article{Levitt:1996:MN, author = "J. Levitt", title = "The making of an {NC}", journal = j-INFORMATION-WEEK, volume = "????", number = "606", pages = "64, 68, 72", day = "18", month = "????", year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D5010D (Selection guides); D5020 (Computer networks and intercomputer communications)", fjournal = "Information Week", keywords = "Boundless Technologies; buyer's guides; Computer XL; corporate desktop; HDS Network Systems; Java Virtual Machine; local area networks; microcomputers; NC; Network; network computers; Reference Profile standard; terminal vendors; thin client desktop; Workstation Supra 66; X; X terminal software; X terminals", treatment = "P Practical; R Product Review", } @Article{Levitt:1996:NWC, author = "J. Levitt", title = "The new {Web} clients [browser comparison]", journal = j-INFORMATION-WEEK, volume = "576", number = "576", pages = "73--74, 76, 78", day = "22", month = apr, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D2080 (Information services and database systems); D5000 (Office automation - computing)", fjournal = "Information Week", keywords = "ActiveX; browser comparison; client; Communications Corp.; compatibility; core components; desktop operating system; DP industry; execution; groupware; HTML; information networks; Internet; intranets; Java; Java applet; Java run-time environment; licensable technology; Microsoft Internet Explorer 3.0 for; Netscape; Netscape Navigator 3.0 for Windows 95; OLE; packages; platform-neutral; scripting languages; side JavaScript; software; technology analysis; third-party developers; vendors; Web browser vendors; Web clients; Web server; Windows 95; Windows registry", treatment = "P Practical", } @Article{Levitt:1996:SSL, author = "J. Levitt", title = "Shedding some light on {NCs}", journal = j-INFORMATION-WEEK, volume = "????", number = "606", pages = "57--58, 62, 64", day = "18", month = "????", year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D5010 (Computers and work stations); D5020 (Computer networks and intercomputer communications)", fjournal = "Information Week", keywords = "buyer's guides; Computer; Desktop; Intel; Java; Java applications; JavaOS; local area networks; microcomputers; Microsoft; NCOS operating system; NetPC; Network; network; network computer; network computer desktop architecture; networking; NT Workstation; operating systems; protocols; Sun; TCP/IP; Unix applications; Windows; Windows 95 Workstation; Windows applications; X Window desktops; X-terminal vendors", treatment = "P Practical; R Product Review", } @Article{Lewis:1996:BCB, author = "Ted Lewis", title = "Binary Critic: The big software chill", journal = j-COMPUTER, volume = "29", number = "3", pages = "12--14", month = mar, year = "1996", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Naval Postgraduate Sch., Monterey, CA, USA", classcodes = "C0230 (Economic, social and political aspects of computing); C6000 (Computer software)", corpsource = "Naval Postgraduate Sch., Monterey, CA, USA", fjournal = "Computer", keywords = "computer software; consumer; Information Age; Java; mainstream status; monopoly; positive feedback; pressure; profit; socio-economic effects; software companies; software houses; standards; technology obsolescence; wealth", treatment = "G General Review", } @Article{Lewis:1996:BCW, author = "Ted Lewis", title = "Binary Critic: Will tiny beans conquer the world again?", journal = j-COMPUTER, volume = "29", number = "9", pages = "13--14", month = sep, year = "1996", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses Java and its component technology, Java Beans.", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C7210 (Information services and centres); C6110J (Object-oriented programming)", corpsource = "Naval Postgraduate Sch., Monterey, CA, USA", fjournal = "Computer", keywords = "ActiveX; binaries; Internet; J-code; Java Beans; Java language; Microsoft; middleware; object-oriented languages; software portability; Wintel", treatment = "P Practical", } @Article{Li:1996:WWW, author = "Xin Li and D. J. Valentino and G. J. So and R. Lufkin and R. K. Taira", title = "A {World Wide Web} telemedicine system", journal = j-PROC-SPIE, volume = "2711", number = "????", pages = "427--439", month = "????", year = "1996", CODEN = "PSISDG", ISSN = "0277-786X (print), 1996-756X (electronic)", ISSN-L = "0277-786X", bibdate = "Sat Oct 12 16:26:29 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210R (Multimedia communications); B6210L (Computer communications); C7140 (Medical administration); C6130M (Multimedia); C6130S (Data security); C7330 (Biology and medical computing); C6160S (Spatial and pictorial databases); C6155 (Computer communications software)", conflocation = "Newport Beach, CA, USA; 13--15 Feb. 1996", conftitle = "Medical Imaging 1996. PACS Design and Evaluation: Engineering and Clinical Issues", corpsource = "Dept. of Radiol. Sci., California Univ., Los Angeles, CA, USA", fjournal = "Proceedings of the SPIE --- The International Society for Optical Engineering", keywords = "CGI; communication; consultants; data privacy; health care; hypermedia; hypermedia medical record; information systems; interactive communications; interactive hypermedia medical record; Internet; Java; management; medical; multimedia communication; PACS; physician; privacy issues; radiology; remote access; security; security of data; telemedicine architecture; teleradiology; World Wide Web telemedicine system; World-Wide Web", sponsororg = "SPIE", treatment = "P Practical", } @InProceedings{Liao:1996:FDU, author = "W. S. Liao and See-Mong Tan and R. H. Campbell", title = "Fine-grained, dynamic user customization of operating systems", crossref = "Cabrera:1996:PFI", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6150J (Operating systems); C6110J (Object-oriented programming)", conflocation = "Seattle, WA, USA; 27--28 Oct. 1996", conftitle = "Proceedings of the Fifth International Workshop on Object-Orientation in Operating Systems", corpsource = "Digital Comput. Lab., Illinois Univ., Urbana, IL, USA", keywords = "communications; customizable operating system; fine-grained customization; fine-grained dynamic user customization; interprocess; Java; kernel; object invocation; object-; object-oriented programming; operating system; operating system kernels; oriented frameworks; protection-domain switches", sponsororg = "IEEE Comput. Soc. Tech. Committee on Oper. Syst.; USENIX", treatment = "P Practical", } @Article{Liederman:1996:IT, author = "Erica Liederman", title = "The {Internet} Toaster", journal = j-SUNWORLD-ONLINE, volume = "01", pages = "??--??", year = "1996", ISSN = "1091-8914", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sun.com/sunworldonline/swol-01-1996/swol-01-appliance.html", abstract = "Alluring Java Internet terminal idea meets skepticism from PC, X-terminal makers. Is this a dumb idea -- or will it turn PCs into ``legacy systems''?", acknowledgement = ack-nhfb, fjournal = "SunWorld online", } @Article{Liederman:1996:STC, author = "Erica Liederman", title = "{Sun}'s tempest in the coffee pot", journal = j-SUNWORLD-ONLINE, volume = "02", pages = "??--??", year = "1996", ISSN = "1091-8914", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sun.com/sunworldonline/swol-02-1996/swol-02-javacup.html", abstract = "Was Sun's Java Cup International contest a gimmick to steal code? Plus, other Java-related news.", acknowledgement = ack-nhfb, fjournal = "SunWorld online", } @Article{Linkins:1996:EJH, author = "Kim Fulcher Linkins", title = "Enjoying {Java}? How about some {Joe}?", journal = j-SUN-OBSERVER, volume = "10", number = "5", pages = "1, 7", month = may, year = "1996", ISSN = "1058-5400", bibdate = "Tue May 07 11:03:25 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Sun Observer", } @Article{Linkins:1996:JWP, author = "Kim Fulcher Linkins", title = "{Java Workshop} provides {Web}-based development environment", journal = j-SUN-OBSERVER, volume = "10", number = "5", pages = "1, 6", month = may, year = "1996", ISSN = "1058-5400", bibdate = "Tue May 07 10:56:55 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Sun Observer", } @Article{Linthicum:1996:ADT, author = "David S. Linthicum", title = "App dev tackles the intranet", journal = j-DATAMATION, volume = "42", number = "15", pages = "113--??", day = "1", month = sep, year = "1996", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "As client/server embraces the intranet, tool vendors are recasting their products for the Web while developers have been busy learning new technologies, such as Java and ActiveX.", acknowledgement = ack-nhfb, fjournal = "Datamation", } @Article{Linthicum:1996:CD, author = "David S. Linthicum", title = "{C/S} Developer", journal = j-DBMS, volume = "9", number = "9", pages = "24--??", day = "1", month = aug, year = "1996", CODEN = "DBMSEO", ISSN = "1041-5173", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "The latest batch of Java tools.", acknowledgement = ack-nhfb, fjournal = "DBMS", } @Article{Linthicum:1996:DLL, author = "D. S. Linthicum", title = "{DCE} lightens its load", journal = j-DBMS, volume = "9", number = "7", pages = "24, 26, 28", month = jun, year = "1996", CODEN = "DBMSEO", ISSN = "1041-5173", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "AT and T, Vienna, VA, USA", classcodes = "C6150N (Distributed systems software); C0310H (Equipment and software evaluation methods)", corpsource = "AT and T, Vienna, VA, USA", fjournal = "DBMS", keywords = "client-server systems; client/server computing; DCE-enabled products; DE-Light Web Client; development; Distributed Computing Environment; heterogeneous environment; Internet; Java; Microsoft; middleware product; open systems; open systems standard; projects; reviews; software; Transarc; Windows; World Wide Web browser clients", treatment = "P Practical; R Product Review", } @Article{Linthicum:1996:HCJ, author = "D. S. Linthicum", title = "Here come the {Java} tools", journal = j-DBMS, volume = "9", number = "9", pages = "24, 26, 28", month = aug, year = "1996", CODEN = "DBMSEO", ISSN = "1041-5173", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6115 (Programming support); C7210 (Information services and centres); C6110J (Object-oriented programming); C6140D (High level languages); C6150N (Distributed systems software)", fjournal = "DBMS", keywords = "application development; client-server systems; Internet; Intranet; Java; Navigator 2.0; Netscape; object oriented language; object-oriented languages; object-oriented programming; programming environments; software; software tools; three-tier client server applications; tools; two-tier client server applications; World Wide Web", treatment = "P Practical", } @Article{Liu:1996:FCP, author = "Dianbin Liu", title = "Future of computing in the petroleum industry", journal = j-PROC-PETROLEUM-COMPUT-CONF, pages = "245--254", year = "1996", CODEN = "PPCMEG", bibdate = "Thu Dec 12 16:46:56 MST 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Scientific Software-Intercomp Inc", classification = "511; 722.4; 723.1; 723.2; 723.5; 903", conference = "Proceedings of the 1996 Petroleum Computer Conference", fjournal = "Proceedings --- Petroleum Computer Conference", journalabr = "Proc Pet Comput Conf", keywords = "Calculations; Computer networks; Computer software; Data transfer; Information technology; Interactive computer systems; Internet; Object oriented programming; Petroleum industry; Software Package Java; Software Package JavaScript; User interfaces; Web browser; World Wide Web", meetingaddress = "Dallas, TX, USA", meetingdate = "Jun 2--5 1996", meetingdate2 = "06/02--05/96", } @Book{Lorenz:1996:JOO, author = "Mark Lorenz", title = "{Java} As an Object-Oriented Language", publisher = pub-SIGS-BOOKS-MULTIMEDIA, address = pub-SIGS-BOOKS-MULTIMEDIA:adr, pages = "50", month = jun, year = "1996", ISBN = "1-884842-40-2", ISBN-13 = "978-1-884842-40-5", LCCN = "QA76.73.J38L67 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1884842402/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sigs.com/books/", price = "US\$85.00", series = "Java Report Professional Ser.; Vol. 1", URL = "http://www.sigs.com/books/wp_java.html; http://www.sigs.com/books/wp_javaoo.html", acknowledgement = ack-nhfb, keywords = "Java (computer; Java (Computer program language); object-; Object-oriented programming (Computer science); oriented programming (computer science); program language); technology -- computers and computer technology", } @Book{Lorenz:1996:NOI, author = "Mark Lorenz", title = "Navigating Objects: The Interactive Approach to Object Technology", publisher = pub-SIGS, address = pub-SIGS:adr, pages = "????", month = mar, year = "1996", ISBN = "1-884842-32-1", ISBN-13 = "978-1-884842-32-0", LCCN = "????", bibdate = "Fri May 31 07:14:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$249.00", acknowledgement = ack-nhfb, } @Book{Loy:1996:JPI, author = "Marc Loy and Thomas J. Berry", title = "{Java} Programming for the {Internet}", publisher = pub-PHPTR, address = pub-PHPTR:adr, year = "1996", ISBN = "0-13-270778-0", ISBN-13 = "978-0-13-270778-7", LCCN = "QA76.73.J38 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0132707780/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", note = "CD-ROM only; no printed book.", price = "US\$69.95", URL = "http://www.prenhall.com/allbooks/ptr_0132707780.html", acknowledgement = ack-nhfb, dimensions = "9.70in x 7.12in x 2.09in", keywords = "(computer network); internet; Java (computer program language); technology -- computers and computer technology", } @Article{Lu:1996:PDD, author = "C. Lu", title = "Power documents [document oriented computing]", journal = j-INC, volume = "18", number = "9", pages = "35--??", month = "????", year = "1996", CODEN = "INCCDU", ISSN = "0162-8968", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D2010 (Business and professional); D5050 (Word processing equipment); D2050 (Financial applications)", fjournal = "Inc", keywords = "desktop publishing; document oriented computing; Hot Java; information management; integrated software; interactive computing; linked files; programs; report creation; spreadsheet; spreadsheets; word processing; word processors", treatment = "P Practical", } @Book{Macary:1996:PJ, author = "Jean-Fran{\c{c}}ois Macary and C{\'e}dric Nicolas", title = "Programmation {Java}", publisher = pub-EYROLLES, address = pub-EYROLLES:adr, pages = "236", year = "1996", ISBN = "2-212-08916-3", ISBN-13 = "978-2-212-08916-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.estp.fr/eyrolles/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "168 FF", URL = "http://www.estp.fr/eyrolles; http://www.fisystem.fr/java/javabook.htm#A3; http://www.fisystem.fr/java/{javabook}.htm", acknowledgement = ack-nhfb, keywords = "Langages de programmation; Ordinateurs -- Programmation; Serveurs (informatique) -- Programmation", language = "French", } @Book{MacGregor:1996:WSH, author = "Robert S. MacGregor and Alberto Aresi and Andreas Siegert", title = "www.security: How to Build a Secure {World Wide Web} Connection: Broad based primer on {WWW} Security. Practical examples including {CGI} and {Java}. Business on the {Web} Risk Analysis", publisher = pub-PH, address = pub-PH:adr, pages = "xi + 211", year = "1996", ISBN = "0-13-612409-7 (softcover)", ISBN-13 = "978-0-13-612409-2 (softcover)", LCCN = "TK5105.888.M236 1996", bibdate = "Tue Nov 25 10:11:46 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35.00", series = "ITSO networking series", URL = "http://www.prenhall.com/ptrbooks/ptr_0136124097.html", acknowledgement = ack-nhfb, keywords = "computer networks -- security measures; web sites -- security measures; world wide web (information retrieval system) -- security measures", url-publisher = "http://www.prenhall.com/", } @Article{Mackie:1996:JVC, author = "Jamieson Mackie", title = "{Java} and {VRML} combination may silence critics of both", journal = j-SILICON-GRAPHICS-WORLD, volume = "6", number = "11", pages = "27, 29", month = nov, year = "1996", ISSN = "1057-7041", bibdate = "Sat Nov 16 14:49:41 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Silicon Graphics World", } @Article{Maley:1996:FSA, author = "Maley and L. Kilpatrick and E. W. Schreiner and N. S. Scott and G. H. F. Diercksen", title = "The formal specification of abstract data types and their implementation in {Fortran 90}: implementation issues concerning the use of pointers", journal = j-COMP-PHYS-COMM, volume = "98", number = "1-2", pages = "167--180", month = oct, year = "1996", CODEN = "CPHCBZ", ISSN = "0010-4655 (print), 1879-2944 (electronic)", ISSN-L = "0010-4655", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6120 (File organisation)", corpsource = "Dept. of Appl. Math. and Theor. Phys., Queen's Univ., Belfast, UK", countrypub = "Netherlands", fjournal = "Computer Physics Communications", keywords = "abstract data types; computational-science; data encapsulation; disposal; efficiency; formal; formal specification; FORTRAN; Fortran 90; identification; implementation issues; information hiding; operations; pointers use; software; space; specification; storage management; storage recovery", treatment = "P Practical; T Theoretical or Mathematical", } @Article{Mane:1996:SJP, author = "I. Mane", title = "Survey of the {Java} programming language", journal = j-ELECTRONIK, volume = "45", number = "17", pages = "84--87", day = "20", month = "????", year = "1996", CODEN = "EKRKAR", ISSN = "0013-5658", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6150C (Compilers, interpreters and other processors)", countrypub = "Germany", fjournal = "Elektronik", keywords = "fixed; high level languages; Java programming language; memory partitions; multi-threading; program compilers; source code compiler", language = "German", treatment = "G General Review", } @Book{Manger:1996:EJD, author = "Jason J. Manger", title = "Essential {Java}: Developing Interactive Applications for the {World-Wide Web}", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xi + 364", month = may, year = "1996", ISBN = "0-07-709292-9 (paperback)", ISBN-13 = "978-0-07-709292-4 (paperback)", LCCN = "QA76.73.J38M36 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0077092929/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", note = "Includes CD-ROM.", price = "US\$39.95", URL = "http://www.gold.net/users/ag17/index.htm; http://www.infor.com:53311/cgi/getarec?mgh30062", acknowledgement = ack-nhfb, annote = "System requirements for accompanying computer disc: 32-bit version of Windows and runs on X86-based CPUs (i.e. 80486 and Pentium-based personal computers).", dimensions = "9.07in x 7.31in x 0.95in", keywords = "Java (Computer program language); Java (computer program language); technology -- data processing; World Wide Web (Information retrieval system)", paperback = "yes", } @Book{Manger:1996:JCD, author = "Jason J. Manger", title = "{Java}: The Complete Development Kit", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "????", year = "1996", ISBN = "0-07-709332-1, 0-07-709337-2", ISBN-13 = "978-0-07-709332-7, 978-0-07-709337-2", LCCN = "????", bibdate = "Mon Jun 22 17:45:04 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0077093321/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$39.95", URL = "http://mcgraw-hill.inforonics.com/cgi/getarec?mgh30929%comp", acknowledgement = ack-nhfb, dimensions = "9.14in x 6.67in x 1.79in", keywords = "Java; technology -- computers and computer technology", url-author = "http://www.gold.net/users/ag17/index.html", url-publisher = "http://www.mcgraw-hill.com/", } @Book{Manger:1996:JEC, author = "Jason J. Manger", title = "{Javascript} Essentials: Creating Interactive {Web} Applications", publisher = pub-OSBORNE, address = pub-OSBORNE:adr, pages = "xxxvii + 541", year = "1996", ISBN = "0-07-882234-3", ISBN-13 = "978-0-07-882234-6", LCCN = "QA76.73.J39M37 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0078822343/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$34.95", URL = "http://www.osborne.com/", acknowledgement = ack-nhfb, dimensions = "8.99in x 7.32in x 1.25in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Book{Manning:1996:WPJ, author = "Michael M. Manning", title = "{Web} Programming with {JBuilder}", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "????", year = "1996", ISBN = "1-57521-152-1", ISBN-13 = "978-1-57521-152-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/", xxauthor = "Michelle M. Manning", xxnote = "Library of Congress has: Michelle Manning, Web programming with Latte", } @Article{Mateosian:1996:BBB, author = "Richard Mateosian", title = "Books, books, books", journal = j-IEEE-MICRO, volume = "16", number = "4", pages = "77--79", month = aug, year = "1996", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/MM.1996.526928", ISSN = "0272-1732 (print), 1937-4143 (electronic)", ISSN-L = "0272-1732", bibdate = "Fri Mar 14 12:10:22 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Brief reviews of several Java books.", fjournal = "IEEE Micro", } @Article{Mateosian:1996:MRU, author = "Richard Mateosian", title = "Micro Review --- Unlike {C++}, which seeks to extend {C} and maintain a large degree of backward compatibility, {Java} starts from {C} and rips out its most troublesome and error-prone features", journal = j-IEEE-MICRO, volume = "16", number = "3", pages = "3--5", month = jun, year = "1996", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/MM.1996.502399", ISSN = "0272-1732 (print), 1937-4143 (electronic)", ISSN-L = "0272-1732", bibdate = "Fri Mar 14 12:09:27 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "IEEE Micro", keywords = "Java (Computer language)", xxnote = "Check title?? Issue missing from UofUtah Marriott Library.", } @Misc{Matsumura:1996:JDW, author = "Miko Matsumura and Steven Nathan and Steve Outtrim and Tengku Mohd Azzman Shariffadeen and Francis Yeoh", title = "{Java} Development on the Web", publisher = pub-UNIV-VIDEO-COMM, address = pub-UNIV-VIDEO-COMM:adr, day = "21", month = mar, year = "1996", bibdate = "Sat Apr 19 09:09:01 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "1 videocassette (60 min.). Order number Sun-20.", acknowledgement = ack-nhfb, keywords = "Java (Computer program language)", } @Book{Maurers:1996:CTJ, author = "Rolf M{\"a}urers and Kai Baufeldt", title = "{Das Computer Taschenbuch Java}", publisher = pub-DATA-BECKER, address = pub-DATA-BECKER:adr, pages = "370", year = "1996", ISBN = "3-8158-1553-3", ISBN-13 = "978-3-8158-1553-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.data-becker.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "20 DM", URL = "http://www.data-becker.de/javatest/projekt.htm", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.data-becker.de/", xxauthor = "Kai Baufeldt and Rolf M{\"a}urers", } @Book{Maurers:1996:PPJ, author = "Rolf M{\"a}urers and Kai Baufeldt", title = "{PC} Poche {Java}", publisher = pub-EDITION-MICRO-APPLICATIONS, address = pub-EDITION-MICRO-APPLICATIONS:adr, pages = "384", year = "1996", ISBN = "2-7429-0752-1", ISBN-13 = "978-2-7429-0752-6", LCCN = "????", bibdate = "Fri Oct 24 15:42:35 MDT 2008", bibsource = "carmin.sudoc.abes.fr:210/ABES-Z39-PUBLIC; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.microapp.com/", price = "59 FF", acknowledgement = ack-nhfb, language = "French", url-publisher = "http://www.microapp.com/", } @InProceedings{Maybee:1996:MID, author = "M. J. Maybee and D. M. Heimbigner and L. J. Osterweil", title = "Multilanguage interoperability in distributed systems Experience report", crossref = "IEEE:1996:PICb", pages = "451--463", month = "????", year = "1996", bibdate = "Fri Jan 3 07:17:51 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Dept. of Comput. Sci., Colorado Univ., Boulder, CO, USA", classcodes = "C6150N (Distributed systems software); C6140D (High level languages)", conflocation = "Berlin, Germany; 25--30 March 1996", conftitle = "Proceedings of IEEE 18th International Conference on Software Engineering", corpsource = "Dept. of Comput. Sci., Colorado Univ., Boulder, CO, USA", keywords = "Ada client program; Arcadia software architecture; C; C language; C++; client-server systems; communication mechanism; conceptual model; distributed; heterogeneous component-based software systems; Java; language server; languages; Lisp; LISP; multilanguage interoperability; multilingual; object-oriented; open systems; performance; portability; programming language support; PROLOG; Prolog; Q system; reliability; software portability; software reliability; systems; Tcl", sponsororg = "IEEE Comput. Soc. Tech. Council on Software Eng.; ACM SIGSOFT; Gesellschaft fur Inf", treatment = "G General Review", } @Article{McCandless:1996:ISW, author = "Michael McCandless and Giovanni Flammia", title = "{Internet} Services: Where the {Web} is headed: {Java}'s star turn", journal = j-IEEE-EXPERT, volume = "11", number = "2", pages = "82--83", month = apr, year = "1996", CODEN = "IEEXE7", ISSN = "0885-9000", bibdate = "Fri Mar 14 12:35:07 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", fjournal = "IEEE expert: intelligent systems and their applications", } @Article{McCarthy:1996:GJ, author = "Vance McCarthy", title = "{Gosling} on {Java}", journal = j-DATAMATION, volume = "42", number = "????", pages = "30--37", month = "????", year = "1996", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat Oct 12 16:26:29 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Datamation", keywords = "Gosling, James; Java (Computer language)", } @Article{McCarthy:1996:GJD, author = "Vance McCarthy", title = "{Gosling} on {Java} --- {A} {DATAMATION} exclusive interview with the creator of {Java}, {Sun Microsystems' James Gosling}", journal = j-DATAMATION, volume = "42", number = "5", pages = "30--??", month = "????", year = "1996", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat May 4 17:16:13 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Datamation", } @Article{McCarthy:1996:PJI, author = "Michael McCarthy", title = "From the publisher: {Java} and the {Internet PC}", journal = j-SUNWORLD-ONLINE, volume = "01", pages = "??--??", year = "1996", ISSN = "1091-8914", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sun.com/sunworldonline/swol-01-1996/swol-01-editorial.html", abstract = "Before you make up you mind on the viability of the Internet Toaster, Java terminal, Web PC, or whatever you call it, there are few things you need to understand.", acknowledgement = ack-nhfb, fjournal = "SunWorld online", } @Book{McComb:1996:JSC, author = "Gordon McComb", title = "The {JavaScript} sourcebook: create interactive {JavaScript} programs for the {World Wide Web}", publisher = pub-WILEY-COMPUTER, address = pub-WILEY-COMPUTER:adr, pages = "xxv + 726", day = "1", month = aug, year = "1996", ISBN = "0-614-20338-4, 0-471-16185-3 (paperback)", ISBN-13 = "978-0-614-20338-7, 978-0-471-16185-1 (paperback)", LCCN = "QA76.73.J38M353 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0471161853/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$44.95 (hardback), US\$39.95 (paperback)", URL = "http://www.wiley.com/", acknowledgement = ack-nhfb, dimensions = "9.19in x 7.55in x 1.73in", keywords = "JavaScript (Computer program language); World Wide Web (Information retrieval system)", paperback = "yes", } @Article{McConville:1996:WWL, author = "D. McConville and J. Magid and P. Jones", title = "So wide a {Web}, so little time", journal = j-EDUCOM-REV, volume = "31", number = "3", pages = "44--48", month = may # "-" # jun, year = "1996", CODEN = "EDREEW", ISSN = "1045-9146", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7210 (Information services and centres); C6130M (Multimedia)C6140D (High level languages); C7250 (Information storage and retrieval)", fjournal = "Educom review", keywords = "description languages; HTML; hypermedia; Hypertext Markup Language; Internet; Java; multimedia; object oriented language; object-oriented languages; page; Reality Modelling Language; Virtual; virtual reality; VRML; World Wide Web", treatment = "P Practical", } @Article{McCoy:1996:PBH, author = "John H. McCoy", title = "Programmer's bookshelf: {{\em Hooked on Java}}, by {A. van Hoff, S. Shaio, and O. Starbuch} [review]", journal = j-DDJ, volume = "21", number = "4", pages = "128--??", month = apr, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Mon Sep 2 09:09:39 MDT 1996", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{McGraw:1996:JS, author = "Gary McGraw and Edward Felten", title = "{Java} security", publisher = pub-SIGS-BOOKS-MULTIMEDIA, address = pub-SIGS-BOOKS-MULTIMEDIA:adr, pages = "46", year = "1996", ISBN = "1-884842-72-0", ISBN-13 = "978-1-884842-72-6", LCCN = "????", bibdate = "Tue Sep 02 22:33:52 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sigs.com/books/", price = "US\$85", URL = "http://www.sigs.com/books/wp_javasec.html", acknowledgement = ack-nhfb, keywords = "Computer security; Java (Computer program language); Java (computer program language); technology -- computers and computer technology", } @Book{McIntosh:1996:TJM, author = "Harry McIntosh and Lynnzy Orr", title = "Talk {Java} to Me: The Interactive Click, Listen, and Learn Guide to {Java} Programming", publisher = pub-WAITE-GROUP, address = pub-WAITE-GROUP:adr, pages = "200", year = "1996", ISBN = "1-57169-044-1", ISBN-13 = "978-1-57169-044-9", LCCN = "QA76.73.J38M355 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/waite/; http://www.amazon.com/exec/obidos/ISBN=1571690441/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$24.99", URL = "http://www.mcp.com/cgi-bin/bag?isbn=1-57169-044-1&last=/bookstore", acknowledgement = ack-nhfb, dimensions = "8.94in x 7.32in x 0.80in", keywords = "Java (computer program language); technology -- computers and computer technology", } @Article{McLaughlin:1996:LAL, author = "J. McLaughlin", title = "A look at the leading {Java} development tools", journal = j-SOFTWARE-ECONOMICS-LETTER, volume = "5", number = "11", pages = "4--5", month = nov, year = "1996", CODEN = "SECLE3", ISSN = "1065-6146", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D5000 (Office automation - computing)", corpsource = "Giga Inf. Group, Cambridge, MA, USA", fjournal = "Software Economics Letter", keywords = "buyer's guides; Java development; software tools; Sun Java Workshop; Symantec Java Caf{\'e}; tools", treatment = "E Economic; P Practical; R Product Review", } @Article{McMurdo:1996:HL, author = "G. McMurdo", title = "{HTML} for the lazy", journal = j-J-INFO-SCI-PRINCIPLES-PRACTICE, volume = "22", number = "3", pages = "198--212", month = "????", year = "1996", CODEN = "JIOSED", ISSN = "0165-5515 (print), 1741-6485 (electronic)", ISSN-L = "0165-5515", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7230 (Publishing and reproduction); C6130D (Document processing techniques); C6130M (Multimedia); C7210 (Information services and centres)", corpsource = "Queen Margaret Coll., Edinburgh, UK", countrypub = "UK", fjournal = "Journal of Information Science, Principles and Practice", keywords = "Acrobat software; browsing; electronic publishing; graphical; HTML; HTML production; HTML publishing; HTML syntax; HTML tags; hypermedia; hypertext mark-up language; information professionals; information providers; information provision; Internet; Internet publishing; Java application language; World Wide Web", treatment = "G General Review", } @Article{Meese:1996:OHJ, author = "Philip David Meese", title = "The One Hour {Java} Applet --- Everything you need to know to build your first {Java} applet. Using this tutorial, at the end of one or two hours you will have a working {Java} bar-chart applet and {HTML} page", journal = j-DATAMATION, volume = "42", number = "5", pages = "51--61", month = mar, year = "1996", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat Oct 12 16:26:29 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Datamation", keywords = "Computer science --- Study and teaching; Java (Computer language)", } @Article{Melford:1996:WNT, author = "Bob Melford", title = "{Web} and {Net} Tactics: Looking behind the {Java} jive", journal = j-DIGITAL-NEWS-REVIEW, volume = "13", number = "4", pages = "17--??", month = "????", year = "1996", ISSN = "1065-7452", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Digital News and Review", } @InProceedings{Mendelzon:1996:QWW, author = "A. O. Mendelzon and G. A. Mihaila and T. Milo", title = "Querying the {World Wide Web}", crossref = "IEEE:1996:PFIb", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7250 (Information storage and retrieval); C6130M (Multimedia); C6130D (Document processing techniques); C4210L (Formal languages and computational linguistics); C6140D (High level languages); C7210 (Information services and centres)", conflocation = "Miami Beach, FL, USA; 18--20 Dec. 1996", conftitle = "Proceedings of 4th International Conference on Parallel and Distributed Information Systems", corpsource = "Dept. of Comput. Sci., Toronto Univ., Ont., Canada", keywords = "calculus; computational linguistics; document collection; document network; formal; hypermedia; hypertext links; information; information retrieval requests; Internet; Java; large heterogeneous distributed; locality; multiple index; network servers; process algebra; processing; query; query cost; retrieval; semantics; servers; SQL; textual retrieval; topology-based queries; virtual graph model; Web searching; WebSQL query language; World Wide Web querying", sponsororg = "IEEE Compt. Soc. Tech. Committee on Data Eng.; ACM SIGMOD", treatment = "P Practical", } @Book{Mendinets:1996:JU, author = "Dave Mendinets and others", title = "{JBuilder} Unleashed", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "????", year = "1996", ISBN = "1-57521-103-3", ISBN-13 = "978-1-57521-103-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/", xxtitle = "Latte Unleashed", } @Article{Menkus:1996:JRC, author = "B. Menkus", title = "{Java} raises control, audit, and security issues", journal = j-EDPACS, volume = "24", number = "6", pages = "11--16", month = dec, year = "1996", CODEN = "EDPCDF", ISSN = "0736-6981", ISSN-L = "0736-6981", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming); C0310D (Computer installation management); C6130S (Data security)", corpsource = "Menkus Assoc., Manchester, TN, USA", fjournal = "EDPACS", keywords = "advanced computer program development; auditing; data integrity; information processing applications; information security concerns; integrity; Java; object-; object-oriented languages; oriented programming; security issues; security of data; tool; trustworthiness", treatment = "P Practical", } @Article{Messmer:1996:DWJ, author = "Ellen Messmer", title = "Developers Work out {Java} kinks", journal = j-NETWORK-WORLD, volume = "13", number = "34", pages = "35", day = "19", month = aug, year = "1996", ISSN = "0887-7661", ISSN-L = "0887-7661", bibdate = "Fri Sep 20 11:29:24 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Describes problems in getting the same look-and-feel on different platforms from AWT.", URL = "http://www.nwfusion.com/", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Messmer:1996:SRJ, author = "Ellen Messmer and Carol Sliwa", title = "{Sun} reaffirms {Java} control", journal = j-NETWORK-WORLD, volume = "13", number = "51", pages = "1, 13", day = "16", month = dec, year = "1996", ISSN = "0887-7661", ISSN-L = "0887-7661", bibdate = "Tue Dec 24 14:32:16 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Metz:1996:JJN, author = "Eldon Metz", title = "{Java}, {JFactory}, and network development", journal = j-DDJ, volume = "21", number = "9", pages = "78, 80--82, 85--87", month = sep, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "JFactory is a cross-platform screen painter, prototyper, and code generator for Java that lets you concentrate on the design and functionality of you GUI by generating AWT source code. Eldon uses it to build and Internet-based client/server Java application.", acknowledgement = ack-nhfb, classcodes = "C6115 (Programming support); C6180G (Graphical user interfaces); C6150N (Distributed systems software); C6155 (Computer communications software); C6110V (Visual programming)", fjournal = "Dr. Dobb's Journal of Software Tools", keywords = "Abstract Window; API documentation; application generators; application program interfaces; chat application; classes; client-server communication; client-server systems; code generator; computer communications software; cross-platform screen; domain software; drag-and-drop point-and-click; Events sheet; functionality; graphical user interfaces; GUI; interfaces; Internet; Internet-based client/server Java application; JChat; JFactory; modifiable; network development; network servers; Object Manager; painter; project file; prototyper; public; rapid prototyping; sockets; software prototyping; source code generation; Toolkit; user-added Java source code; visual programming", treatment = "P Practical", } @Misc{Microsoft:1996:MVJ, author = "{Microsoft Corporation}", title = "{Microsoft Visual J++}", publisher = pub-MICROSOFT, address = pub-MICROSOFT:adr, edition = "Professional", year = "1996", bibdate = "Mon Feb 24 15:49:20 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes one CD ROM, getting started card, and poster.", acknowledgement = ack-nhfb, annote = "System requirements: IBM PC or compatible with 486 or higher processor; 8MB RAM (12MB recommended) for Windows 95, 16MB RAM (20MB recommended) for Windows NT Workstation; Microsoft Windows 95 or Windows NT Workstation 4.0 or later; 20MB hard disk space; CD-ROM drive; VGA or higher-resolution monitor (Super VGA recommended); mouse.", keywords = "Application software -- Development -- Software; Java (Computer program language) -- Software", } @Book{Middendorf:1996:JPR, author = "Stefan Middendorf and Reiner Singer and Stefan Strobel", title = "{Java: Programmierhandbuch und Referenz}", publisher = pub-DPUNKT-VERLAG, address = pub-DPUNKT-VERLAG:adr, pages = "811", month = jun, year = "1996", ISBN = "3-920993-38-1", ISBN-13 = "978-3-920993-38-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.dpunkt.de/welcome.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "88,00 DM", URL = "http://www.dpunkt.de/produkte/java.html; http://www.dpunkt.de/welcome.html; http://www.dpunkt.de:80/produkte/Java.html; http://www.emedia.de/bin/bookshop?show=4605&id=", acknowledgement = ack-nhfb, language = "German", } @Unpublished{Milowski:1996:KSI, author = "R. A. Milowski and P. Bothner", title = "The {Kawa} scheme interpreter project", year = "1996", bibdate = "Mon Oct 13 08:29:49 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Kawa translates the scheme programming language (a simplified Lisp) to Java bytecodes. Kawa is compared with Harissa in \cite{Muller:1997:HFE}.", URL = "http://www.copsol.com/kawa/index.html", acknowledgement = ack-nhfb, } @Book{MindQ:1996:JLI, author = "MindQ", title = "{Java} Live: An Interactive Learning Tool", publisher = pub-ZD, address = pub-ZD:adr, pages = "????", year = "1996", ISBN = "1-56276-482-9", ISBN-13 = "978-1-56276-482-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/zdpress/; http://www.amazon.com/exec/obidos/ISBN=1562764829/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", acknowledgement = ack-nhfb, keywords = "Java (computer program language); technology -- computers and computer technology", xxauthor = "Anonymous", } @Book{Mintert:1996:JGE, author = "Stefan Mintert", title = "{JavaScript}: Grundlagen und Einf{\"u}hrung", publisher = pub-AW, address = pub-AW:adr, pages = "300", year = "1996", ISBN = "3-8273-1087-3 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1087-3 (??invalid ISBN??)", LCCN = "????", bibdate = "Tue Mar 03 09:18:59 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "60 DM", URL = "http://www.addison-wesley.de/; http://www.addison-wesley.de/KD/PR/1087.html", acknowledgement = ack-nhfb, language = "German", } @Article{Mione:1996:XOB, author = "A. N. Mione", title = "{X} opens on {Broadway}", journal = j-DIGITAL-SYS-REP, volume = "18", number = "4", pages = "8--10", month = "Fall", year = "1996", CODEN = "DSREFP", ISSN = "1086-9638", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6150N (Distributed systems software); C7210 (Information services and centres)", corpsource = "Network Services, Rutgers Univ., NJ, USA", fjournal = "Digital Systems Report", keywords = "Broadway architecture; CGI; client-server systems; client/server platform; HTML; Internet; Java; Web technologies; X", treatment = "P Practical", } @Book{Misgeld:1996:EJ, author = "Wolfgang Misgeld and J{\"u}rgen Gruber", title = "{Einstieg in Java}", publisher = pub-CARL-HANSER, address = pub-CARL-HANSER:adr, pages = "187", year = "1996", ISBN = "3-446-18836-3", ISBN-13 = "978-3-446-18836-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.hanser.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "56 DM", URL = "http://www.hanser.de/computer/buecher/mi18836.htm", acknowledgement = ack-nhfb, language = "German", } @InProceedings{Mitchell:1996:JBFa, author = "Jim Mitchell", title = "{Java OS}: Back to the Future", crossref = "USENIX:1996:SOS", institution = "JavaSoft", pages = "1--??", day = "28--31", month = oct, year = "1996", bibdate = "Mon Oct 21 13:49:48 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/cgi-bin/sortbib.pl?-sA", acknowledgement = ack-nhfb, } @Article{Mitchell:1996:JBFb, author = "James G. Mitchell", title = "{JavaOS}: back to the future", journal = j-OPER-SYS-REV, volume = "30", number = "SI", pages = "1--1", month = oct, year = "1996", CODEN = "OSRED8", ISSN = "0163-5980", ISSN-L = "0163-5980", bibdate = "Sat Aug 26 08:55:58 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Operating Systems Review", } @Book{Mohseni:1996:WDP, author = "Piroz Mohseni", title = "{Web} Database Primer Plus: Connect Your Database to the {World Wide Web} Using {HTML}, {CGI}, and {Java}", publisher = pub-WAITE-GROUP, address = pub-WAITE-GROUP:adr, pages = "xxvii + 482", year = "1996", ISBN = "1-57169-070-0 (softcover)", ISBN-13 = "978-1-57169-070-8 (softcover)", LCCN = "QA76.9.D26M66 1996", bibdate = "Sat Sep 13 14:36:20 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$44.99", } @Article{Moncur:1996:LEA, author = "Michael Moncur", title = "Letter to the Editor: Adventures in {JavaScript}", journal = j-BYTE, volume = "21", number = "12", pages = "20--20", month = dec, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Tue Nov 19 07:30:38 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Morin:1996:INJ, author = "Richard Morin", title = "The {Internet Notebook Java} And {JavaScript}", journal = j-UNIX-REVIEW, volume = "14", number = "8", pages = "87--??", day = "1", month = jul, year = "1996", CODEN = "UNRED5", ISSN = "0742-3136", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", acknowledgement = ack-nhfb, fjournal = "UNIX review", } @Book{Morrison:1996:JU, author = "Michael Morrison and others", title = "{Java} unleashed: Everything you need to master {Java}", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxxii + 971", year = "1996", ISBN = "1-57521-049-5 (paperback)", ISBN-13 = "978-1-57521-049-0 (paperback)", LCCN = "QA76.73.J38J384 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM. CD-ROM includes Symantec Caf{\'e} Lite, Sun's Java 1.01 Developers Kit, plug-ins and helper apps, and HTML editors and utilities for Windows and Macintosh. Covers Version 1.0", price = "US\$49.99, CDN\$69.99, UK\pounds 46.95", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575210495.html; http://www.mcp.com/194152836633/cgi-bin/bag?isbn=1-57521-049-5&last=/bookstore; http://www.mcp.com/cgi-bin/bag?isbn=1--57521-049-5&last=/", acknowledgement = ack-nhfb, keywords = "Java (Computer program language); World Wide Web (Information retrieval system)", xxauthor = "Appears to be same as \cite{Morrow:1996:JU}.", xxnote = "Library of Congress says authors are Mike Fletcher and others; this ISBN is recorded for \cite{Fanta:1996:JU,Morrison:1996:JU,Morrow:1996:JU}.", } @Book{Morrison:1996:TYI, author = "Michael Morrison", title = "Teach Yourself {Internet} Game Programming With {Java} in 21 Days", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xvi + 416", month = sep, year = "1996", ISBN = "1-57521-148-3", ISBN-13 = "978-1-57521-148-0", LCCN = "QA76.76.C672M677 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.amazon.com/exec/obidos/ISBN=1575211483/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575211483.html; http://www.mcp.com/30549809800454/cgi-bin/bag?isbn=1-57521-148-3&last=/bookstore; http://www.mcp.com/samsnet/", acknowledgement = ack-nhfb, dimensions = "9.13in x 7.38in x 1.15in", paperback = "yes", } @Book{Morrow:1996:JU, editor = "Cindy Morrow and others", title = "{Java} Unleashed", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxxii + 971", year = "1996", ISBN = "1-57521-049-5", ISBN-13 = "978-1-57521-049-0", LCCN = "QA76.73.J38J384 1996", bibdate = "Thu Aug 22 08:52:38 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM with Symantec Caf{\'e} Lite, Sun's Java 1.01 Developers Kit, plug-ins and helper apps, and HTML editors and utilities for Windows and Macintosh", price = "US\$49.99", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575210495.html", acknowledgement = ack-nhfb, xxauthor = "Appears to be same as \cite{Morrison:1996:JU}.", xxnote = "Library of Congress says authors are Mike Fletcher and others; this ISBN is recorded for \cite{Fanta:1996:JU,Morrison:1996:JU,Morrow:1996:JU}.", } @Book{Moseley:1996:DJP, author = "Tom Moseley", title = "Dummies 101: {Java} Programming", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "????", month = sep, year = "1996", ISBN = "0-7645-0068-6", ISBN-13 = "978-0-7645-0068-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0764500686/wholesaleproductA/; http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$24.99", acknowledgement = ack-nhfb, keywords = "Java (computer program language); technology -- computers and computer technology", } @InProceedings{Moulding:1996:PAC, author = "M. R. Moulding and M. J. Newton", title = "Progressive animation of {CORE} requirements via an underlying formal model", crossref = "Samson:1996:PSQ", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110F (Formal methods); C6130B (Graphics techniques); C6115 (Programming support)", conflocation = "Dundee, UK; 9--10 July 1996", conftitle = "Proceedings of the 5th Software Quality Conference", corpsource = "Royal Mil. Coll. of Sci., Cranfield Univ., Shrivenham, UK", countrypub = "UK", keywords = "action-semantic; advanced CORE; animation; C++ language; characteristics; communicating sequential processes; computer animation; connectivity; control-flow animation; Controlled Requirements Expression method; CORE requirements model; data; data path activation; data-flow animation; flow analysis; formal; formal specification; information processing; information processing semantics; Java programming language; model; model functions; model-based formalism; processing behaviour; progressive animation; requirements elicitation; software tools; specification techniques; support tool; transaction; transaction processing; Unix", sponsororg = "Scottish Enterprise Tayside", treatment = "P Practical", } @Misc{MPI:1996:HJP, author = "{MindQ Publishing, Inc}", title = "Hands on {Java} programming using {Microsoft Visual J++}", publisher = "MindQ Publishing, Inc.", address = "Herndon, VA, USA", year = "1996", bibdate = "Mon Feb 24 15:49:20 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", acknowledgement = ack-nhfb, annote = "System requirements: 486 SX, 33 MHz processor or better; Windows 95 or Windows NT 4.0; 3 MB hard disc space; 8 MB RAM; SUGA monitor; sound card recommended; Double-speed CD-ROM drive; mouse.", keywords = "Java (Computer Program Language); Microsoft Software.", } @Book{Muller:1996:JMP, author = "Claus M. M{\"u}ller", title = "{Java: Mehr als eine Programmiersprache: Konzepte und Einsatzm{\"o}glichkeiten}", publisher = pub-DPUNKT-VERLAG, address = pub-DPUNKT-VERLAG:adr, pages = "98", year = "1996", ISBN = "3-920993-44-6", ISBN-13 = "978-3-920993-44-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.dpunkt.de/welcome.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "49,00 DM", URL = "http://www.dpunkt.de/produkte/javamehr.html; http://www.dpunkt.de:80/produkte/Javamehr.html", acknowledgement = ack-nhfb, language = "German", } @Article{Munck:1996:AJM, author = "Bob Munck", title = "{Ada95} and {Java}: {A} Major Opportunity for the {Ada} Community", journal = j-SIGADA-LETTERS, volume = "16", number = "1", pages = "18--20", month = jan # "/" # feb, year = "1996", CODEN = "AALEE5", ISSN = "0736-721X", ISSN-L = "0736-721X", bibdate = "Wed Jan 24 08:04:16 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "New mailing list \path|web_ada@acm.org| created for discussion of Ada-Java issues. Send subscription requests to \path|mailserv@acm.org| with no subject line and a body consisting of the lines \begin{verbatim} subscribe web_ada help \end{verbatim}", acknowledgement = ack-nhfb, fjournal = "ACM SIGADA Ada Letters", } @Article{Muramoto:1996:WAB, author = "E. Muramoto", title = "{WWW} application building tool {Walts}", journal = j-NEC-TECH-J, volume = "49", number = "7", pages = "152--156", month = jul, year = "1996", CODEN = "NECGEZ", ISSN = "0285-4139", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210L (Computer communications); C7210 (Information services and centres); C5620W (Other computer networks); C6130M (Multimedia); C6115 (Programming support); C6110B (Software engineering techniques); C7250 (Information storage and retrieval)", countrypub = "Japan", fjournal = "NEC Technical Journal = NEC giho", keywords = "CASE tool; CGI; computer aided software engineering; hypermedia; hypertext documents; interactive network applications; Internet; Java; JavaScript; loosely linked information; Netscape Navigator; software tools; systems; viewers; Walts; Web; WWW application building tool; WWW servers", language = "Japanese", treatment = "A Application; P Practical", } @Article{Murphy:1996:SL, author = "P. Murphy", title = "Standardizing on a language?", journal = j-OBJECT-MAG, volume = "6", number = "4", pages = "34--37", month = jun, year = "1996", CODEN = "OBMAFO", ISSN = "1055-3614", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming); C7120 (Financial computing)", corpsource = "WSC Technol., New York, NY, USA", fjournal = "Object Magazine", keywords = "C++; compilers; Eiffel; financial data processing; interpreters; Java; language features; language standardisation; object-; object-oriented languages; Objective C; oriented programming; Smalltalk; WSC Investment Services", treatment = "G General Review", } @Book{Murray:1996:VJH, author = "William H. Murray and Chris H. Pappas", title = "The {Visual J++} handbook", publisher = pub-AP-PROFESSIONAL, address = pub-AP-PROFESSIONAL:adr, pages = "xv + 574", month = oct, year = "1996", ISBN = "0-12-511915-1", ISBN-13 = "978-0-12-511915-3", LCCN = "A76.73.J38 M87 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.apnet.com/approfessional/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", URL = "http://www.apcatalog.com/cgi-bin/AP?ISBN=0125119151&LOCATION=US&FORM=FORM2", acknowledgement = ack-nhfb, keywords = "Java (Computer program language); Microsoft Visual J++", } @Book{Nagarathnam:1996:JNA, author = "Nataraj Nagarathnam and Brian Maso and Arvind Srinivasan", title = "{Java} networking and {AWT API} superbible: the comprehensive reference to the {Java} programming language: everything you ever needed to know about {Java} applets and its networking and windowing {APIs}", publisher = pub-WAITE-GROUP, address = pub-WAITE-GROUP:adr, pages = "xvii + 930", day = "1", month = jul, year = "1996", ISBN = "1-57169-031-X", ISBN-13 = "978-1-57169-031-9", LCCN = "QA76.73.J38N34 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/waite/; http://www.amazon.com/exec/obidos/ISBN=157169031X/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "119,00 DM; US\$59.95", URL = "http://www.mcp.com/cgi-bin/bag?isbn=1-57169-031-X&last=/bookstore; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm; http://www.waite.com/waite/", acknowledgement = ack-nhfb, annote = "System requirements for accompanying computer disk: Windows, UNIX, Macintosh; Windows 95, Windows NT or Solaris.", dimensions = "8.94in x 7.03in x 1.95in", keywords = "computer; Java (computer program language); networks; technology -- computers and computer technology", paperback = "yes", } @InProceedings{Nagaratnam:1996:JAA, author = "Nataraj Nagaratnam", title = "{Java} Applets and the {AWT}", crossref = "USENIX:1996:PSUb", pages = "??--??", year = "1996", bibdate = "Mon Oct 21 14:29:18 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/coots96/", acknowledgement = ack-nhfb, } @Article{Nance:1996:KNS, author = "B. Nance", title = "Keep networks safe from viruses", journal = j-BYTE, volume = "21", number = "11", pages = "167, 169, 171, 173, 175", month = nov, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6130S (Data security); C0310D (Computer installation management); C5620 (Computer networks and techniques); D1060 (Security); D5020 (Computer networks and intercomputer communications)", fjournal = "BYTE Magazine", keywords = "ActiveX components; antivirus scanning; backup plan; buggy software; centralized; computer networks; computer viruses; e-mail messages; interconnectedness; Internet; Java applets; spreadsheet files; word processing", treatment = "P Practical", } @InProceedings{Natoli:1996:SPB, author = "Anthony J. Natoli", title = "Software patents: beating a dead horse and other important concerns", crossref = "IEEE:1996:EPP", pages = "269--276", year = "1996", bibdate = "Thu Dec 12 16:46:56 MST 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Dilworth \& Barrese", affiliationaddress = "Uniondale, NY, USA", classification = "723.1; 723.1.1; 723.2; 902.3; 911.4", conference = "Proceedings of the ELECTRO'96", journalabr = "Electro Int Conf Proc", keywords = "Algorithms; Codes (symbols); Compton New Media patent; Computer programming languages; Computer software; Copyright protection; Data structures; Economics; International trade; Java; Laws and legislation; Marketing; Microsoft; Netscape; Patent protection; Patentability; Patents and inventions; Software engineering; Software industry; Windows", meetingaddress = "Somerset, NJ, USA", meetingdate = "Apr 30--May 2 1996", meetingdate2 = "04/30--05/02/96", sponsor = "IEEE", } @Book{Naughton:1996:JH, author = "Patrick Naughton", title = "The {Java} Handbook", publisher = pub-OMH, address = pub-OMH:adr, pages = "xxiv + 424", year = "1996", ISBN = "0-07-882199-1", ISBN-13 = "978-0-07-882199-8", LCCN = "QA76.73.J38 N38 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0078821991/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.osborne.com/", price = "US\$27.95", URL = "http://db.www.idgbooks.com/database/book/isbn/generic-book.tmpl?query=0-7645-3003-8; http://www.osborne.com/int/{javah}.htm", acknowledgement = ack-nhfb, dimensions = "9.12in x 7.40in x 0.94in", keywords = "Java (computer program language); Java (Computer program language); technology -- data processing; World Wide Web (Information retrieval system)", paperback = "yes", } @Book{Naughton:1996:JHJ, author = "Patrick Naughton", title = "The {Java} Handbook [{Java} chuan wei tao yin shou tse]", publisher = "McGraw-Hill Inc. [Hudson Technology]", address = "Taipei, Taiwan", pages = "20 + 594", year = "1996", ISBN = "957-8496-07-9 (??invalid ISBN??)", ISBN-13 = "978-957-8496-07-1 (??invalid ISBN??)", LCCN = "????", bibdate = "Mon Aug 18 07:55:47 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.hudson.com.tw; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Chinese translation of \cite{Naughton:1996:JH} by Chen Phi Rhong.", price = "500 NT\$", URL = "http://www.hudson.com.tw; http://www.hudson.com.tw/cbookn.html#N20C; http://www.starwave.com/people/naughton/", acknowledgement = ack-nhfb, language = "Chinese", } @Article{Neilson:1996:EIW, author = "I. Neilson and R. Thomas and C. Smeaton and A. Slater and G. Chand", title = "{Education 2000}: implications of {W3} technology", journal = j-COMP-EDU, volume = "26", number = "1-3", pages = "113--122", month = apr, year = "1996", CODEN = "COMEDR", ISSN = "0360-1315", ISSN-L = "0360-1315", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7110 (Educational administration); C7810C (Computer-aided instruction); C5620W (Other computer networks); C7210 (Information services and centres); C7250R (Information retrieval techniques); C6130M (Multimedia); C6160Z (Other DBMS); C6185 (Simulation techniques)", conflocation = "Cambridge, UK; 10--13 April 1995", conftitle = "Computer Assisted Learning. CAL 95 Symposium", corpsource = "Inst. of Computer-Based Learning, Heriot-Watt Univ., Edinburgh, UK", countrypub = "UK", fjournal = "Computers and Education", keywords = "digital simulation; educational; educational computing; educational opportunities; environment; Facility; globally interlinked; Hotjava; hypermedia; hypermedia environment; hypermedia network; information retrieval; Interact Communication; Interact project; Interact Simulation Environment; Internet; Java language; learning environment; learning process; MATLAB; Presentation Manager; W3 technology; World Wide Web", treatment = "P Practical", } @Book{Neou:1996:HCJa, author = "Vivian Neou and Mimi Recker", title = "{HTML} 3.0 {CD} With {JavaScript} for the {Mac} and Power {Mac}", publisher = pub-PH, address = pub-PH:adr, pages = "xix + 441", day = "1", month = jun, year = "1996", ISBN = "0-13-439399-6", ISBN-13 = "978-0-13-439399-5", LCCN = "QA76.76.H94 N43 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0134393996/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$44.95", acknowledgement = ack-nhfb, dimensions = "9.22in x 7.07in x 1.37in", keywords = "HTML (Document markup language); Java (Computer program language)", paperback = "yes", } @Book{Neou:1996:HCJb, author = "Vivian Neou", title = "{HTML} 3.0 {CD} with {JavaScript}", publisher = pub-PH, address = pub-PH:adr, pages = "????", month = sep, year = "1996", ISBN = "0-13-243353-2", ISBN-13 = "978-0-13-243353-2", LCCN = "????", bibdate = "Sat Jan 4 12:20:44 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$44.95", acknowledgement = ack-nhfb, keywords = "HTML (document markup language); JavaScript (computer program; language); technology --- computers and computer technology", } @Book{Neou:1996:HCJc, author = "Vivian Neou", title = "{HTML} 3.0 {CD} with {JavaScript}", publisher = pub-PH, address = pub-PH:adr, pages = "????", month = sep, year = "1996", ISBN = "0-13-243353-2", ISBN-13 = "978-0-13-243353-2", LCCN = "????", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$44.95", acknowledgement = ack-nhfb, keywords = "HTML (document markup language); JavaScript (computer program language); technology --- computers and computer technology", xxnote = "Duplicate ISBN in \cite{Neou:1996:HCJc,Neou:1997:HCJa}.", } @Article{Newman:1996:EJ, author = "Alex Newman", title = "Had Enough {Java}?", journal = j-SUNEXPERT, volume = "7", number = "4", pages = "49--51", month = apr, year = "1996", ISSN = "1053-9239", bibdate = "Tue Apr 16 06:19:04 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Newman:1996:HHH, author = "Alex Newman", title = "Hurry, Hurry, Hurry, \ldots{}", journal = j-SUNEXPERT, volume = "7", number = "6", pages = "42, 44", month = jun, year = "1996", ISSN = "1053-9239", bibdate = "Tue Jun 25 09:54:16 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses Military Java and JUGMAP (Java User Group for Military Applications). See \path|http://www.sug.org/jugmap.html|.", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Book{Newman:1996:MJ, author = "Alex Newman", title = "Le {Macmillan Java}", publisher = pub-SIMON-SCHUSTER-FRANCE, address = pub-SIMON-SCHUSTER-FRANCE:adr, pages = "xxv + 771", year = "1996", ISBN = "2-7440-0147-3", ISBN-13 = "978-2-7440-0147-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ssm.fr/", note = "French translation of \cite{Newman:1996:UJC}. Includes CD-ROM.", price = "249 FF", URL = "http://www.ssm.fr/catalog/fiches/0147.htm", acknowledgement = ack-nhfb, language = "French", } @Book{Newman:1996:UJC, author = "Alexander Newman and others", title = "Using {Java} with {CD-ROM}: Special edition", publisher = pub-QUE, address = pub-QUE:adr, edition = "Special", pages = "xliv + 869", day = "1", month = apr, year = "1996", ISBN = "0-7897-0604-0", ISBN-13 = "978-0-7897-0604-1", LCCN = "QA76.73.J38U85 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.amazon.com/exec/obidos/ISBN=0789706040/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$49.99", URL = "http://www.mcp.com/21855341933474/cgi-bin/bag?isbn=0-7897-0604-0&last=/bookstore", acknowledgement = ack-nhfb, dimensions = "9.05in x 7.36in x 2.37in", keywords = "communication networks; computer networks; computer programming; computer programs; information retrieval; information systems; Internets; Java (Computer programming language); object-oriented programming; Object-oriented programming (Computer science); programming languages; World Wide Web; World wide web servers", paperback = "yes", xxauthor = "Edward Toupin", xxtitle = "Special Edition Using {Java}", } @Book{Newman:1996:UJS, author = "Alex Newman", title = "Using {Java}, Special Ed", publisher = pub-MACMILLAN, address = pub-MACMILLAN:adr, pages = "????", month = mar, year = "1996", ISBN = "0-614-14450-7", ISBN-13 = "978-0-614-14450-5", LCCN = "????", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", acknowledgement = ack-nhfb, keywords = "Java (computer program language)", } @Book{NewRiders:1996:JAR, author = "{New Riders Publishing Staff} and others", title = "{Java API} Reference: {Java}, Applet and {Java.awt} {API} Packages", publisher = pub-NRP, address = pub-NRP:adr, pages = "416", month = jul, year = "1996", ISBN = "1-56205-598-4", ISBN-13 = "978-1-56205-598-1", LCCN = "96-028598", bibdate = "Mon Sep 15 23:02:14 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.99", acknowledgement = ack-nhfb, keywords = "Java (computer program language)", xxnote = "This ISBN occurs under \cite{Fraizer:1996:JAR,NewRiders:1996:JAR}.", } @Article{Nickerson:1996:BRJa, author = "Doug Nickerson and Peter {van der Linden}", title = "Book Review: {Just Java}", journal = j-DDJ, volume = "21", number = "12", pages = "134--??", month = dec, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Mon Dec 2 07:52:21 MST 1996", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Nickerson:1996:BRJb, author = "Doug Nickerson and David Flanagan's", title = "Book Review: {Java in a Nutshell}", journal = j-DDJ, volume = "21", number = "12", pages = "134--??", month = dec, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Mon Dec 2 07:52:21 MST 1996", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Nickerson:1996:BRJc, author = "Doug Nickerson and David H. {Friedel Jr} and Anthony Potts", title = "Book Review: {Java Programming Language Handbook}", journal = j-DDJ, volume = "21", number = "12", pages = "134--??", month = dec, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Mon Dec 2 07:52:21 MST 1996", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Nickerson:1996:HJ, author = "Douglas A. Nickerson", title = "Hooked on {Java}", journal = j-CCCUJ, volume = "14", type = "Book Review", number = "11", pages = "79--80", month = nov, year = "1996", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Wed Nov 6 07:30:58 MST 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Extensive review of \cite{vanHoff:1996:HJ}.", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Nickerson:1996:RHJ, author = "Douglas A. Nickerson", title = "Review: {Hooked on Java}", journal = j-CCCUJ, volume = "14", number = "11", pages = "79--80", month = nov, year = "1996", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Sat Nov 02 06:00:36 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Extensive review of \cite{vanHoff:1996:HJC}.", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Book{Niemeyer:1996:EJ, author = "Pat Niemeyer and Josh Peck", title = "Exploring {Java}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xv + 407", day = "1", month = jun, year = "1996", ISBN = "1-56592-184-4", ISBN-13 = "978-1-56592-184-9", LCCN = "QA76.73.J38N54 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1565921844/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", price = "US\$24.95", URL = "http://www.ora.com/www/item/expjava.html", acknowledgement = ack-nhfb, dimensions = "9.17in x 7.01in x 0.95in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Book{Niemeyer:1996:JEI, author = "Patrick Niemeyer and Joshua Peck", title = "{Java --- Expedition ins Programmierreich}", publisher = pub-ORA, address = pub-ORA:adr, pages = "????", month = dec, year = "1996", ISBN = "3-930673-52-5 (??invalid ISBN??)", ISBN-13 = "978-3-930673-52-0 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.de/", note = "Includes CD-ROM.", price = "69 DM", URL = "http://www.ora.de/", acknowledgement = ack-nhfb, language = "German", } @Book{Niemeyer:1996:JPP, author = "Patrick Niemeyer and Joshua Peck", title = "{Java} par La Pratique", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxi + 413", month = oct, year = "1996", ISBN = "2-84177-022-2", ISBN-13 = "978-2-84177-022-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.editions-oreilly.fr/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "French translation of \cite{Niemeyer:1996:EJ}. Includes CD-ROM.", price = "220 FF", URL = "http://www.editions-oreilly.fr/international/france/prog/expjava.html; http://www.ora.de/", acknowledgement = ack-nhfb, language = "French", } @Article{Nieuwenhuis:1996:IBC, author = "L. Nieuwenhuis and F. Bergsma", title = "{Internet} as a basis for commerce", journal = j-INFORMATIE, volume = "38", number = "????", pages = "26--30", month = nov, year = "1996", CODEN = "INFTCR", ISSN = "0019-9907", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7100 (Business and administration); C7210 (Information services and centres); C0230 (Economic, social and political aspects of computing)", countrypub = "Netherlands", fjournal = "Informatie", keywords = "ActiveX; business communication; business data processing; cable; commerce; commercial; costing; developments; fixed links; future electronic highway; Internet; intranets; Java; links; marketing data processing; NetPC; network; network computers; payment methods; pricing; processor capacity; radio transmission; satellite; technical developments; telephone; WebTV", language = "Dutch", treatment = "G General Review", } @Article{Nilsen:1996:JR, author = "K. Nilsen", title = "{Java} for Real-Time", journal = j-REAL-TIME-SYST, volume = "11", number = "2", pages = "197--205", month = sep, year = "1996", CODEN = "RESYE9", ISSN = "0922-6443", ISSN-L = "0922-6443", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming)", corpsource = "Center for Adv. Technol. Dev., Iowa State Univ., Ames, IA, USA", countrypub = "Netherlands", fjournal = "Real-Time Systems", keywords = "Java; object-oriented languages; programming language; Real-; real-time characteristics; Time Java", treatment = "G General Review; P Practical", } @Article{Norman:1996:IRJ, author = "A. Norman and J. Fitch", title = "Interfacing {REDUCE} to {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1128", pages = "271--276", year = "1996", CODEN = "LNCSD9", ISBN = "3-540-61697-7", ISBN-13 = "978-3-540-61697-9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Oct 29 14:12:39 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6150C (Compilers, interpreters and other processors); C6130 (Data handling techniques); C6140 (Programming languages)", conflocation = "Karlsruhe, Germany; 18--20 Sept. 1996", conftitle = "Proceedings of International Symposium on Design and Implementation of Symbolic Computation Systems", corpsource = "Comput. Lab., Cambridge Univ., UK", countrypub = "Germany", fjournal = "Lecture Notes in Computer Science", keywords = "algebra systems; Java; problem solving; program processors; programming languages; REDUCE; scientific problem-solving; software bus; symbol manipulation", treatment = "P Practical", } @Book{Norton:1996:PNC, author = "Peter Norton", title = "{Peter Norton}'s Complete Guide To {Jakarta}, Premiere Edition", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "????", year = "1996", ISBN = "1-57521-176-9", ISBN-13 = "978-1-57521-176-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/", } @Book{Norton:1996:PNG, author = "Peter Norton and William R. Stanek", title = "{Peter Norton}'s Guide to {Java} Programming", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxiv + 875", year = "1996", ISBN = "1-57521-088-6", ISBN-13 = "978-1-57521-088-9", LCCN = "QA76.73.J38N67 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://merchant.superlibrary.com:8000/catalog/mcp/PRODUCT/PAGE/15752/bud/1575210886.html; http://www.amazon.com/exec/obidos/ISBN=1575210886/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99, CDN\$56.95, UK\pounds 37.50", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575210886.html; http://www.mcp.com/samsnet/", acknowledgement = ack-nhfb, dimensions = "9.03in x 7.31in x 1.89in", keywords = "Java (computer program language); technology -- computers and computer technology", } @Article{Notess:1996:JCN, author = "Greg R. Notess", title = "{Java} creates new potential for {Internet} information", journal = j-ONLINE, volume = "20", number = "2", pages = "82--84, 86", month = mar # "-" # apr, year = "1996", CODEN = "ONLIDN", ISSN = "0146-5422", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Montana State Univ., Bozeman, MT, USA", classcodes = "C7210 (Information services and centres); C6150N (Distributed systems software); C6140D (High level languages)C6110 (Systems analysis and programming)", corpsource = "Montana State Univ., Bozeman, MT, USA", fjournal = "Online", keywords = "based information resources; high level languages; information delivery; Internet; Internet information; Internet resources; Internet tools; Internet-based publications; Java; Java programming; Microsystems; network-; programming; programs; providers; Sun; Web performance", treatment = "G General Review", } @InProceedings{Nygren:1996:ASM, author = "K. Nygren and I.-M. Jonsson and O. Carlvik", title = "An agent system for media on demand services", crossref = "Anonymous:1996:PPF", pages = "437--454", year = "1996", bibdate = "Sat Oct 12 15:29:39 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210R (Multimedia communications); C6130M (Multimedia); C6150N (Distributed systems software); C7210 (Information services and centres)", conflocation = "London, UK; 22--24 April 1996", conftitle = "Proceedings of First International Conference on Practical Application of Intelligent Agents and Multi-Agent Technology", corpsource = "Media Lab., Ericsson Telecom AB, Stockholm, Sweden", countrypub = "UK", keywords = "adaptive profiles; agent system; client-server systems; interactive television; Internet; Java implementation; media on demand services; media sources; multimedia systems; Netscape; software agents; system; unwanted information filtering; user friendly media on demand", treatment = "P Practical", } @Article{OBrien:1996:MPL, author = "Michael O'Brien", title = "{Mr. P} and the Language Barrier", journal = j-SUNEXPERT, volume = "7", number = "2", pages = "20, 22, 24--25", month = feb, year = "1996", ISSN = "1053-9239", bibdate = "Fri Feb 23 07:55:25 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{OBrien:1996:MPO, author = "Michael O'Brien", title = "{Mr. Protocol} Opens Some Free Samples", journal = j-SUNEXPERT, volume = "7", number = "8", pages = "14, 16, 18, 20", month = aug, year = "1996", ISSN = "1053-9239", bibdate = "Sat Aug 17 09:34:10 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Extensive commentary on Java.", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Book{Oliver:1996:NU, author = "Dick Oliver and Selby Bateman and David Wade and Neil Randall", title = "{Netscape} Unleashed", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xxxv + 942", day = "1", month = feb, year = "1996", ISBN = "1-57521-007-X", ISBN-13 = "978-1-57521-007-0", LCCN = "TK5105.883.N48N48 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=157521007X/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/157521007X.html", acknowledgement = ack-nhfb, dimensions = "9.15in x 7.58in x 2.45in", paperback = "yes", } @InProceedings{Olsen:1996:EN, author = "L. Olsen", title = "The {etaCOM} network", crossref = "IEEE:1996:PFC", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210L (Computer communications); B6250 (Radio links and equipment); B6210R (Multimedia communications); C5620W (Other computer networks); C7210 (Information services and centres)", conflocation = "Portland, OR, USA; 7--10 May 1996", conftitle = "Proceedings of COM'96. First Annual Conference on Emerging Technologies and Applications in Communications", keywords = "asynchronous transfer mode; ATM; automatic teller machines; client-server systems; etaCOM network; information networks; Internet; Internet services; interoperability; JAVA; multimedia; multimedia communication; radiocommunication; temporary Internet services; video; visual communication; wireless", sponsororg = "IEEE Comput. Soc. Tech. Committee on Comput. Commun.; ACM SIGARCH; ACM SIGCOMM; ACM SIGMULTI", treatment = "A Application", } @Article{Olympia:1996:CFA, author = "P. L. Olympia", title = "{Cold Fusion 1.5}, {Autobahn}", journal = j-DBMS, volume = "9", number = "8", pages = "33--34, 36, 38", month = jul, year = "1996", CODEN = "DBMSEO", ISSN = "1041-5173", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Allaire Corp., Minneapolis, MN, USA", classcodes = "B6210L (Computer communications); C6150N (Distributed systems software); C5620W (Other computer networks); C5690 (Other data communication equipment and techniques)", corpsource = "Allaire Corp., Minneapolis, MN, USA", fjournal = "DBMS", keywords = "Allaire; Autobahn; back end; client-server systems; client/server applications; Cold Fusion; corporate; databases; HTML; Internet; Intranet; Java; network servers; ODBC drivers; reviews; software; software products; Speedware; SQL; Web applications", treatment = "P Practical; R Product Review", } @Book{ONeal:1996:APJ, author = "Miles O'Neal and Tom Stewart", title = "{AWT} Programming for {Java}", publisher = pub-MIS # " and " # pub-MT, address = pub-MIS:adr # " and " # pub-MT:adr, pages = "xx + 444", month = nov, year = "1996", ISBN = "1-55851-494-5", ISBN-13 = "978-1-55851-494-2", LCCN = "QA76.73.J38O82 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1558514945/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mispress.com/", price = "US\$39.95", URL = "http://www.idgbooks.com/cgi-bin/db/fill_out_template.pl?idgbook:1-55851-494-5:book-idg::uidg1388", acknowledgement = ack-nhfb, dimensions = "9.20in x 7.16in x 1.13in", keywords = "Java; technology -- computers and computer technology", paperback = "yes", } @Article{Oualline:1996:HEM, author = "Steve Oualline", title = "Hype elevating mediocre {Java} to exalted status --- for a while", journal = j-HP-CHRONICLE, volume = "13", number = "9", pages = "20--20", month = aug, year = "1996", ISSN = "0892-2829", bibdate = "Tue Aug 13 18:42:10 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "HP Chronicle", } @Article{Ouellette:1996:AGN, author = "Tim Ouellette", title = "{AS\slash 400} goes native with {Java}", journal = j-COMPUTERWORLD, volume = "30", number = "47", pages = "39--39", day = "18", month = nov, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Sat Nov 23 17:29:32 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Ouellette:1996:ISL, author = "Tim Ouellette", title = "{IBM} software links {Java} browsers to mainframe", journal = j-COMPUTERWORLD, volume = "30", number = "47", pages = "12--12", day = "18", month = nov, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Sat Nov 23 17:29:34 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Ouellette:1996:LLJ, author = "Tim Ouellette", title = "{Lotus} lets {Java} play with {Domino}", journal = j-COMPUTERWORLD, volume = "30", number = "46", pages = "28--28", day = "11", month = nov, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Sat Nov 16 14:38:47 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Overland:1996:JPE, author = "Brian R. Overland", title = "{Java} in Plain {English}", publisher = pub-MIS # " and " # pub-MT, address = pub-MIS:adr # " and " # pub-MT:adr, pages = "xxiii + 552", day = "1", month = oct, year = "1996", ISBN = "1-55828-503-2", ISBN-13 = "978-1-55828-503-3", LCCN = "QA76.73.J38O83 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1558285032/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mispress.com/", price = "US\$16.95", URL = "http://www.mispress.com/catagories/internetprog.html", acknowledgement = ack-nhfb, dimensions = "8.22in x 5.51in x 1.29in", keywords = "Java (computer program language); technology -- computers and computer technology", lccnalt = "96-039087", paperback = "yes", } @Article{Owen:1996:IWW, author = "G. Scott Owen", title = "Integrating {World Wide Web} technology into undergraduate education", journal = j-SIGCSE, volume = "28", number = "??", pages = "101--103", month = "????", year = "1996", CODEN = "SIGSD3", ISSN = "0097-8418", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7810C (Computer-aided instruction); C7210 (Information services and centres); C6130M (Multimedia); C6130D (Document processing techniques); C6130G (Groupware)", conflocation = "Barcelona, Spain; 2--6 June 1996", conftitle = "Conference on Integrating Technology into Computer Science Education", corpsource = "Dept. of Math. and Comput. Sci., Georgia State Univ., Atlanta, GA, USA", fjournal = "SIGCSE Bulletin (ACM Special Interest Group on Computer Science Education)", keywords = "class presentation; collaborative learning; collaborative software; computer aided instruction; courses; cross-linking material; educational; educational courses; examinations; groupware; high speed; HTML; hypermedia; Hypertext Markup Language; in-; interactive multimedia instruction; interactive systems; Internet; Java; languages; network; page description; student; student assignments; undergraduate education; VRML; World Wide Web; WWW documents", sponsororg = "ACM", treatment = "P Practical", } @Book{Pappas:1996:JBC, author = "Chris H. Pappas and William H. Murray", title = "{Java} With {Borland C++}", publisher = pub-AP-PROFESSIONAL, address = pub-AP-PROFESSIONAL:adr, pages = "xi + 428", month = aug, year = "1996", ISBN = "0-12-511960-7", ISBN-13 = "978-0-12-511960-3", LCCN = "QA76.73.J38P36 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0125119607/wholesaleproductA/; http://www.apnet.com/approfessional/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$34.95", URL = "http://www.apcatalog.com/cgi-bin/AP?ISBN=0125119607&LOCATION=US&FORM=FORM2; http://www.apnet.com/", acknowledgement = ack-nhfb, dimensions = "9.11in x 7.33in x 1.17in", keywords = "(computer program language); Borland C++; c plus plus; Java (computer program language); Java (Computer program language); technology -- computers and computer technology", paperback = "yes", } @Article{Papurt:1996:DAS, author = "D. M. Papurt and J. P. LeJacq", title = "Design aspects of the standard {I/O} library", journal = j-J-OOP, volume = "9", number = "6", pages = "6--??, 8, 10, 12", month = oct, year = "1996", CODEN = "JOOPEC", ISSN = "0896-8438", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming); C6120 (File organisation); C6150J (Operating systems)", fjournal = "Journal of Object Oriented Programming", keywords = "abstract data types; data types; design philosophy; input-output programs; Input/Output package; Java object oriented programming; Java standard library; language; languages; object-oriented; object-oriented programming; standard I/O library", treatment = "P Practical", } @Article{Parr:1996:LLT, author = "Terence J. Parr and Russell W. Quong", title = "{LL} and {LR} Translators Need $k > 1$ Lookahead", journal = j-SIGPLAN, volume = "31", number = "2", pages = "27--34", month = feb, year = "1996", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Fri Feb 14 17:05:44 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Parr Res. Corp., San Francisco, CA, USA", fjournal = "ACM SIGPLAN Notices", } @Book{Patel:1996:JDP, author = "Pratik Patel and Karl Moss", title = "{Java} Database Programming With {JDBC}", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "xiii + 480", year = "1996", ISBN = "1-57610-056-1", ISBN-13 = "978-1-57610-056-1", LCCN = "QA76.73.J38P38 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1576100561/wholesaleproductA/; http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$39.99", acknowledgement = ack-nhfb, dimensions = "9.22in x 7.38in x 1.38in", keywords = "Database design; Java (computer program language); technology -- computers and computer technology", } @InProceedings{Pazandak:1996:IMM, author = "P. Pazandak and J. Srivastava", title = "Interactive multi-user multimedia environments on the {Internet}: an overview of {DAMSEL} and its implementation", crossref = "IEEE:1996:PICa", pages = "287--290", year = "1996", bibdate = "Sat Oct 12 16:26:29 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7210 (Information services and centres); C6130M (Multimedia)C6160S (Spatial and pictorial databases); C6110F (Formal methods); C6140D (High level languages); C5620W (Other computer networks); C6180 (User interfaces)", conflocation = "Hiroshima, Japan; 17--23 June 1996", conftitle = "Proceedings of the Third IEEE International Conference on Multimedia Computing and Systems", corpsource = "Dept. of Comput. Sci., Minnesota Univ., Minneapolis, MN, USA", keywords = "applications; behavioral parameters; causation; complex specifications; constraint logics; CORBA standard; DAMSEL; embeddable dynamic multimedia specification; environments; event driven temporal specification; execution; formal specification; high level abstractions; implementation; inhibition; interactive multi user multimedia environments; interactive systems; interfaces; Internet; java; Java; language; language constructs; multi user interactive; multimedia computing; multimedia data; multimedia environments; next generation interactive multimedia; relations; software architecture; specification languages; temporal; user", sponsororg = "IEEE Comput. Soc. Tech. Committee on Multimedia Comput", treatment = "P Practical", } @Book{Pelletier:1996:PAJ, author = "Guillaume Pelletier", title = "Programmer la {3D} avec {Java} et {C++}", publisher = pub-SYBEX-FRANCE, address = pub-SYBEX-FRANCE:adr, pages = "xxi + 439", year = "1996", ISBN = "2-7361-2275-5", ISBN-13 = "978-2-7361-2275-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.fr/", price = "229 FF", URL = "http://www-db.sybex.fr/cgi-bin/Sybex/Webdriver?MIval=Fiche_Book.html&Reference=2275", acknowledgement = ack-nhfb, language = "French", url-publisher = "http://www.sybex.fr/", } @Book{Perkins:1996:JPP, author = "Charles Perkins", title = "{Java} Power Pack {C/W95/Ww}", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "????", year = "1996", ISBN = "1-57521-074-6", ISBN-13 = "978-1-57521-074-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.amazon.com/exec/obidos/ISBN=1575210746/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$79.95", acknowledgement = ack-nhfb, dimensions = "9.41in x 7.62in x 2.47in", } @Book{Perry:1996:CCW, author = "Paul J. Perry", title = "Creating Cool {Web} Applets With {Java}", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xxiv + 355", day = "1", month = may, year = "1996", ISBN = "1-56884-881-1", ISBN-13 = "978-1-56884-881-5", LCCN = "TK5105.888.P4227 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1568848811/wholesaleproductA/; http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$29.99", URL = "http://db.www.idgbooks.com/database/book/isbn/generic-book.tmpl?query=1-56884-881-1; http://www.idgbooks.com/database/book_result.msql?uid=uidg323&isbn=1-56884-881-1", acknowledgement = ack-nhfb, annote = "System requirements for accompanying computer disk: 486 PC with 8 MB RAM and 15 MB free on hard drive. Windows 95 and Windows NT.", dimensions = "9.12in x 7.33in x 1in", keywords = "Java (Computer program language); World Wide Web (Information retrieval system)", paperback = "yes", } @Book{Perry:1996:UVJ, author = "Greg Perry", title = "Using {Visual J++}: Master the Essentials of {Microsoft}'s New Visual {Java} Development Environment", publisher = pub-QUE, address = pub-QUE:adr, pages = "xix + 384", year = "1996", ISBN = "0-7897-0899-X", ISBN-13 = "978-0-7897-0899-1", LCCN = "QA76.73.J38P47 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$34.99, CDN\$49.95, UK\pounds 32.49", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/07897/bud/078970899X.html", acknowledgement = ack-nhfb, keywords = "Computer software -- Development; Internet programming.; Java (Computer program language); Microsoft Visual J++", } @Book{Pew:1996:IJ, author = "John A. Pew", title = "Instant {Java}", publisher = pub-SUNSOFT, address = pub-SUNSOFT:adr, pages = "xi + 340", month = mar, year = "1996", ISBN = "0-13-565821-7", ISBN-13 = "978-0-13-565821-5", LCCN = "QA76.73.J38 P48 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0135658217/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$29.95", series = "Java series", URL = "http://www.sun.com/smi/ssoftpress/books/Pew2/Pew2.html", acknowledgement = ack-nhfb, annote = "The SunSoft Press Java Series CD-ROM is a standard ISO-9660 disc. Software on this CD-ROM requires Windows 95, Windows NT, Solaris 2 or Macintosh (System 7.5). Windows 3.1 is not supported.", dimensions = "9.19in x 7in x 1.12in", keywords = "Java (computer program language); technology -- data processing", paperback = "yes", } @Article{Phillips:1996:JYR, author = "Paul {Phillips}", title = "{Java} 1.0 --- Are You Ready for the {Java} Revolution?", journal = j-DATABASE-DIRECTORY, volume = "14", number = "5", pages = "42--??", month = "????", year = "1996", CODEN = "DBADEL", ISSN = "0740-5200", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Database Directory: the buyer's guide to database products and services", } @Article{Picarille:1996:CAB, author = "Lisa Picarille", title = "{Corel} aims to be first to give {Java} a suite taste", journal = j-COMPUTERWORLD, volume = "30", number = "22", pages = "8--8", day = "27", month = may, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Jun 03 11:20:50 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Picarille:1996:FAF, author = "Lisa Picarille", title = "Firms add flavor to {Java} menu: {JavaSoft}'s {Beans} allows reuse of apps", journal = j-COMPUTERWORLD, volume = "30", number = "23", pages = "14--14", day = "3", month = jun, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Wed Jun 05 16:54:26 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Picarille:1996:GSJ, author = "Lisa Picarille", title = "A groggy start for {Java} products", journal = j-COMPUTERWORLD, volume = "30", number = "24", pages = "49--52", day = "10", month = jun, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Aug 19 12:08:00 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Picarille:1996:JGS, author = "Lisa Picarille", title = "{Java} gets a suite taste", journal = j-COMPUTERWORLD, volume = "30", number = "48", pages = "47, 51", day = "25", month = nov, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Dec 30 08:26:34 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Pickering:1996:JHD, author = "George Pickering and Shelley Powers and Ron Johnson", title = "{JavaScript} How-To: The Definitive {JavaScript} Problem-Solver", publisher = pub-WAITE-GROUP, address = pub-WAITE-GROUP:adr, pages = "xvi + 598", year = "1996", ISBN = "1-57169-047-6", ISBN-13 = "978-1-57169-047-0", LCCN = "QA76.73.J39 P53 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1571690476/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$44.99", acknowledgement = ack-nhfb, dimensions = "7.58in x 9.30in x 1.49in", keywords = "(computer program language); JavaScript; technology -- computers and computer technology", paperback = "yes", } @Article{Plauger:1996:CCEa, author = "P. J. Plauger", title = "{C/C++} Editor's Forum: Uproar over {Java}", journal = j-CCCUJ, volume = "14", number = "5", pages = "6--6", month = may, year = "1996", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Thu Apr 18 06:29:06 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Plauger:1996:CCEb, author = "P. J. Plauger", title = "{C/C++} Editor's Forum: Transliterating {C} and {C++} code to {Java}", journal = j-CCCUJ, volume = "14", number = "9", pages = "6--6", month = sep, year = "1996", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Fri Aug 30 06:18:46 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Plauger:1996:SA, author = "P. J. Plauger", title = "State of the Art", journal = j-EMBED-SYS-PROG, volume = "9", number = "8", pages = "93--??", day = "1", month = aug, year = "1996", CODEN = "EYPRE4", ISSN = "1040-3272", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "A First Taste of Java.", acknowledgement = ack-nhfb, fjournal = "Embedded Systems Programming", } @InProceedings{Poggi:1996:IAO, author = "A. Poggi", title = "Integrating agents and objects to develop distributed {AI} systems", crossref = "IEEE:1996:PEI", pages = "443--444", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6170K (Knowledge engineering techniques); C6110L (Logic programming); C6110J (Object-oriented programming); C6140D (High level languages)", conflocation = "Toulouse, France; 16--19 Nov. 1996", conftitle = "Proceedings of 8th International Conference on Tools with Artificial Intelligence", corpsource = "Dipartimento di Ingegneria dell'Inf., Parma Univ., Italy", keywords = "Agent; agent management; agent parts; agent/object; ALL; C++; Common Lisp; cooperative systems; distributed AI systems development; integration; Internet; Java object; languages; Level Language; logic programming; object-oriented; object-oriented programming; oriented languages; predefined agent model; software agents; software reuse; specialized primitives", sponsororg = "IEEE Comput. Soc.; Center for Intelligent Syst., Binghamton Univ.; INRIA, France", treatment = "P Practical", } @Book{Potts:1996:JPL, author = "Anthony Potts and David H. {Friedel, Jr.}", title = "{Java} Programming Language Handbook: The Ultimate Source for Conquering the {Java} Programming Language", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "xvii + 414", day = "1", month = may, year = "1996", ISBN = "1-883577-77-2", ISBN-13 = "978-1-883577-77-3", LCCN = "QA76.73.J38P68 1996", bibdate = "Mon Jun 22 08:29:47 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1883577772/wholesaleproductA/; http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$24.99; CDN\$34.99", series = "Internet programming series", URL = "http://165.247.200.139/cgi-bin/books.cgi?page=books&subject=jprogl&graphics=0; http://www.coriolis.com/site/msie/books/ind/jprogl.htm", acknowledgement = ack-nhfb, dimensions = "9.24in x 7.40in x 1in", keywords = "Internet (Computer network) -- Programming; Java (Computer programming language); Object-oriented programming (Computer science); World wide web servers", paperback = "yes", } @Article{Prosise:1996:JPL, author = "Jeff Prosise", title = "The {Java} programming language is making the {Web} even more enticing: Find out what it's all about", journal = j-PC-MAGAZINE, volume = "15", number = "14", pages = "279--??", day = "1", month = aug, year = "1996", CODEN = "PCMGEP", ISSN = "0888-8507", ISSN-L = "0888-8507", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", acknowledgement = ack-nhfb, fjournal = "PC Magazine", } @Article{Pryor:1996:JSH, author = "Doug Pryor", title = "{Java} and Some Headaches", journal = j-SUNEXPERT, volume = "7", number = "2", pages = "4--4", month = feb, year = "1996", ISSN = "1053-9239", bibdate = "Fri Feb 23 07:54:39 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Book{Purcell:1996:MJ, author = "Lee Purcell", title = "Mastering {Javascript}", publisher = pub-PRIMA, address = pub-PRIMA:adr, pages = "550", month = nov, year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40.00", acknowledgement = ack-nhfb, keywords = "JavaScript (computer program language)", } @Article{Rajan:1996:LEA, author = "Satish Rajan", title = "Letter to the Editor: {ActiveX}, not {Java}, applets are unsafe", journal = j-COMPUTERWORLD, volume = "30", number = "43", pages = "36", day = "21", month = oct, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Nov 08 15:30:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "????", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Ready:1996:PPJ, author = "Kevin Ready and Paul Vachier and Benoit Marsot", title = "Plug-{N}-Play {JavaScript}", publisher = pub-NRP, address = pub-NRP:adr, pages = "xii + 340", day = "1", month = oct, year = "1996", ISBN = "1-56205-674-3", ISBN-13 = "978-1-56205-674-2", LCCN = "QA76.73.J39 R43 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1562056743/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$34.99", acknowledgement = ack-nhfb, dimensions = "9.08in x 7.38in x 0.94in", keywords = "Java (computer program language); technology -- computers and computer technology", } @Book{Redlich:1996:CPE, author = "Jens-Peter Redlich", title = "{CORBA 2.0: Praktische Einf{\"u}hrung f{\"u}r C++ und Java}", publisher = pub-AW, address = pub-AW:adr, pages = "xiv + 314", year = "1996", ISBN = "3-8273-1060-1 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1060-6 (??invalid ISBN??)", LCCN = "????", bibdate = "Tue Mar 03 09:31:52 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "60 DM", URL = "http://www.addison-wesley.de/", acknowledgement = ack-nhfb, language = "German", } @Article{Rego:1996:AJA, author = "F. Alfredo Rego", title = "{ADBC}: {Java}-supported access via intrinsics in {TurboImage} data", journal = j-HP-CHRONICLE, volume = "13", number = "6", pages = "18--18", month = may, year = "1996", ISSN = "0892-2829", bibdate = "Tue May 07 16:35:58 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "HP Chronicle", } @Article{Reisman:1996:WKE, author = "Sorel Reisman", title = "{Web\_Sight}: Keeping an Eye on the {Web}; What is {Web\_Sight} {Web} Site?", journal = j-IEEE-MULTIMEDIA, volume = "3", number = "1", pages = "5--5", month = "Spring", year = "1996", CODEN = "IEMUE4", ISSN = "1070-986X (print), 1941-0166 (electronic)", ISSN-L = "1070-986X", bibdate = "Mon Jan 29 16:05:12 MST 2001", bibsource = "http://www.computer.org/multimedia/mu1996/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/mu/books/mu1996/pdf/u1005.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE MultiMedia", keywords = "Java", } @Article{Reynolds:1996:IKE, author = "Franklin D. Reynolds", title = "{Internet} Kiosk: Evolving an operating system for the {Web}", journal = j-COMPUTER, volume = "29", number = "9", pages = "90--92", month = sep, year = "1996", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Mon Jun 22 07:40:22 1998", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Apple Computer", affiliationaddress = "MA, USA", classification = "722; 723; 723.1; 912.2", fjournal = "Computer", journalabr = "Computer", keywords = "Computer operating systems; Computer programming; Internet; Java programming language; Network protocols; Resource allocation; Resource management; Wide area networks; World wide web", } @Book{Reynolds:1996:UJ, author = "Mark C. Reynolds and Ray Daly and Rick Darnell and Bill Dortch and Mo Everett and Gordon McComb", title = "Using {JavaScript}", publisher = pub-QUE, address = pub-QUE:adr, edition = "Special", pages = "xxvi + 831", day = "1", month = may, year = "1996", ISBN = "0-7897-0789-6, 0-7897-1079-X", ISBN-13 = "978-0-7897-0789-5, 978-0-7897-1079-6", LCCN = "QA76.73.J39R49 1996", bibdate = "Mon Sep 15 23:01:43 1997", bibsource = "http://w3.phdirect.com/que/et/se_javascript/; http://www.amazon.com/exec/obidos/ISBN=0789707896/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", URL = "http://www.mcp.com/que", acknowledgement = ack-nhfb, dimensions = "9.07in x 7.37in x 2.45in", keywords = "Java (computer program language); JavaScript; technology -- computers and computer technology", paperback = "yes", xxauthor = "Mark C. Reynolds and Andrew Wooldridge", xxnote = "Library of Congress says authors are Mark C. Reynolds with Ray Daly and others.", xxnote2 = "Is this the same as \cite{Reynolds:1997:UJ}??", } @InProceedings{Rice:1996:UWI, author = "James Rice and Adam Farquhar and Philippe Piernot and Thomas Gruber", title = "Using the {Web} instead of a window system", crossref = "Tauber:1996:PCH", pages = "103--110", year = "1996", bibdate = "Thu Dec 12 16:46:56 MST 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Knowledge Systems Lab", affiliationaddress = "Stanford, CA, USA", classification = "722.2; 722.3; 723.1; 723.1.1; 903.3", conference = "Proceedings of the 1996 Conference on Human Factors in Computing Systems, CHI 96", journalabr = "Conf Hum Fact Comput Syst Proc", keywords = "Active document; Computer networks; Computer programming languages; Computer software; Concurrency control; Hypertext markup language; Hypertext transfer protocol; Information retrieval systems; Internet application; Java; Network protocols; Program debugging; Remote user interface; User interfaces; World Wide Web", meetingaddress = "Vancouver, BC, Can", meetingdate = "Apr 13--18 1996", meetingdate2 = "04/13--18/96", } @Article{Richards:1996:OLO, author = "J. Richards", title = "Object lessons [object oriented databases]", journal = j-CONSPECTUS, volume = "????", number = "????", pages = "28--29", month = jul, year = "1996", CODEN = "CONSF8", ISSN = "1351-0908", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D2080 (Information services and database systems)", corpsource = "Andersen Consulting, Chicago, IL, USA", countrypub = "UK", fjournal = "Conspectus", keywords = "DBMS; Internet; Microsystems Java scriptwriting system; object database companies; object database technology; object oriented databases; object-oriented databases; Oracle; Persistence Software; relational databases; relational suppliers; Roguewave Software; stand-alone industry; Sun; suppliers; Web; World Wide Web", treatment = "P Practical", } @Article{Richardson:1996:JGM, author = "Robert Richardson", title = "{Java} Gains Momentum", journal = j-LAN, volume = "4", number = "11", pages = "69--??", day = "1", month = may, year = "1996", CODEN = "LANNER", ISSN = "1038-359X (or 1069-5621??)", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Suddenly someone found a hot use for network object software and Java became the talk of the Net. We look at just what Java is and how it relates to other distributed component architectures.", acknowledgement = ack-nhfb, fjournal = "LAN: the network solutions magazine", } @Article{Richardson:1996:JPS, author = "Robert Richardson", title = "{Java} Picks Up Steam", journal = j-LAN, volume = "11", number = "4", pages = "79--??", month = "????", year = "1996", CODEN = "LANNER", ISSN = "1069-5621", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "LAN: the network solutions magazine", } @Article{Richman:1996:TTJ, author = "Dan Richman", title = "Tools on tap for {Java} standard", journal = j-COMPUTERWORLD, volume = "30", number = "20", pages = "24--24", day = "13", month = may, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Tue May 21 12:44:48 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Riesebeck:1996:UJ, editor = "Jim Riesebeck", title = "Using {JBuilder}", publisher = pub-QUE, address = pub-QUE:adr, pages = "????", year = "1996", ISBN = "0-7897-0880-9", ISBN-13 = "978-0-7897-0880-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$30", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/que/", } @InProceedings{Riggs:1996:PSJa, author = "Roger Riggs and Jim Waldo and Ann Wollrath and Krishna Bharat", title = "Pickling state in the {Java} system", crossref = "USENIX:1996:COO", pages = "261--??, 241--250", year = "1996", bibdate = "Wed Aug 20 10:01:57 1997", bibsource = "ftp://ftp.uu.net/library/bibliography; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6140D (High level languages); C6120 (File organisation)", conflocation = "Toronto, Ont., Canada; 17--21 June 1996", conftitle = "Proceedings of 2nd Conference on Object-Oriented Technologies and Systems (COOTS)", keywords = "abstract data types; class specific methods; equivalent object; equivalent typed object; Java; Java system; Java Virtual machine; meta information; object; object classes; object oriented methods; object-; object-oriented languages; oriented programming; pickling process; pickling state; serialized form; serialized object representation; serialized representation; stateless computation; unpickling", treatment = "P Practical", } @Article{Riggs:1996:PSJb, author = "Roger Riggs and Jim Waldo and Ann Wollrath and Krishna Bharat", title = "Pickling State in the {Java} System", journal = j-COMP-SYS, volume = "9", number = "4", pages = "291--312", month = "Fall", year = "1996", CODEN = "CMSYE2", ISSN = "0895-6340", bibdate = "Tue Mar 18 07:03:16 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computing Systems", } @Article{Riggs:COMPSYS-9-4-291, author = "Roger Riggs and Jim Waldo and Ann Wollrath and Krishna Bharat", title = "Pickling State in the {Java} System", journal = j-COMP-SYS, volume = "9", number = "4", pages = "291--312", month = "Fall", year = "1996", CODEN = "CMSYE2", ISSN = "0895-6340", bibdate = "Tue Mar 18 07:03:16 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computing Systems", } @Book{Ritchey:1996:BJA, author = "Tim Ritchey", title = "Building {Java} Applets for {Netscape 2.0}", publisher = pub-NRP, address = pub-NRP:adr, pages = "xiii + 469", month = apr, year = "1996", ISBN = "1-56205-585-2", ISBN-13 = "978-1-56205-585-1", LCCN = "QA76.73.J38R58 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1562055852/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$35.00", URL = "http://www.mcp.com/175067741767563/cgi-bin/bag?isbn=1-56205-585-2&last=/bookstore", acknowledgement = ack-nhfb, dimensions = "9.07in x 7.32in x 1.21in", keywords = "(computer program); Java (computer program language); Netscape; technology -- computers and computer technology", paperback = "yes", xxtitle = "Programming {JavaScript} for {Netscape} 2.0", } @Book{Ritchey:1996:JP, author = "Tim Ritchey", title = "{Java} Programming", publisher = "DrMaster Consulting Co, Ltd", address = "Taipei, Taiwan", pages = "viii + 372", year = "1996", ISBN = "957-9625-09-3", ISBN-13 = "978-957-9625-09-8", LCCN = "????", bibdate = "Mon Aug 18 07:55:47 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Chinese translation by Cheng Chuin Wen and Liao Shiu Yee. Includes CD-ROM.", price = "450 NT\$", URL = "????", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Ritchey:1996:PJ, author = "Tim Ritchey", title = "Programming with {Java}!", publisher = pub-NRP, address = pub-NRP:adr, pages = "xiii + 389", year = "1996", ISBN = "1-56205-533-X", ISBN-13 = "978-1-56205-533-2", LCCN = "QA 76.73 J3 R482 1995", bibdate = "Fri Jun 14 09:23:34 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "CD-ROM includes: Java developers kit for Windows 95, Windows NT, and Sun Solaries 2.x, Java applet tools, example applets from the text.", price = "US\$35.00, 70,00 DM", URL = "http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, xxnote = "This ISBN occurs in \cite{Ritchey:1996:PJ,Ritchey:1995:PJB,Ritchey:1995:J}.", } @Article{Roberts:1996:WWJ, author = "Ken Roberts", title = "What's wrong with {Java}? (discussion of the {February} 1996 article, The {NC} phenomena: scenes from your living room)", journal = j-COMPUTER, volume = "29", number = "6", pages = "8--9", month = jun, year = "1996", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Fri Mar 14 16:32:38 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computer", keywords = "Computer research; Java (Computer language); Minicomputers; Technological forecasting", } @Book{Rodley:1996:WAP, author = "John Rodley", title = "{Web Applets programmieren mit JavaScript}", publisher = pub-TEWI, address = pub-TEWI:adr, pages = "389", year = "1996", ISBN = "3-89362-472-4", ISBN-13 = "978-3-89362-472-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.tewi.de/", price = "79 DM", URL = "http://www.channel1.com/users/ajrodley/; http://www.tewi.de/; http://www.tewi.de/scripts/search/details_ISBN.idc?ISBN=3-89362-472-4", acknowledgement = ack-nhfb, language = "German", xxtitle = "{Web Applets mit Java}", } @Book{Rodley:1996:WJA, author = "John Rodley", title = "Writing {Java} Applets: Master the Art of Creating Distributed {Internet} Programs", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "xvi + 430", day = "1", month = apr, year = "1996", ISBN = "1-883577-78-0", ISBN-13 = "978-1-883577-78-0", LCCN = "QA76.73.J38R63 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1883577780/wholesaleproductA/; http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$39.99", URL = "http://165.247.200.139/cgi-bin/books.cgi?page=books&subject=wjavap&graphics=0; http://www.coriolis.com/cgi-win/KBSearch.exe", acknowledgement = ack-nhfb, annote = "System requirements for accompanying computer disc: IBM PC or compatible system.", dimensions = "9.27in x 7.40in x 1.12in", keywords = "Java (Computer program language); Multimedia systems; Object-oriented programming (Computer science); World Wide Web (Information retrieval system)", paperback = "yes", } @InProceedings{Rohnert:1996:JLL, author = "H. Rohnert", title = "{Java}: lessons learnt from {C++}", crossref = "Anonymous:1996:OEEb", pages = "348--??, 283", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming); C6110F (Formal methods)", conflocation = "London, UK; 23--27 Sept. 1996", conftitle = "Proceedings of Object Expo Europe", corpsource = "Siemens AG, Munich, Germany", countrypub = "UK", keywords = "C++; Java; language features; object-; object-oriented languages; object-oriented methods; oriented programming; software development; software engineering", treatment = "P Practical", } @Article{Romer:1996:SPI, author = "Theodore H. Romer and Dennis Lee and Geoffrey M. Voelker and Alec Wolman and Wayne A. Wong and Jean-Loup Baer and Brian N. Bershad and Henry M. Levy", title = "The Structure and Performance of Interpreters", journal = j-SIGPLAN, volume = "31", number = "9", pages = "150--159", month = sep, year = "1996", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Compares the MIPSI, Java, Perl, and Tcl interpreters on a DEC Alpha platform.", acknowledgement = ack-nhfb, classcodes = "C6150C (Compilers, interpreters and other processors)", conflocation = "Cambridge, MA, USA; 1--5 Oct. 1996", conftitle = "7th International Conference on Architectural Support for Programming Languages and Operating Systems", corpsource = "Dept. of Comput. Sci. and Eng., Washington Univ., Seattle, WA, USA", fjournal = "ACM SIGPLAN Notices", keywords = "complex compiled; DEC Alpha platform; high-; interpreted languages; interpreter performance; Java; level interpreters; MIPSI; native runtime libraries; Perl; portability; processor resources; program development; program interpreters; programs; software performance evaluation; Tcl; virtual machine", sponsororg = "ACM", treatment = "X Experimental", } @InProceedings{Rosch:1996:RTM, author = "P. Rosch and M. Baentsch", title = "Reviewing two multimedia presentation (quasi-) standards", crossref = "IEEE:1996:PIW", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6130M (Multimedia); C7210 (Information services and centres)C6130D (Document processing techniques); C6110J (Object-oriented programming)", conflocation = "Berlin, Germany; 25--26 March 1996", conftitle = "Proceedings International Workshop on Multimedia Software Development", corpsource = "Fraunhofer-Inst. for Exp. Software Eng., Kaiserslauten, Germany", keywords = "accessible services project; BERKOM globally; document handling; engineering; function-shipping; GLASS; HTML pages; Internet; Java language; MHEG; multimedia computing; multimedia document; multimedia presentation development; multimedia presentation standards; object oriented language; object-; oriented languages; page description languages; software; standards; technical presentation; World-Wide Web", sponsororg = "IEEE Comput. Soc. Tech. Council on Software Eng", treatment = "P Practical", } @Article{Rosenblatt:1996:SJI, author = "Max Rosenblatt and Joshua Greenbaum and Anne Thomas", title = "Sorting out the {Java}/intranet vs. {SAP} promise", journal = j-COMPUTERWORLD, volume = "30", number = "15", pages = "40--40", day = "8", month = apr, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Thu Apr 11 11:16:38 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Saadi:1996:CAS, author = "Edgar Saadi", title = "Career Advisor: Should {I} go with {Java}?", journal = j-SUNWORLD-ONLINE, volume = "02", pages = "??--??", year = "1996", ISSN = "1091-8914", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sun.com/sunworldonline/swol-02-1996/swol-02-career.html", abstract = "Java's a much-discussed technology today, but does it represent a viable change in career?", acknowledgement = ack-nhfb, fjournal = "SunWorld online", } @Book{Sadun:1996:JCC, author = "Erica Sadun", title = "{JavaScript CD} Cookbook", publisher = pub-CHARLES-RIVER-MEDIA, address = pub-CHARLES-RIVER-MEDIA:adr, pages = "????", year = "1996", ISBN = "1-886801-35-5", ISBN-13 = "978-1-886801-35-6", LCCN = "????", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1886801355/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.95", URL = "http://www.amazon.com/exec/obidos/ISBN%3D1886801355/wholesaleproductA/1624-2272339-016690; http://www.charlesriver.com/titles/java.html", acknowledgement = ack-nhfb, dimensions = "9.92in x 7.61in x 1.26in", } @InProceedings{Sah:1996:PIS, author = "A. Sah and K. Brown and E. Brewer", title = "Programming the {Internet} from the server-side with {Tcl} and {Audience1}", crossref = "USENIX:1996:ATT", pages = "235--??, 183--188", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6150N (Distributed systems software); C6115 (Programming support); C6110 (Systems analysis and programming); C6140D (High level languages); C7230 (Publishing and reproduction); C7250N (Front end systems for online searching)", conflocation = "Monterey, CA, USA; 10--13 July 1996", conftitle = "Proceedings of 4th Annual Tcl/Tk Workshop '96", corpsource = "Inktomi Corp., Berkeley, CA, USA", keywords = "applications; Audience1; authoring languages; client-server; client-server systems; client-side languages; electronic; end-; extension library; HotBot search engine; HotWired; Inktomi; Internet; mass customization features; MTtcl; multi-threaded Tcl; online front-ends; programming; publishing; server languages; server-side Internet programming; software libraries; to-end publishing tool; World Wide Web", treatment = "P Practical", } @Article{Salus:1996:BRB, author = "Peter H. Salus", title = "Book Reviews: The Bookworm", journal = j-LOGIN, volume = "21", number = "5", pages = "45--48", month = oct, year = "1996", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Wed Nov 27 08:42:43 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Review of eight books on Java and JavaScript.", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Book{Sams:1996:PJP, author = "{Sams Development Team Staff}", title = "Professional {Java} Programming Kit", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "????", year = "1996", ISBN = "1-57521-133-5", ISBN-13 = "978-1-57521-133-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.amazon.com/exec/obidos/ISBN=1575211335/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$129.99", acknowledgement = ack-nhfb, dimensions = "9.56in x 7.68in x 6.58in", xxtitle = "Professional {Java} Programmer's Kit", } @Book{Samsnet:1996:JSS, author = "{Sams.net}", title = "{Java} Script Starter Kit {C/Ww95/Ww}", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "????", day = "1", month = aug, year = "1996", ISBN = "1-57521-170-X", ISBN-13 = "978-1-57521-170-1", LCCN = "????", bibdate = "Fri Aug 22 17:52:23 1997", bibsource = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/157521170X.html; http://www.amazon.com/exec/obidos/ISBN=157521170X/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$69.99", acknowledgement = ack-nhfb, } @Article{Sarna:1996:JPW, author = "David E. Y. Sarna and George J. Febish", title = "{Java}'s place in the wide {OLE} world", journal = j-DATAMATION, volume = "42", number = "????", pages = "25--27", month = "????", year = "1996", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat Oct 12 16:26:29 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Datamation", keywords = "Java (Computer language)", } @Article{Sarna:1996:PSJ, author = "D. Sarna and G. Febish", title = "Paradigm Shift --- {Java}'s hot, but only part of the big picture", journal = j-DATAMATION, volume = "42", number = "3", pages = "25--??", month = "????", year = "1996", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat May 4 17:16:13 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Datamation", } @Article{Saunders:1996:CWA, author = "Stephen Saunders", title = "Concentrated {WAN} access to {ATM} and frame relay", journal = j-DATA-COMMUNICATIONS, volume = "25", number = "10", pages = "??--??", month = aug, year = "1996", CODEN = "DACODM", ISSN = "0363-6399", bibdate = "Thu Dec 12 06:31:53 MST 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classification = "716.1; 722.2; 722.3; 723.1; 723.1.1; 903.2", fjournal = "Data communications", keywords = "Access concentrator; Asynchronous transfer mode; Computer programming languages; Computer software; Cross flow switching; Data communication equipment; Frame relay; Information management; Interfaces (computer); Java based management software; Multiplexing equipment; Network interface modules; Performance; Switches; Switching systems; Telecommunication traffic; Wide area networks", pagecount = "2", } @Book{Savail:1996:JAP, author = "L. Savail", title = "{Java} Applet Powerpack, Vol. 1", publisher = pub-PRIMA, address = pub-PRIMA:adr, pages = "xii + 344", year = "1996", ISBN = "0-7615-0678-0", ISBN-13 = "978-0-7615-0678-2", LCCN = "QA76.73.J38J36 1996", bibdate = "Tue Dec 03 12:10:08 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "The book contains no author credit, although library catalogs credit L. Savail.", price = "US\$35.00", URL = "http://www.webcom.com/~prima/", acknowledgement = ack-nhfb, xxnote = "Duplicate ISBN in \cite{Drake:1996:JAP,Savail:1996:JAP}.", } @Book{Savola:1996:UHS, author = "Tom Savola and others", title = "Using {HTML} Second Edition: Create Dynamic and Interactive Pages {Web} with {Java}, {JavaScript}, {CGI}, and new {HTML} 3 Extensions", publisher = pub-QUE, address = pub-QUE:adr, pages = "xxxiii + 921", year = "1996", ISBN = "0-7897-0758-6 (softcover)", ISBN-13 = "978-0-7897-0758-1 (softcover)", LCCN = "QA76.76.H94U85 1996<", bibdate = "Sat Sep 13 14:36:20 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$44.99", } @Book{Schafer:1996:WRL, author = "Steve Schafer and Elizabeth Bruns", title = "{Webmaster} Resource Library: Using {Java}", publisher = pub-QUE, address = pub-QUE:adr, pages = "????", month = oct, year = "1996", ISBN = "0-7897-0872-8", ISBN-13 = "978-0-7897-0872-4", LCCN = "????", bibdate = "Tue Mar 03 12:31:35 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0789708728/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$150.00", acknowledgement = ack-nhfb, dimensions = "9.54in x 7.42in x 9.56in", xxnote = "Duplicate ISBN with \cite{Brown:1996:WRL}.", } @Book{Schildt:1996:SEC, author = "Herbert Schildt", title = "{Schildt}'s Expert {C++}: Includes {Java} Overview", publisher = pub-OMH, address = pub-OMH:adr, pages = "xviii + 402", year = "1996", ISBN = "0-07-882209-2 (softcover)", ISBN-13 = "978-0-07-882209-4 (softcover)", LCCN = "QA76.73.C153S337 1996", bibdate = "Sat Sep 13 14:36:20 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$31.45", } @Article{Schlack:1996:CCW, author = "Mark Schlack", title = "Computing Crossroads: Will it be {Intel} inside or {Java} everywhere?", journal = j-BYTE, volume = "21", number = "11", pages = "14--14", month = nov, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Fri Nov 22 12:34:05 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Misc{Schmidt:1996:NNS, author = "Eric Schmidt", title = "Networking and the New Social Landscape", publisher = pub-UNIV-VIDEO-COMM, address = pub-UNIV-VIDEO-COMM:adr, year = "1996", bibdate = "Sat Apr 19 09:09:01 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "1 videocassette (57 min.). Order number 14-Schmidt.", acknowledgement = ack-nhfb, keywords = "Java (Computer program language)", } @Article{Schneider:1996:ILJ, author = "Karen G. Schneider", title = "{Internet} Librarian: ``{Java}: The Third Wave of the {Internet}''", journal = j-AMER-LIBRARIES, volume = "27", number = "2", pages = "60--??", year = "1996", ISSN = "0002-9769", bibdate = "Fri Feb 23 08:05:11 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "American Libraries", } @InProceedings{Schroeder:1996:DIO, author = "W. J. Schroeder and K. M. Martin and W. E. Lorensen", title = "The design and implementation of an object-oriented toolkit for {3D} graphics and visualization", crossref = "Yagel:1996:PVS", pages = "516--??, 93--100, 472", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6130B (Graphics techniques); C6110J (Object-oriented programming); C6140D (High level languages); C6115 (Programming support)", conflocation = "San Francisco, CA, USA; 27 Oct.-1 Nov. 1996", conftitle = "Proceedings of Seventh Annual IEEE Visualization '96", keywords = "3D graphics; C language; C++; C++ class library; data representation schemes; data visualisation; freely available C++ class library; interpreted; issues; Java; languages; models; object oriented; object oriented toolkit; object-oriented languages; object-oriented programming; portability; public domain software; software libraries; software packages; subroutines; system execution; Tcl; visualization techniques; Visualization Toolkit; vtk", sponsororg = "IEEE Comput. Soc. Tech. Committee on Comput. Graphics; ACM SIGGRAPH", treatment = "P Practical", } @Article{Scotkin:1996:BUJ, author = "Joel Scotkin", title = "Business Uses For {Java} --- Think client\slash{} server computing and the {Internet} have changed your life? {Java}'s going to be twice as important --- it will totally change the way you write applications and distribute them to clients", journal = j-DATAMATION, volume = "42", number = "5", pages = "40--41", month = "????", year = "1996", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat Oct 12 16:26:29 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Datamation", keywords = "Client server computing; Java (Computer language)", } @Book{Scott:1996:BAJ, author = "Adrian Scott", title = "Business Applications of {Java}", publisher = pub-SIGS, address = pub-SIGS:adr, pages = "50", year = "1996", ISBN = "1-884842-65-8", ISBN-13 = "978-1-884842-65-8", LCCN = "QA76.9.O35O34 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sigs.com/books/", price = "US\$85", URL = "http://www.sigs.com/books/wp_javaapps.html", acknowledgement = ack-nhfb, xxnote = "Library of Congress has author James J. Odell and title ``Advanced object-oriented analysis and design using UML'' for this ISBN.", } @Article{ScottOwen:1996:IWW, author = "G. {Scott Owen}", title = "Integrating {World Wide Web} technology into undergraduate education", journal = j-SIGCSE, volume = "28", number = "????", pages = "101--103", month = "????", year = "1996", CODEN = "SIGSD3", ISSN = "0097-8418", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7810C (Computer-aided instruction); C7210 (Information services and centres); C6130M (Multimedia); C6130D (Document processing techniques); C6130G (Groupware)", conflocation = "Barcelona, Spain; 2--6 June 1996", conftitle = "Conference on Integrating Technology into Computer Science Education", corpsource = "Dept. of Math. and Comput. Sci., Georgia State Univ., Atlanta, GA, USA", fjournal = "SIGCSE Bulletin (ACM Special Interest Group on Computer Science Education)", keywords = "class presentation; collaborative learning; collaborative software; computer aided instruction; courses; cross-linking material; educational; educational courses; examinations; groupware; high speed; HTML; hypermedia; Hypertext Markup Language; in-; interactive multimedia instruction; interactive systems; Internet; Java; languages; network; page description; student; student assignments; undergraduate education; VRML; World Wide Web; WWW documents", sponsororg = "ACM", treatment = "P Practical", } @Article{Semich:1996:FSJ, author = "J. William Semich", title = "Framework --- {Sun}'s {Java} development language is a lot more than just another new toy for the {Internet}", journal = j-DATAMATION, volume = "42", number = "5", pages = "5--??", month = "????", year = "1996", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat Jun 28 10:33:41 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Datamation", } @Article{Semich:1996:JIT, author = "J. William Semich and David Fisco", title = "{Java}: {Internet} Toy or Enterprise Tool --- {Java}'s a whole lot more than just an animation tool for the {Web}. {Sun}'s renaming it the ``{Java Enterprise Platform}''. Better said, it's the {Java} network-centric computing platform", journal = j-DATAMATION, volume = "42", number = "5", pages = "28--29", month = "????", year = "1996", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat Oct 12 16:26:29 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Datamation", keywords = "Internet; Java (Computer language)", } @Article{Seybold:1996:ITG, author = "Patricia B. Seybold", title = "It's time to get serious about {Java}", journal = j-COMPUTERWORLD, volume = "30", number = "32", pages = "2--2", day = "5", month = aug, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Aug 19 12:08:00 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Describes a 200,000-line Java project for travel bureau business.", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Shafer:1996:JNW, author = "Dan Shafer", title = "{JavaScript} and {Netscape 2} Wizardry", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "xv + 365", day = "1", month = may, year = "1996", ISBN = "1-883577-86-1", ISBN-13 = "978-1-883577-86-5", LCCN = "QA76.J39S48 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1883577861/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$34.99", URL = "http://165.247.200.139/cgi-bin/java.cgi?page=ibook&graphics=1#JPE; http://www.coriolis.com/site/msie/books/ind/nscp2wiz.htm", acknowledgement = ack-nhfb, dimensions = "9.24in x 7.42in x 0.98in", keywords = "(computer program); Java (computer program language); Netscape; technology -- computers and computer technology", paperback = "yes", xxtitle = "{JavaScript} and {Netscape} Wizardry", } @InProceedings{Shaio:1996:JHC, author = "Sami Shaio and Arthur {van Hoff} and Herb Jellinek", title = "{Java} and {HotJava}: a comprehensive overview", crossref = "IEEE:1996:DPC", pages = "424--429", year = "1996", CODEN = "DCSIDU", ISSN = "1063-6390", bibdate = "Tue May 05 08:13:56 1998", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE catalog number 96CB35911.", acknowledgement = ack-nhfb, affiliation = "Java Products Group --- Sun Microsystems Inc", affiliationaddress = "Palo Alto, CA, USA", classcodes = "C7210 (Information services and centres); C6140D (High level languages); C6110J (Object-oriented programming); C7250N (Front end systems for online searching)", classification = "721.1; 722; 723.1; 723.1.1; 901.4", conference = "Proceedings of the 1996 41st IEEE Computer Society International Conference, COMPCON'96", conflocation = "Santa Clara, CA, USA; 25--28 Feb. 1996", conftitle = "COMPCON '96. Technologies for the Information Superhighway Digest of Papers", corpsource = "Java Products Group, Sun Microsyst. Inc., Palo Alto, CA, USA", journalabr = "Dig Pap COMPCON IEEE Comput Soc Int Conf", keywords = "browser; C (programming language); Computer hardware; Computer programming languages; Computer software; Constraint theory; future; hardware; Hot Java language; HotJava; Internet; Java; Java language; license; object; object-oriented; object-oriented languages; online front-ends; oriented language; programming; Software engineering; software future; Sun Microsystems; Technology; World Wide Web", meetingaddress = "Santa Clara, CA, USA", meetingdate = "Feb 25--28 1996", meetingdate2 = "02/25--28/96", sponsor = "IEEE", sponsororg = "IEEE Comput. Soc", treatment = "P Practical", } @InProceedings{Shao:1996:MTJ, author = "Sami Shao", title = "Morning Tutorial: Java Software Secrets", crossref = "IEEE:1996:HCV", pages = "??--??", year = "1996", bibdate = "Mon Jan 08 16:08:21 2001", bibsource = "ftp://www.hotchips.org/pub/hotc7to11cd/hc96/hc8_pdf/hc96nav.pdf; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Shetterly:1996:CPO, author = "Rick Shetterly and Alan Chmura", title = "Creating the Paperless Office", journal = j-IEEE-SOFTWARE, volume = "13", number = "2", pages = "124--126", month = mar, year = "1996", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/52.506471", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Fri Mar 14 12:15:01 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses the Java development environment.", fjournal = "IEEE Software", } @Book{Shobe:1996:JM, author = "Matt Shobe and Tim Ritchey", title = "{JavaScript} for the {Macintosh}", publisher = pub-HAYDEN, address = pub-HAYDEN:adr, pages = "viii + 326", month = may, year = "1996", ISBN = "1-56830-278-9", ISBN-13 = "978-1-56830-278-2", LCCN = "QA76.73.J38S48 1996", bibdate = "Mon Jun 22 08:32:12 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1568302789/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$40.00, CDN\$54.95, UK\pounds 37.50", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15683/bud/1568302789.html; http://www.mcp.com/221684522211009/cgi-bin/bag?isbn=1-56830-278-9&last=/hayden", acknowledgement = ack-nhfb, dimensions = "9.13in x 7.37in x 0.96in", keywords = "(computer); Macintosh; technology -- computers and computer technology", paperback = "yes", } @Article{Shoffner:1996:JBA, author = "Michael Shoffner", title = "{Java}'s Busting Out All Over", journal = j-BYTE, volume = "21", number = "5", pages = "32--32", month = may, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Wed Apr 24 07:58:17 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Shoffner:1996:JWO, author = "M. Shoffner and M. Hughes", title = "{Java} and {Web}-Executable Object Security", journal = j-DDJ, volume = "21", number = "11", pages = "38, 40, 42, 44, 46, 48, 49", month = nov, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6130S (Data security); C6140D (High level languages); C5620W (Other computer networks)", fjournal = "Dr. Dobb's Journal of Software Tools", keywords = "design problems; executable objects; implementation bugs; Internet; Java; object security; object-oriented languages; security of data; security research; Web; web-embedded", treatment = "P Practical", } @Article{Shotsberger:1996:TGI, author = "P. G. Shotsberger", title = "Toward a greener {Internet}", journal = j-COMPUTER, volume = "29", number = "12", pages = "113--114", month = dec, year = "1996", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7210 (Information services and centres); C0230 (Economic, social and political aspects of computing); C7100 (Business and administration)", corpsource = "Dept. of Math. Sci., North Carolina Univ., Wilmington, NC, USA", fjournal = "Computer", keywords = "business data processing; business graphics; business reports; computer graphics; cost; economic effects; environmental pollution; global society; home page; information access; information age; Internet; Java animations; socio-; virtual society; World Wide Web", treatment = "P Practical", } @Article{Shrobe:1996:FL, author = "H. Shrobe and S. E. Fahlman and B. Stroustrup and G. L. {Steele, Jr.}", title = "The future of {Lisp}", journal = j-IEEE-EXPERT, volume = "11", number = "1", pages = "10--16", month = feb, year = "1996", CODEN = "IEEXE7", ISSN = "0885-9000", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming); C6130D (Document processing techniques); C6130M (Multimedia)", fjournal = "IEEE expert: intelligent systems and their applications", keywords = "C language; C++; Dylan language; hypermedia; Java; Lisp; LISP; object oriented language; object-oriented languages; programming language; World Wide Web users", treatment = "G General Review", } @Book{Siddalingaiah:1996:JHD, author = "Madhu Siddalingaiah and Stephen D. Lockwood and Chris Ott", title = "{Java} How-To: The Definitive {Java} Problem-Solver", publisher = pub-WAITE-GROUP, address = pub-WAITE-GROUP:adr, pages = "xviii + 644", year = "1996", ISBN = "1-57169-035-2", ISBN-13 = "978-1-57169-035-7", LCCN = "QA76.73.J38S53 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/waite/; http://www.amazon.com/exec/obidos/ISBN=1571690352/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99", URL = "http://www.kaizen.net/javabook/; http://www.mcp.com/cgi-bin/bag?isbn=1-57169-035-2&last=/bookstore", acknowledgement = ack-nhfb, dimensions = "8.92in x 6.98in x 1.70in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Periodical{SIGS:1996:JRS, key = "Java Report", title = "{Java} Report: The Source for {Java} Development", publisher = pub-SIGS, address = pub-SIGS:adr, year = "1996", ISSN = "1086-4660", bibdate = "Tue May 07 07:04:12 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Sim:1996:FFP, author = "Philip Sim", title = "Financial firm puts {Java} to work on {Web}, in-house", journal = j-COMPUTERWORLD, volume = "30", number = "36", pages = "48--48", day = "2", month = sep, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Sep 06 10:56:07 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Simeonides:1996:JBT, author = "Alex Simeonides", title = "{Java} and the {Beans} Talk", journal = j-SUNEXPERT, volume = "7", number = "12", pages = "6--6", month = dec, year = "1996", ISSN = "1053-9239", bibdate = "Tue Dec 17 06:58:26 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Notes the imminent release of the JavaBeans Developer's Kit, and that this will be integrated into Sun's Java Developer's Kit version 1.1; parts are already available in JDK version 1.02. The JavaBeans specification is available on the World Wide Web at URL \path=http://splash.javasoft.com/=.", URL = "http://splash.javasoft.com/", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Simeonides:1996:MPI, author = "Alex Simeonides", title = "{Microsoft} to Play by {Internet} Rules", journal = j-WEBSERVER, volume = "1", number = "3", pages = "6--6", month = sep # "\slash " # oct, year = "1996", ISSN = "1087-4232", bibdate = "Tue Dec 03 07:10:47 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses ActiveX and Java.", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Simeonides:1996:SPT, author = "Alex Simeonides", title = "{Sun} Plugs {Tcl/Tk} into {Netscape}", journal = j-SUNEXPERT, volume = "7", number = "9", pages = "6--6", month = sep, year = "1996", ISSN = "1053-9239", bibdate = "Fri Sep 20 11:09:59 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses SpecTcl and SpecJava GUI builders, and the Safe-Tcl feature for giving Java-like safety to scripts written in Tcl/Tk.", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Simeonides:1996:THE, author = "Alex Simeonides", title = "Threat of Hostile Email Applets Looms", journal = j-WEBSERVER, volume = "1", number = "4", pages = "10, 12", month = nov # "\slash " # dec, year = "1996", ISSN = "1087-4232", bibdate = "Tue Dec 03 06:54:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses Java applets that forge email and gather email addresses, and the possibility of applets embedded in email that are executed when the email is read. Mentions a related book \cite{McGraw:1997:JSH}.", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Book{Simkin:1996:JPE, author = "Steve Simkin and Neil Bartlett and Alex Leslie", title = "The {Java} Programming Explorer", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "xxiv + 820", day = "1", month = mar, year = "1996", ISBN = "1-883577-81-0", ISBN-13 = "978-1-883577-81-0", LCCN = "QA76.73.J38S55 1996", bibdate = "Mon Jun 22 08:32:38 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1883577810/wholesaleproductA/; http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$39.99, CDN\$55.99", URL = "http://165.247.200.139/cgi-bin/java.cgi?page=ibook&graphics=1#JPE; http://www.coriolis.com/site/msie/books/ind/javapex.htm", acknowledgement = ack-nhfb, annote = "System requirements for accompanying computer disc: IBM PC or compatible system.", dimensions = "9.17in x 7.38in x 2.22in", keywords = "Java (Computer program language); Multimedia systems; Object-oriented programming (Computer science); World Wide Web (Information retrieval system)", paperback = "yes", } @Article{Simonsen:1996:DSJ, author = "P. Simonsen", title = "Decision support in {Java}: {A} simple rule-based decision support system to illustrate some of the features of the {Java} programming language", journal = j-EXE, volume = "10", number = "8", pages = "30--??", year = "1996", CODEN = "EXEEE5", ISSN = "0268-6872", bibdate = "Fri Feb 23 08:05:11 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = ".EXE: the software developers' magazine", } @Book{Simpson:1996:MSJ, author = "Bruce Simpson and John Mitchell and Brian Christeson and A. Rehan Zaidi and Jonathan Levine", title = "Making Sense of {Java}: {A} Guide for Managers and the Rest of Us", publisher = pub-MANNING, address = pub-MANNING:adr, pages = "xiii + 159", day = "1", month = jun, year = "1996", ISBN = "1-884777-24-4 (softcover), 0-13-263294-2", ISBN-13 = "978-1-884777-24-0 (softcover), 978-0-13-263294-2", LCCN = "QA76.73.J38S56 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0132632942/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.manning.com/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.95", URL = "http://www.browsebooks.com/Simpson/; http://www.manning.com/Simpson/index.html", acknowledgement = ack-nhfb, dimensions = "8.95in x 7.03in x 0.55in", keywords = "Java (computer program language); technology -- computers and computer technology", xxauthor = "Bruce Simpson and John Mitchell and Brian Christeson and Rehan Zaidi and Jonathan Levine", } @InProceedings{Singh:1996:IWW, author = "T. Singh and M. Zhu and U. Thakkar and U. Ravaioli", title = "Impact of {World Wide Web}, {Java}, and virtual environments on education in computational science and engineering", crossref = "Iskander:1996:TBR", pages = "3--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B0120 (Education and training); B6210L (Computer communications); B6210R (Multimedia communications); C0220 (Computing education and training); C5620W (Other computer networks); C6130B (Graphics techniques); C6130M (Multimedia); C7250 (Information storage and retrieval)", conflocation = "Salt Lake City, UT, USA; 6--9 Nov. 1996", conftitle = "Technology-Based Re-Engineering Engineering Education Proceedings of Frontiers in Education FIE'96 26th Annual Conference", corpsource = "Beckman Inst. for Adv. Sci. and Technol., Illinois Univ., Urbana, IL, USA", keywords = "asynchronous distance; browsers; calculation; computational; computer science education; device simulation; educational and research software; electromagnetics; engineering education; Internet; Java; learning; Mosaic; multimedia classroom presentations; multimedia systems; Netscape; numerical techniques; science education; semiconductor band structure; teaching; technology transfer; virtual environments; virtual reality; World Wide Web", sponsororg = "IEEE Educ. Soc.; IEEE Comput. Soc.; ASEE Educ. Res. and Methods Div", treatment = "A Application; P Practical", } @Article{Singleton:1996:HCJ, author = "Andrew Singleton", title = "A Hot Cup of {Java}", journal = j-BYTE, volume = "21", number = "4", pages = "129--??", month = apr, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Wed Apr 24 08:19:20 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Singleton:1996:WW, author = "Andrew Singleton", title = "Wired on the {Web}", journal = j-BYTE, volume = "21", number = "1", pages = "77--78, 80", month = jan, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses Java and HotJava.", acknowledgement = ack-nhfb, affiliation = "Money Com, Cambridge, MA, USA", classcodes = "B6210L (Computer communications); C5620 (Computer networks and techniques); C7210 (Information services and centres); C6130M (Multimedia); C7250 (Information storage and retrieval)", corpsource = "Money Com, Cambridge, MA, USA", fjournal = "BYTE Magazine", keywords = "client/server developers; computer networks; CPU; hypermedia; Hypertext Markup; Internet; Java; Language; OS; programming language; Web browser; World Wide Web browser", treatment = "A Application; P Practical", } @Book{Siyan:1996:IVJ, author = "Karanjit S. Siyan", title = "Inside {Visual J++}", publisher = pub-NRP, address = pub-NRP:adr, pages = "xxxiii + 899", year = "1996", ISBN = "1-56205-682-4", ISBN-13 = "978-1-56205-682-7", LCCN = "QA76.73.J38 S59 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/newriders/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$45", URL = "http://www.mcp.com/cgi-bin/bag?isbn=1-56205-682-4&last=/bookstore", acknowledgement = ack-nhfb, keywords = "Computer software -- Development; Internet (Computer network); Java (Computer program language); Microsoft Visual J++", } @Article{Skok:1996:EII, author = "D. Skok", title = "Evolving imaging into the {Internet} revolution", journal = j-IMAGING-MAGAZINE, volume = "5", number = "1", pages = "104--106, 108, 110--112, 114, 118, 120--122", month = jan, year = "1996", CODEN = "IMNYE9", ISSN = "1063-4320", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D2010 (Business and professional); D3045 (Records management systems); D2080 (Information services and database systems)", fjournal = "Imaging Magazine", keywords = "Adobe Acrobat; browsers; centric computing; client-server-server computing; client/server computing; computing paradigm; document image processing; electronic information publishing; electronic publishing; firewall; groupware; HTML; image; imaging; Internet; Internet revolution; Intranet; Java; LAN; Lotus; Netscape LiveScript; network-; network-centred computing; Notes; paradigm; platform; private internet network; RDBMS; relational databases; shifting World Wide Web; Sun Java programming language; Thin Client; value-added WAN; visual databases; web applications; workflow", treatment = "P Practical", } @Article{Smith:1996:CWW, author = "C. S. Smith and P. K. Wright", title = "{CyberCut}: a {World Wide Web} based design-to-fabrication tool", journal = j-J-MANUFACTURING-SYS, volume = "15", number = "6", pages = "432--442", month = "????", year = "1996", CODEN = "JMSYEB", ISSN = "0278-6125", ISSN-L = "0278-6125", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7480 (Production engineering computing); C3355 (Control applications in manufacturing processes); C6150N (Distributed systems software)", corpsource = "California Univ., Berkeley, CA, USA", fjournal = "Journal of Manufacturing Systems", keywords = "automated process planning; CAD/CAM; client-server interaction; client-server systems; CNC machining; computer aided production; CyberCut; design for manufacture; design-for-; design-to-fabrication tool; distributed agent; environment; IMADE; Internet; machine tools; manufacture CAD interface; mechanical MOSIS system; mechanical parts fabrication; open architecture machine tool; open systems; planning; rapid manufacturing services; seamless CAD/CAPP/CAM system; World Wide Web: WWW", treatment = "P Practical", } @Book{Spiller:1996:JPI, author = "Falko Spiller", title = "{Java: Die Programmiersprache f{\"u}r das Internet}", publisher = pub-SV, address = pub-SV:adr, pages = "ca. 200", year = "1996", ISBN = "3-540-61116-9", ISBN-13 = "978-3-540-61116-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.springer.de/", note = "Includes CD-ROM.", price = "40 DM", URL = "http://www.springer.de/", acknowledgement = ack-nhfb, language = "German", xxnote = "Publisher's Web site has title Programmieren mit Java and date Dezember 1999: http://www.springer.de/cgi-bin/search_book.pl?link=/jour/svcat/deutsch2/comp/3540611169.html&isbn=3-540-61116-9&autor=%20F%2e%20Spiller:+Programmieren%20mit%20Java%20&preis=DM%2048%2e%233B%20%23A3%2018%2e50%233B%20FF%20181%2e%233B%20Lit%2053000%233B%20%2385S%20351%2e%233B%20sFr%2044%2e50&part=", xxtitle = "{Programmieren mit Java}", } @Unpublished{Sriram:1996:FTJ, author = "K. B. Sriram", title = "Free tools for {Java}", year = "1996", bibdate = "Mon Oct 13 08:30:07 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "This important archive contains a number of Java tools, including Obsfuscator, Installer, Assembler, Jack (LL(k) parser generator), JavaCUP (LALR(1) parser generator), jb (convert flex/bison C output to Java), JavaLex (lex rewritten in Java), Pat (perl-style pattern matching), Guavac (Java compiler in C), lex/yacc grammars for Java, ANTLR specification, BNF grammar for Java, Sumatra Java-bytecode-to-C translator, j2c Java-bytecode-to-C translator, Jasmin assembler, Javaa assembler, Jobe (Java obfuscator), Mocha (Java decompiler), Kawa Scheme compiler to Java bytecodes, c2j (C++ to Java). Jas (Scheme to bytecode translator), Jax (regular-expression tokenizer), Jel (LL(1) parser generator), and more.", URL = "http://www.blackdown.org/~kbs/", acknowledgement = ack-nhfb, } @Book{Stanek:1996:WPU, author = "William Robert Stanek and Steven J. DeRose", title = "{Web} publishing unleashed: {HTML}, {Java}, {CGI}, {VRML}, {SGML}", publisher = pub-HWS, address = pub-HWS:adr, pages = "xxii + 916", day = "1", month = mar, year = "1996", ISBN = "1-57521-051-7", ISBN-13 = "978-1-57521-051-3", LCCN = "QA76.76.H94S73 1996", bibdate = "Wed Aug 14 06:58:21 1996", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1575210517/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575210517.html", acknowledgement = ack-nhfb, alttitle = "Unleashed HTML, Java, CGI, VRML, SGML", dimensions = "9.07in x 7.34in x 1.95in", keywords = "Electronic publishing -- Programmed instruction; HTML (Document markup language); Hypertext systems; Internet (Computer network); World Wide Web (Information retrieval system)", paperback = "yes", } @InProceedings{Stanton:1996:TTP, author = "Scott Stanton and Ken Corey", title = "{TclJava}: Toward Portable Extensions", crossref = "USENIX:1996:ATT", pages = "25--29", year = "1996", bibdate = "Tue Aug 19 12:03:23 1997", bibsource = "ftp://ftp.uu.net/library/bibliography; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming); C6110B (Software engineering techniques); C6180G (Graphical user interfaces); C6115 (Programming support)", conflocation = "Monterey, CA, USA; 10--13 July 1996", conftitle = "Proceedings of 4th Annual Tcl/Tk Workshop '96", keywords = "authoring languages; graphical user interfaces; Java code; object-; object-oriented programming; oriented languages; performance critical parts; portability; portable extensions; software; Tcl commands; Tcl extension; Tcl scripts; TclJava; Tk graphical user interface; user configuration", treatment = "P Practical", } @Book{Stark:1996:JRK, author = "Brian Stark", title = "{Java-Referenz: Komplette Beschreibung aller Klassen inklusive aller Parameter und Typen}. ({German}) [{Java} Reference: Complete Description of all Classes Including their Parameters and Types]", publisher = pub-FRANZIS-VERLAG, address = pub-FRANZIS-VERLAG:adr, pages = "494", year = "1996", ISBN = "3-7723-4422-4", ISBN-13 = "978-3-7723-4422-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.franzis-buch.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "49 DM", acknowledgement = ack-nhfb, language = "German", url-author = "http://www.franzis-buch.de/autoren/stark/stark.htm", url-publisher = "http://www.franzis-buch.de/", } @Article{Steele:1996:TCF, author = "Guy L. {Steele, Jr.}", title = "Trends \& Controversies: The Future of {Lisp}: The {Java} programming language", journal = j-IEEE-EXPERT, volume = "11", number = "1", pages = "10--16", month = feb, year = "1996", CODEN = "IEEXE7", ISSN = "0885-9000", bibdate = "Fri Mar 14 12:28:34 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", fjournal = "IEEE expert: intelligent systems and their applications", } @InProceedings{Sterbenz:1996:EJS, author = "A. Sterbenz", title = "An evaluation of the {Java} security model", crossref = "IEEE:1996:PAC", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C5620 (Computer networks and techniques); C6130S (Data security); C6110J (Object-oriented programming); C6140D (High level languages)", conflocation = "San Diego, CA, USA; 9--13 Dec. 1996", conftitle = "Proceedings 12th Annual Computer Security Applications Conference", corpsource = "Graz Univ. of Technol., Austria", keywords = "computer network management; efficiency; flexibility; Java security model; object-oriented languages; secure environment; security of data; untrusted programs", sponsororg = "Applied Comput. Security Associates; ACM SIGSAC", treatment = "P Practical", } @Article{Stevens:1996:CPH, author = "Al Stevens", title = "{C} programming: Hairy Arms for Dummies, {CD-ROM} Setups, and {Java} Jive", journal = j-DDJ, volume = "21", number = "7", pages = "91--95, 98--99, 115--116", month = jul, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Mon Sep 2 09:09:39 MDT 1996", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Compares Java with C++. See rebuttal in \cite{Kay:1996:JC}.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Stevens:1996:CPHb, author = "Al Stevens", title = "{C} programming: Hairy Arms for Dummies, {CD-ROM} Setups, and {Java} Jive", journal = j-DDJ, volume = "21", number = "7", pages = "91--95, 98--99, 115--116", month = jul, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Apr 30 11:57:46 1999", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Compares Java with C++. See comments \cite{Kay:1996:JC}.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @InProceedings{Stewart:1996:IDW, author = "V. Stewart", title = "Interacting with the data warehouse: applying virtual reality technology for exploratory data analysis", crossref = "Abrahart:1996:GIC", volume = "2", pages = "2--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6160Z (Other DBMS); C6130B (Graphics techniques); C6180 (User interfaces); C7300 (Natural sciences computing); C6130M (Multimedia); C6160S (Spatial and pictorial databases)", conflocation = "Leeds, UK; 17--19 Sept. 1996", conftitle = "Proceedings of 1st International Conference on GeoComputation", corpsource = "Sch. of Geogr., Leeds Univ., UK", countrypub = "UK", keywords = "analysis; computer graphics; computing; corporate data analysts; corporate information; data bandwidth problems; data visualisation; Data Warehouse; data warehousing; DW user; exploratory data; interactive systems; interactive three dimensional; interactive visualisation systems; interface; Internet; Java; multimedia; Pentium multimedia PC; reality; retail DW visualisation; sophisticated queries; system; user interfaces; very large databases; virtual; virtual reality software toolkit; virtual reality technology", treatment = "P Practical", } @Book{Stokes:1996:GKW, author = "Neil Stokes and others", title = "Getting to Know {OS/2 Warp 4}: Speech Recognition, Built-In {LAN} Support, {Java} Runtime Support, Peer to Peer Networking", publisher = pub-PH, address = pub-PH:adr, pages = "xx + 621", month = nov, year = "1996", ISBN = "0-13-842147-1 (softcover)", ISBN-13 = "978-0-13-842147-2 (softcover)", LCCN = "????", bibdate = "Sat Sep 13 14:36:20 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35.95", } @Article{Storiguard:1996:JAW, author = "Victor Storiguard", title = "{Java} at Work: Not Just for Nerds Anymore", journal = j-WEBSERVER, volume = "1", number = "2", pages = "50--54", month = jul # "\slash " # aug, year = "1996", ISSN = "1087-4232", bibdate = "Wed Aug 21 10:56:57 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cpg.com", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Book{Summitt:1996:CCI, author = "Paul M. Summitt and Mary J. Summitt", title = "Creating Cool Interactive {Web} Sites: Build The Next Hot Spot On The {World Wide Web} Using Cool Software --- {Java}, {CGI}, {VRML}, And More!", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xx + 412", year = "1996", ISBN = "1-56884-842-0 (softcover)", ISBN-13 = "978-1-56884-842-6 (softcover)", LCCN = "TK5105.888.S85 1996", bibdate = "Sat Sep 13 14:36:20 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$26.99", xxauthor = "Alan Simpson", } @Article{SunWorld:1996:ITR, author = "{SunWorld Online staff}", title = "{Internet Toaster}: And the readers say: Yes!", journal = j-SUNWORLD-ONLINE, volume = "02", pages = "??--??", year = "1996", ISSN = "1091-8914", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sun.com/sunworldonline/swol-02-1996/swol-02-appliance.results.html", abstract = "Our survey of SunWorld Online readers yielded strong, even impassioned, support for the whole idea of an Internet Terminal. Also, reader comments.", acknowledgement = ack-nhfb, fjournal = "SunWorld online", } @Article{Sutherland:1996:SM, author = "J. Sutherland", title = "The {Smalltalk} manifesto", journal = j-OBJECT-MAG, volume = "6", number = "7", pages = "56--59", month = sep, year = "1996", CODEN = "OBMAFO", ISSN = "1055-3614", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6150N (Distributed systems software); C6115 (Programming support)", corpsource = "Individual Inc., Cambridge, MA, USA", fjournal = "Object Magazine", keywords = "information highway; Internet; Internet-based development environment; Java; obsolete software; programming environments; Smalltalk; Smalltalk manifesto; Web", treatment = "G General Review; P Practical", } @Article{Swanson:1996:RTS, author = "S. Swanson and G. Travis", title = "Real time streaming and {Java}", journal = j-OBJECT-MAG, volume = "????", number = "????", pages = "36--??, 38--39", month = jul, year = "1996", CODEN = "OBMAFO", ISSN = "1055-3614", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6150N (Distributed systems software); C6110J (Object-oriented programming); C6140D (High level languages); C6110F (Formal methods); C5620W (Other computer networks); C5620L (Local area networks); C7210 (Information services and centres); C6150G (Diagnostic, testing, debugging and evaluating systems)", corpsource = "EarthWeb, New York, NY, USA", fjournal = "Object Magazine", keywords = "client-server systems; commercial real-time data; EarthWeb; EarthWeb Monitoring; Internet; Internet developers; IS-specific intranet monitoring utility; Java programming language; local area networks; news headlines; object-; object-oriented; object-oriented environment; object-oriented methods; oriented languages; programming; projects; real time streaming; real-time data; real-time systems; RT project; RT real-time delivery system; services; sports updates; stock quotes; system monitoring; technology base; Utility; weather reports", treatment = "G General Review", } @Book{Sydow:1996:IJP, author = "Dan P. Sydow", title = "Instant {Java} Without Programming", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "????", month = sep, year = "1996", ISBN = "0-7645-4008-4", ISBN-13 = "978-0-7645-4008-0", LCCN = "????", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$34.99", acknowledgement = ack-nhfb, keywords = "Java (computer program language); technology -- computers and computer technology", xxnote = "Duplicate ISBN with \cite{Wall:1996:IJP}.", } @Book{Sydow:1996:JJF, author = "Dan Parks Sydow", title = "Jumping To {Java}: Fast Track For {C} And {C++} Programmers", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xi + 473", year = "1996", ISBN = "0-7645-4007-6", ISBN-13 = "978-0-7645-4007-3", LCCN = "QA76.73.J38S95 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0764540076/wholesaleproductA/; http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99", URL = "http://www.idgbooks.com/database/book_result.msql?uid=uidg323&isbn=0-7645-4007-6", acknowledgement = ack-nhfb, dimensions = "9.20in x 7.34in x 1.24in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Periodical{Sys-Con:1996:JDJ, key = "JAVA Developer's Journal", title = "{JAVA} Developer's Journal", publisher = "Sys-Con Publications", address = "Jersey City, NJ, USA", year = "1996", ISSN = "1087-6944", bibdate = "Fri May 31 08:36:17 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, alttitle = "JAVA developer's journal", } @Book{Szwillus:1996:SBE, author = "Gerd Szwillus and Lisa Neal", title = "Structure-Based Editors and Environments", publisher = pub-AP, address = pub-AP:adr, pages = "viii + 374", year = "1996", ISBN = "0-12-681890-8", ISBN-13 = "978-0-12-681890-1", LCCN = "QA76.9.H85 S89 1996", bibdate = "Fri Jun 27 10:23:02 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses editors for Java, HTML, Visual Basic, Visual C, \ldots{}.", price = "US\$75.00", acknowledgement = ack-nhfb, } @Article{Tabata:1996:WDL, author = "K. Tabata", title = "What's a digital library?", journal = j-JOHO-SHORI, volume = "37", number = "9", pages = "814--819", month = sep, year = "1996", CODEN = "JOSHA4", ISSN = "0447-8053", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7210L (Library automation); C7210 (Information services and centres); C7250 (Information storage and retrieval)", countrypub = "Japan", fjournal = "Joho-Shori (J. Information Processing Soc. Japan)", keywords = "automation; CD-ROM; CD-ROMs; collaboration; digital libraries; digital library; electronic libraries; HTML; information retrieval; Internet; Java; languages; library; optical character recognition; page description; reality; SGML; TULIP journal browser; URL; virtual; virtual libraries; virtual reality; Wide Web; World", language = "Japanese", treatment = "G General Review", } @InProceedings{Taft:1996:PIA, author = "Tucker Taft", title = "Programming the {Internet} in {Ada 95}", crossref = "Strohmeier:1996:RST", pages = "1--16", year = "1996", bibdate = "Mon Mar 10 22:46:38 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Describes the Intermetrics Ada 95 compiler, which generates Java Virtual Machine bytecodes directly.", classcodes = "C6115 (Programming support); C6140D (High level languages); C6150C (Compilers, interpreters and other processors); C6110J (Object-oriented programming)", conflocation = "Montreaux, Switzerland; 10--14 June 1996", conftitle = "Proceedings of Ada-Europe '96 Conference in cooperation with Reliable Software Technologies", corpsource = "Intermetrics Inc., Cambridge, MA, USA", countrypub = "Germany", keywords = "Ada; Ada 95; applets; byte; code representation; compiler generator; compiler generators; computational linguistics; computer applications; Internet; Java; mapping; object-oriented languages; programming environments; programming platform; semantic models; World Wide Web", treatment = "P Practical", } @Article{Takata:1996:TMI, author = "S. Takata and C. Yamashita and S. Yamamoto", title = "{TEA}: multimedia information system architecture technology", journal = j-NTT-R-D, volume = "45", number = "8", pages = "745--752", month = "????", year = "1996", CODEN = "NTTDEC", ISSN = "0915-2326", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6130M (Multimedia); C6160S (Spatial and pictorial databases)C6150N (Distributed systems software)", corpsource = "NTT Software Labs., Tokyo, Japan", countrypub = "Japan", fjournal = "NTT R\&D", keywords = "actions; database management systems; Internet; Java; large-scale information systems; link script specifications; links; multimedia computing; multimedia information system architecture; network loadable components; object-oriented programming; page construction; reuse; software; software modification; software reusability; system design; TEA; Web browsers; World Wide", language = "Japanese", treatment = "P Practical", } @Book{Tapley:1996:OGJ, author = "Rebecca Tapley and Nova Spivak and Jack D. Hidary and Murray Hidary", title = "The Official {Gamelan Java} Directory", publisher = pub-ZD, address = pub-ZD:adr, pages = "xv + 244", month = oct, year = "1996", ISBN = "1-56276-449-7", ISBN-13 = "978-1-56276-449-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/zdpress/; http://www.amazon.com/exec/obidos/ISBN=1562764497/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.99, CDN\$42.95, UK\pounds 27.95", URL = "http://www.mcp.com/cgi-bin/bag?isbn=1-56276-449-7&last=/bookstore", acknowledgement = ack-nhfb, dimensions = "9.87in x 8.48in x 0.84in", xxauthor = "Rebecca Tapley and Nova Spivack and Alex Chaffee and Steve Renaker", } @Book{Tatters:1996:TYN, author = "Wes Tatters", title = "Teach yourself {Netscape Web} publishing in a week", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxvi + 634", year = "1996", ISBN = "1-57521-068-1", ISBN-13 = "978-1-57521-068-1", LCCN = "TK5105.883.N48 T38 1996", bibdate = "Mon Aug 19 08:46:39 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575210681.html", acknowledgement = ack-nhfb, alttitle = "Teach yourself Netscape 2 Web publishing Netscape Web publishing", annote = "``Covers JavaScript''--Cover. Day 1. Introducing the World Wide Web, Hypertext, and Netscape -- Day 2. Creating Simple Web Documents -- Day 3. Building on the Basics -- Day 4. Enhancing Your Web Page's Visual Appearance -- Day 5. Going Online -- Day 6. Developing Interactive Web Pages -- Day 7. Programming with Java and JavaScript -- Appendix. System requirements for accompanying laser disk: HTML editing tools for Windows and Macintosh, sample Java applets and JavaScript code, examples from the book, templates, backgrounds, icons, and graphics.", keywords = "Electronic publishing -- Computer programs; Internet (Computer network); Netscape; World Wide Web (Information retrieval system)", } @Article{Tessier:1996:SDB, author = "Tom Tessier", title = "Sharing Data Between {Web} Page Frames Using {JavaScript}: Implementing a Hidden-Frame Technique", journal = j-DDJ, volume = "21", number = "5", pages = "72, 74--75, 86--87", month = may, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover database", abstract = "Frames are a powerful addition to HTML. When used in conjunction with JavaScript, you can create impressive pages that previously required knowledge of complex, server-based CGI.", acknowledgement = ack-nhfb, affiliation = "Eng. Phys. Dept., Alberta Univ., Edmonton, Alta., Canada", classcodes = "C6130M (Multimedia); C6130D (Document processing techniques); C6150N (Distributed systems software)", corpsource = "Eng. Phys. Dept., Alberta Univ., Edmonton, Alta., Canada", fjournal = "Dr. Dobb's Journal of Software Tools", keywords = "authoring languages; browser; client-side; complete computer programs; data sharing; dynamic pages; hidden-frame technique; HotJava; hypermedia; image maps; interactive games; interactive pages; interactive systems; Internet; Java; JavaScript; Netscape Navigator 2.0; page frames; table-of-contents information; World Wide Web", treatment = "P Practical", } @Article{Tessier:1996:UJC, author = "Tom Tessier", title = "Using {JavaScript} to Create Interactive {Web} Pages", journal = j-DDJ, volume = "21", number = "3", pages = "84, 86--89, 96--97", month = mar, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover database", abstract = "JavaScript is a cross-platform object scripting language designed to let you glue together HTML documents, Java applets, and Netscape plug-ins on both clients and servers. Tom uses it to build a program that presents the client browser with", acknowledgement = ack-nhfb, affiliation = "Dept. of Eng. Phys., Alberta Univ., Edmonton, Alta., Canada", classcodes = "C6130D (Document processing techniques); C6140D (High level languages); C6115 (Programming support); C6150N (Distributed systems software); C6150C (Compilers, interpreters and other processors); C6110J (Object-oriented programming); C6130M (Multimedia)", corpsource = "Dept. of Eng. Phys., Alberta Univ., Edmonton, Alta., Canada", fjournal = "Dr. Dobb's Journal of Software Tools", keywords = "applets; authoring languages; CGI-like scripts; client-based interpreter; client-server systems; cross-; expression syntax; flow-control features; HTML documents; hypermedia; Hypertext Markup Language; interactive systems; interactive Web pages; Internet; Java; JavaScript; Navigator 2.0; Netscape; Netscape plug-ins; object-oriented languages; page description languages; platform object scripting language; program interpreters; security; types; World Wide Web", treatment = "P Practical", } @Book{Thomas:1996:JPI, author = "Michael D. Thomas and Pratik R. Patel and Alan D. Hudson and Donald A. {Ball, Jr.}", title = "{Java} Programming for the {Internet}: {A} Guide to Creating Dynamic, Interactive {Internet} Applications", publisher = pub-VENTANA-COMM-GROUP, address = pub-VENTANA-COMM-GROUP:adr, pages = "xxiv + 780", year = "1996", ISBN = "1-56604-355-7", ISBN-13 = "978-1-56604-355-7", LCCN = "QA76.73.J38 J38 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1566043557/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.vmedia.com/", price = "US\$49.95", URL = "http://www.course.com/templates/catalog/detail.cfm?isbn=1-56604-355-7; http://www.vmedia.com/cat/press/store/java/", acknowledgement = ack-nhfb, dimensions = "9.29in x 7.37in x 1.79in", keywords = "(computer network); internet; Internet (Computer network); Java (Computer program language); Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Book{Tittel:1996:AJ, author = "Ed Tittel and Mark Gaither", title = "{Alles Java! Einf{\"u}hrung mit praktischen Beispielen}", publisher = pub-ITCP, address = pub-ITCP:adr, pages = "413", year = "1996", ISBN = "3-8266-0259-5 (??invalid ISBN??)", ISBN-13 = "978-3-8266-0259-7 (??invalid ISBN??)", LCCN = "????", bibdate = "Tue Mar 03 09:53:41 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "59 DM", URL = "http://www.itp.de/; http://www.lanw.com/etbio.htm; http://www.thomson.com/intluk.html", acknowledgement = ack-nhfb, language = "German", xxtitle = "{Einf{\"u}hrung in Java}", } @Book{Tittel:1996:J, author = "Ed Tittel and Mark Gaither", title = "{Java}", publisher = pub-APOGEO, address = pub-APOGEO:adr, pages = "????", month = feb, year = "1996", ISBN = "88-7303-165-0 (??Invalid checksum??)", ISBN-13 = "978-88-7303-165-9 (??Invalid checksum??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/italian.html; http://www.apogeonline.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "32000 Lire", URL = "http://www.apogeonline.com/catalogo/244.html; http://www.urra.it/244.html; http://www.urra.it/apocat.html", acknowledgement = ack-nhfb, language = "Italian", } @Book{Tittel:1996:JS, author = "Ed Tittel", title = "{Java} Secrets", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "????", month = oct, year = "1996", ISBN = "0-614-20273-6", ISBN-13 = "978-0-614-20273-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$44.99", acknowledgement = ack-nhfb, keywords = "Java (computer program language)", } @Book{Tittel:1996:OIW, author = "Ed Tittel", title = "The Official {Internet} World 60 Minute Guide to {Java}", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, edition = "Second", pages = "????", month = may, year = "1996", ISBN = "0-7645-8006-X", ISBN-13 = "978-0-7645-8006-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$24.99", acknowledgement = ack-nhfb, keywords = "(computer network); internet; Java (computer program language); technology -- computers and computer technology", xxtitle = "{Internet} World 60 Minute Guide to {Java}", } @Book{Tittel:1996:UJ, author = "Ed Tittel", title = "Undocumented {Java}", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xxvi + 885", month = oct, year = "1996", ISBN = "0-7645-8007-8", ISBN-13 = "978-0-7645-8007-9", LCCN = "QA76.73.J38H373 1997", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$44.99", acknowledgement = ack-nhfb, keywords = "Java (computer program language); technology -- computers and computer technology", xxnote = "Duplicate ISBN with \cite{Harold:1996:JS}. Library of Congress has author Elliotte Rusty Harold and title Java Secrets for this ISBN??", } @InProceedings{Tokmakoff:1996:SBO, author = "A. Tokmakoff and J. Billington", title = "Service brokering in object-based systems: advanced information services", crossref = "IEEE:1996:IWC", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210L (Computer communications); C6150N (Distributed systems software); C6110J (Object-oriented programming); C6160J (Object-oriented databases); C7210 (Information services and centres); C6160B (Distributed databases)", conflocation = "Antwerpen, Belgium; 23--24 May 1996", conftitle = "3rd International Workshop on Community Networking 1996. Proceedings", corpsource = "Telecommun. Syst. Eng. Centre, South Australia Univ., The Levels, SA, Australia", keywords = "advanced; application domain; Architecture; coloured Petri nets; Common Object Request Broker Architecture; CORBA; distributed databases; distributed operating systems; dynamic object location; implementation; information services; ISO standards; ISO/ITU-T Reference Model for Open Distributed Processing; Java; large-scale distributed applications; load balancing; network operating systems; object-; object-oriented databases; open object-based systems; open systems; oriented programming; service brokering; software hierarchy; software standards; technologies; telecommunication service provision; telecommunication services; telecommunication standards; Telecommunications Information Networking; TINA", sponsororg = "IEEE Commun. Soc.; Alcatel Telecom", treatment = "A Application; P Practical", } @Article{Tomasula:1996:JPT, author = "D. Tomasula", title = "{Java} percolates through {Wall Street}", journal = j-WALL-ST-TECH, volume = "14", number = "3", pages = "54--??, 56", month = mar, year = "1996", CODEN = "WSTEE5", ISSN = "1060-989X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D2050 (Financial applications)", fjournal = "Wall Street and Technology", keywords = "distributed applications programming language; finance; financial firms; Internet; Java; management systems; Microsystems; object-; object-oriented languages; oriented programming; proprietary risk; risk management; Sun; Wall Street", treatment = "P Practical", } @Book{Torok:1996:JPPa, author = "Gabriel Torok", title = "{JavaScript} Primer Plus", publisher = pub-MACMILLAN-COMPUTER, address = pub-MACMILLAN-COMPUTER:adr, pages = "????", month = sep, year = "1996", ISBN = "0-614-20295-7", ISBN-13 = "978-0-614-20295-3", LCCN = "????", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99", acknowledgement = ack-nhfb, keywords = "JavaScript (computer program language)", } @Book{Torok:1996:JPPb, author = "Gabriel Torok and Jeffrey Payne and Matt Weisfeld", title = "{JavaScript} Primer Plus: Enhancing {Web} Pages With the {JavaScript} Programming Language", publisher = pub-WAITE-GROUP, address = pub-WAITE-GROUP:adr, pages = "xxviii + 588", month = dec, year = "1996", ISBN = "1-57169-041-7", ISBN-13 = "978-1-57169-041-8", LCCN = "QA76.73.J39J39 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1571690417/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99", acknowledgement = ack-nhfb, dimensions = "9.13in x 7.41in x 1.33in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Book{Toupin:1996:UBC, author = "Ed Toupin and Russ Jacobs", title = "Using {Borland C++ 5}, Special Edition: Develop Sophisticated Applications For {Windows 95} And {Windows NT}, Write {Java} Code With The {Java} Development Kit", publisher = pub-QUE, address = pub-QUE:adr, pages = "xxvii + 870", year = "1996", ISBN = "0-7897-0284-3 (softcover)", ISBN-13 = "978-0-7897-0284-5 (softcover)", LCCN = "QA76.73.C153K56 1996", bibdate = "Sat Sep 13 14:36:20 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$44.99", xxnote = "Library of Congress says authors are: Paul Kimmel with Mark Reichert and others??", } @InProceedings{Tremblay:1996:PHI, author = "Marc Tremblay and Michael O'Connor", title = "{PicoJava}: {A} hardware Implementation of the {Java Virtual Machine}", crossref = "IEEE:1996:HCV", pages = "131--144", year = "1996", bibdate = "Sat Jan 6 19:21:13 MST 2001", bibsource = "ftp://www.hotchips.org/pub/hotc7to11cd/hc96/hc8_pdf/4.3.pdf; http://www.math.utah.edu/pub/tex/bib/java.bib; OCLC Proceedings database", acknowledgement = ack-nhfb, } @Article{Tucker:1996:STJ, author = "Michael J. Tucker", title = "{SunSoft} Takes {Java} to Net Management", journal = j-WEBSERVER, volume = "1", number = "2", pages = "18, 20", month = jul # "\slash " # aug, year = "1996", ISSN = "1087-4232", bibdate = "Wed Aug 21 10:53:58 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cpg.com", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @InProceedings{Turpeinen:1996:AAP, author = "M. Turpeinen and J. Saarela and M. Korkea-Aho and T. Puskala and R. Sulonen", title = "Architecture for agent-mediated personalised news services", crossref = "Anonymous:1996:PPF", pages = "615--628", year = "1996", bibdate = "Sat Oct 12 15:29:39 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7210 (Information services and centres); C7230 (Publishing and reproduction); C5620W (Other computer networks); C6130M (Multimedia); C6170 (Expert systems); C7250R (Information retrieval techniques); C6160J (Object-oriented databases)", conflocation = "London, UK; 22--24 April 1996", conftitle = "Proceedings of First International Conference on Practical Application of Intelligent Agents and Multi-Agent Technology", corpsource = "Dept. of Comput. Sci., Helsinki Univ. of Technol., Espoo, Finland", countrypub = "UK", keywords = "agent mediated personalised news services; agent technology; agents; consumer agent; consumer agents; electronic publishing; filtering; information retrieval; Internet; Java; keyword searches; KQML; logical model; multimedia items; multimedia objects; multimedia systems; newspaper editors; object; object-oriented databases; oriented databases; personalised news service; personalised newspaper; potential; producer agent; semantic categories; semantic matching; social; software; user preferences; World Wide Web", treatment = "P Practical", } @InProceedings{Tygar:1996:WEC, author = "J. D. Tygar and Alma Whitten", title = "{WWW} Electronic Commerce and {Java Trojan} Horses", crossref = "USENIX:1996:WEC", institution = "Carnegie Mellon University", pages = "243--250", day = "18--21", month = nov, year = "1996", bibdate = "Thu Apr 30 13:04:51 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/cgi-bin/sortbib.pl?-sA", acknowledgement = ack-nhfb, } @Book{Tyma:1996:JPPa, author = "Paul Tyma and Gabriel Torok and Troy Downing", title = "{Java} primer plus: supercharging {WEB} applications with the {Java} programming language", publisher = pub-WAITE-GROUP, address = pub-WAITE-GROUP:adr, pages = "xxv + 612", year = "1996", ISBN = "1-57169-062-X", ISBN-13 = "978-1-57169-062-3", LCCN = "QA76.64 .T96 1996", bibdate = "Tue Aug 19 10:56:27 1997", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/waite/; http://www.amazon.com/exec/obidos/ISBN=157169062X/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$39.99; 80,00 DM", URL = "http://www.mcp.com/waite/books.new/Java_Primer_Plus/html/jppcov.html; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm; http://www.preemptive.com/javap.html; http://www.preemptive.com/{javap}.html", acknowledgement = ack-nhfb, alttitle = "Java primer plus", annote = "System requirements: IBM compatible PC; CD-ROM drive.", dimensions = "9.09in x 7.08in x 1.41in", keywords = "Java (Computer program language); Multimedia systems; Object-oriented programming (Computer science); World Wide Web (Information retrieval system)", } @Book{Tyma:1996:JPPb, author = "Paul Tyma and Gabriel Torok and Troy Downing", title = "{Java} Primer Plus", publisher = pub-DAERIM, address = pub-DAERIM:adr, pages = "????", month = may, year = "1996", ISBN = "89-7280-301-4 (??Invalid checksum??)", ISBN-13 = "978-89-7280-301-0 (??Invalid checksum??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/korean.html; http://www.drbook.co.kr/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Korean translation by Yoon Kyung Koo of \cite{Tyma:1996:JPPa}.", price = "23,000 Won", URL = "http://www.drbook.co.kr/; http://www.interpia.net/~yoonforh/", acknowledgement = ack-nhfb, language = "Korean", } @Article{Tyma:1996:TJP, author = "Paul Tyma", title = "Tuning {Java} Performance", journal = j-DDJ, volume = "21", number = "4", pages = "52, 55--56, 58, 90", month = apr, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "Compendex database; http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Syracuse Univ., NY, USA", classcodes = "C6140D (High level languages); C6110J (Object-oriented programming); C6150C (Compilers, interpreters and other processors)", classification = "723.1; 723.1.1; 723.2; 723.5; 921.5", corpsource = "Syracuse Univ., NY, USA", fjournal = "Dr. Dobb's Journal of Software Tools", keywords = "Algorithms; Binary searches; Codes (symbols); compiler; Computer aided software engineering; Computer programming languages; Data structures; Encoding (symbols); Hash tables; independent; Inlining; Internet; interpreted code; Java; object oriented language; Object oriented programming; object oriented programming; object-oriented languages; object-oriented programming; Optimization; optimization; Performance; performance; platform; Program compilers; program compilers; Program interpreters; programming language; Quick sorts; Software Package Java; software performance evaluation; Synchronization", treatment = "P Practical", } @Article{Ubois:1996:JJA, author = "J. Ubois", title = "{Java}: just another language, or a whole new paradigm?", journal = j-DIGITAL-MEDIA, volume = "6", number = "2", pages = "3--6", month = jul # "-" # aug, year = "1996", CODEN = "DMEDEG", ISSN = "1056-7038", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D5000 (Office automation --- computing)", fjournal = "Digital Media", keywords = "high level languages; Internet; Java; JavaSoft; Microsoft; portable software; programming languages; software developers; solution", treatment = "E Economic; P Practical", } @Article{Ubois:1996:WMS, author = "Jeff Ubois", title = "{Wave Maker Starwave VP Patrick Naughton} --- who helped create {Java} at {Sun} --- offers some strong opinions on {Java}, {Visual Basic}, {VRML}, {Internet} over cable, and more", journal = j-INTERNET-WORLD, volume = "7", number = "3", pages = "96--??", month = "????", year = "1996", CODEN = "IERNE8", ISSN = "1064-3923", bibdate = "Tue Mar 12 13:11:43 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Internet World", } @Article{Udell:1996:YBN, author = "Jon Udell", title = "Your Business Needs the {Web}", journal = j-BYTE, volume = "21", number = "8", pages = "68--70, 72, 74, 76, 78, 80", month = aug, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses NASA's distributed data visualization using Java.", acknowledgement = ack-nhfb, classcodes = "C6150N (Distributed systems software); C5620W (Other computer networks); C6110B (Software engineering techniques); C7190 (Other fields of business and administrative computing)", fjournal = "BYTE Magazine", keywords = "ActiveX; business; business data processing; business partners; client-server systems; Common Gateway Interface; customers; executable Web-page scheme; Internet; Java; legacy systems; network operating systems; planetary IP network; planetary operating; software engineering; system; Web clients; Web computing platform; Web server-based application building; World Wide Web", treatment = "P Practical", } @Article{Urgo:1996:JFH, author = "M. Urgo", title = "{Java} --- the future is here again", journal = j-BUSINESS-INFO-REV, volume = "13", number = "2", pages = "107--108", month = jun, year = "1996", CODEN = "BIREEY", ISSN = "0266-3821", ISSN-L = "0266-3821", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C7210 (Information services and centres); C6110B (Software engineering techniques)", countrypub = "UK", fjournal = "Business Information Review", keywords = "hardware designers; information services; Java programming language; object-oriented languages; platform-independent software development; portability; professionals; site development; software; Web", treatment = "G General Review", } @Book{Urgo:1996:JSW, author = "Marisa Urgo", title = "The {Java} Source: The Worldwide Guide to {Java} Companies, Products, Services, and Books", publisher = pub-SIGS, address = pub-SIGS:adr, pages = "????", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Fri Sep 20 13:49:48 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sigs.com/books/worldjava.html", acknowledgement = ack-nhfb, xxauthor = "Marissa Urgo", } @Book{Vacca:1996:JDB, author = "John R. Vacca", title = "{Javascript} Development: Bringing Application Development and Customization for {Intranets} and the {Internet}", publisher = pub-AP-PROFESSIONAL, address = pub-AP-PROFESSIONAL:adr, pages = "xxxi + 559", year = "1996", ISBN = "0-12-710005-9 (paperback), 0-12-710006-7 (CD-ROM)", ISBN-13 = "978-0-12-710005-0 (paperback), 978-0-12-710006-7 (CD-ROM)", LCCN = "QA76.73.J38V33 1997", bibdate = "Thu Aug 21 17:16:59 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0127100059/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$34.95", acknowledgement = ack-nhfb, annote = "System requirements: Macintosh/Power Mac (System 7.5.1 and higher); PC, Windows 3.1, 95 and NT 3.5; HP-UX; Sun (OS and Solaris); SGI IRIX; DEC (Alpha and Ultrix); Linux; IBM AIX.", dimensions = "9.19in x 7.36in x 1.10in", keywords = "Application software -- Development; Internet (Computer network); Intranets (Computer networks); Java; JavaScript (Computer program language); technology -- computers and computer technology", paperback = "yes", } @Article{Valentine:1996:NAN, author = "Jon L. Valentine", title = "{Netscape} Aims for {Number ONE}", journal = j-WEBSERVER, volume = "1", number = "3", pages = "6, 8, 9", month = sep # "\slash " # oct, year = "1996", ISSN = "1087-4232", bibdate = "Tue Dec 03 07:12:54 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses JavaScript, LiveConnect, and CORBA.", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @MastersThesis{Valles:1996:JJW, author = "David J. Valles", title = "A {Java} jukebox for the {World Wide Web}", type = "Thesis (B.S.)", school = "California Polytechnic State University", address = "San Luis Obispo, CA, USA", pages = "iv + 26 + 18", year = "1996", bibdate = "Sat Aug 17 16:45:43 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Vandendorpe:1996:SYW, author = "Laura Vandendorpe", title = "{Scientist of the Year} Weaves {Web} over the World", journal = j-RES-DEV, volume = "38", number = "12", pages = "14--16, 18", month = nov, year = "1996", CODEN = "REDEEA", ISSN = "0746-9179", bibdate = "Fri Nov 01 11:34:33 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Profile of WWW inventor Tim Berners-Lee. Also includes discussion of the Jigsaw HTTP server, written entirely in Java.", acknowledgement = ack-nhfb, fjournal = "Research \& Development", } @Book{Vanderburg:1996:PJD, author = "Glenn Vanderburg", title = "Professional {Java} Development Kit {C/Ww95/Ww}", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "????", day = "1", month = oct, year = "1996", ISBN = "1-57521-200-5", ISBN-13 = "978-1-57521-200-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575212005.html; http://www.amazon.com/exec/obidos/ISBN=1575212005/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$89.95", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575212005.html", acknowledgement = ack-nhfb, dimensions = "9.38in x 7.51in x 2.66in", } @Book{Vanderburg:1996:TJP, author = "Glenn L. Vanderburg and others", title = "Tricks of the {Java} Programming Gurus", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxviii + 847", day = "1", month = jul, year = "1996", ISBN = "1-57521-102-5", ISBN-13 = "978-1-57521-102-2", LCCN = "QA76.73.J38V37 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.amazon.com/exec/obidos/ISBN=1575211025/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99, CDN\$56.95, UK\pounds 37.50", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575211025.html; http://www.mcp.com/288190891680543/cgi-bin/bag?isbn=1-57521-102-5&last=/bookstore; http://www.mcp.com/samsnet/", acknowledgement = ack-nhfb, dimensions = "9.01in x 7.32in x 2.12in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", xxnote = "Book itself lists authors as ``Vanderburg et al.''.", } @Book{vanderLinden:1996:JJ, author = "Peter {van der Linden}", title = "Just {Java}", publisher = pub-SUNSOFT, address = pub-SUNSOFT:adr, pages = "xxiii + 354", month = apr, year = "1996", ISBN = "0-13-565839-X, 0-13-493982-4 (disc)", ISBN-13 = "978-0-13-565839-0, 978-0-13-493982-7 (disc)", LCCN = "QA76.73.J38V36 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=013565839X/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$34.95", series = "Java series", URL = "http://www.sun.com/smi/ssoftpress/books/vanderLinden2/vanderLinden2.html", acknowledgement = ack-nhfb, annote = "The SunSoft Press Java Series CD-ROM is a standard ISO-9660 disc. Software on this CD-ROM requires Windows 95, Windows NT, Solaris 2, or Macintosh (System 7.5). Windows 3.1 is not supported.", dimensions = "9.21in x 7.03in x 1.17in", keywords = "Java (computer program language); technology -- data processing", paperback = "yes", } @Book{VanderVeer:1996:JD, author = "Emily A. {Vander Veer}", title = "{JavaScript} for Dummies", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xx + 378", day = "1", month = nov, year = "1996", ISBN = "0-7645-0071-6", ISBN-13 = "978-0-7645-0071-8", LCCN = "QA76.73.J39V36 1996", bibdate = "Thu Aug 21 14:31:35 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0764500716/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$24.99", series = "For Dummies Ser", acknowledgement = ack-nhfb, dimensions = "9.21in x 7.33in x 1in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Book{Vanhelsuwe:1996:MJ, author = "Laurence Vanhelsuw{\'e}", title = "Mastering {Java}", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "????", month = sep, year = "1996", ISBN = "0-614-20326-0", ISBN-13 = "978-0-614-20326-4", LCCN = "????", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", acknowledgement = ack-nhfb, keywords = "Java (computer program language)", } @Book{Vanhelsuwe:1996:MJJ, author = "Laurence Vanhelsuw{\'e} and Ivan Phillips and Goang-Tay Hsu and Krishna Sankar and Eric Ries and Tim Rohaly and John Zukowski", title = "Mastering {Java 2 JDK}", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xxxvi + 967", day = "1", month = sep, year = "1996", ISBN = "0-7821-1935-2", ISBN-13 = "978-0-7821-1935-0", LCCN = "QA76.73.J38M355 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0782119352/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.com/", price = "US\$49.99", URL = "http://www.sybex.com/cgi-bin/bookpg.pl?1935back.html", acknowledgement = ack-nhfb, dimensions = "8.99in x 7.51in x 2.30in", keywords = "Java (computer program language); technology -- computers and computer technology", xxauthor-1 = "Andre Yee", xxauthor-2 = "Laurence Vanhelsuw{\'e} and Ivan Phillips and Goang-Tay Hsu and Krishna Sankar and Andre Yee", xxtitle = "Mastering {Java}", } @Book{vanHoff:1996:BJ, author = "Arthur {van Hoff} and Sami Shaio and Orca Starbuck", title = "Branch{\'e Java}", publisher = pub-ITP-FRANCE, address = pub-ITP-FRANCE:adr, pages = "xviii + 204", year = "1996", ISBN = "2-84180-078-4", ISBN-13 = "978-2-84180-078-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "French translation by Serge Chaumette and Alain Miniussi of \cite{vanHoff:1996:HJC}. Includes CD-ROM.", price = "220 FF", URL = "http://www.thomson.com/intluk.html", acknowledgement = ack-nhfb, language = "French", } @Book{vanHoff:1996:HJ, author = "Arthur {van Hoff} and Sami Shaio and Orca Starbuck", title = "Hooked on {Java}: creating hot {Web} sites with {Java} applets", publisher = pub-AW, address = pub-AW:adr, pages = "xviii + 181", year = "1996", ISBN = "0-201-48837-X (paperback), 0-201-85274-8 (computer laser optical disk)", ISBN-13 = "978-0-201-48837-1 (paperback), 978-0-201-85274-5 (computer laser optical disk)", LCCN = "QA76.64.V36 1996", bibdate = "Thu Apr 29 17:52:33 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM. See \cite{Nickerson:1996:HJ}.", price = "US\$29.95", series = "The Java Series", URL = "http://www.aw.com/devpress/java/index.html", acknowledgement = ack-nhfb, keywords = "Java (Computer program language); Multimedia systems; Object-oriented programming (Computer science); Programming languages; World Wide Web (Information retrieval system)", } @Book{vanHoff:1996:HJC, author = "Arthur {van Hoff} and Sami Shaio and Orca Starbuck", title = "Hooked on {Java}: creating hot {Web} sites with {Java} applets", publisher = pub-AW, address = pub-AW:adr, pages = "xviii + 181", month = jan, year = "1996", ISBN = "0-201-48837-X (paperback), 0-201-85274-8 (computer laser optical disk)", ISBN-13 = "978-0-201-48837-1 (paperback), 978-0-201-85274-5 (computer laser optical disk)", LCCN = "QA76.64.V36 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=020148837X/wholesaleproductA/; http://www.aw.com/devpress/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$29.95", series = "The Java Series", URL = "http://www.aw.com/devpress/java/index.html", acknowledgement = ack-nhfb, dimensions = "9.06in x 7.21in x 0.58in", keywords = "Java (Computer program language); Multimedia systems; Object-oriented programming (Computer science); Programming languages; World Wide Web (Information retrieval system)", } @Book{vanHoff:1996:JAE, author = "Arthur {van Hoff} and Sami Shaio and Orca Starbuck", title = "{Java-Applets erstellen und nutzen: Interaktive Web-Seiten selbstgemacht}", publisher = pub-AW, address = pub-AW:adr, pages = "221 (or 220??)", year = "1996", ISBN = "3-8273-1032-6", ISBN-13 = "978-3-8273-1032-3", LCCN = "????", bibdate = "Tue Mar 03 08:39:46 1998", bibsource = "http://www.addison-wesley.de/katalog; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "German translation of \cite{vanHoff:1996:HJC}. Includes CD-ROM.", price = "49,90 DM", URL = "http://www.addison-wesley.de/katalog/item.ppml?textexpr=Java&id=00004", acknowledgement = ack-nhfb, language = "German", url-author = "http://www.javasoft.com/people/avh/", url-publisher = "http://www.addison-wesley.de/", xxtitle = "{Applets programmieren mit Java}", } @Misc{vanHoff:1996:JLT, author = "Arthur {van Hoff}", title = "{Java} language tutorial: your second jolt", publisher = pub-UNIV-VIDEO-COMM, address = pub-UNIV-VIDEO-COMM:adr, year = "1996", bibdate = "Wed Oct 2 18:55:05 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "1 videocassette (83 min.)", acknowledgement = ack-nhfb, alttitle = "Breakout sessions", annote = "VHS.", keywords = "Java (Computer program language)", } @Article{vanHoff:1996:WTC, author = "Arthur {van Hoff} and Sami Shaio and Orca Starbuck", title = "What Is This Thing Called {Java} --- {Java} is a lot of things to a lot of people. Here are a dozen of its most important features, according to the people", journal = j-DATAMATION, volume = "42", number = "5", pages = "45--46", month = "????", year = "1996", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat Oct 12 16:26:29 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Datamation", keywords = "Java (Computer language); Object-oriented programming; User interfaces (Computers) --- Programming", } @Unpublished{vanVliet:1996:MD, author = "Hanpeter {van Vliet}", title = "Mocha decompiler", year = "1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Mocha turns Java bytecodes back into Java source code. The author died 31 December 1996; see \path=http://www.blackdown.org/~kbs/hanpeter.html=.", URL = "http://www.brouhaha.com/~eric/computers/mocha-bl.zip", } @Article{Varney:1996:DLW, author = "Sarah E. Varney", title = "Datawebs! Link the {Web} to your legacy data and apps", journal = j-DATAMATION, volume = "42", number = "????", pages = "38--41+", month = "????", year = "1996", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat Oct 12 16:26:29 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Datamation", keywords = "Client server computing; Java (Computer language); Software tools; World Wide Web (Computer network)", } @Article{Vaughan-Nichols:1996:ACJ, author = "Steven J. Vaughan-Nichols", title = "{ActiveX} Chases {Java}", journal = j-BYTE, volume = "21", number = "6", pages = "27--27", month = jun, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Tue May 21 06:22:28 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @InProceedings{Vckovski:1996:JSS, author = "A. Vckovski", title = "{Java} as a software system for distributed and interoperable geoprocessing", crossref = "Yetongnon:1996:PII", volume = "2", pages = "2--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7840 (Geography and cartography computing); C4240C (Computational complexity); C6160S (Spatial and pictorial databases); C4130 (Interpolation and function approximation)", conflocation = "Dijon, France; 25--27 Sept. 1996", conftitle = "Proceedings of 9th International Conference on Parallel and Distributed Computing Systems. PDCS '96", corpsource = "Spatial Data Handling Div., Zurich Univ., Switzerland", keywords = "computational complexity; data interoperability; databases; distributed; flexible interoperability model; format; geographic information systems; geoprocessing; heterogeneity; inherent complexity; interoperable geoprocessing; interpolation; language Java; object-oriented; OMG CORBA; Open Geodata Interoperability Specification; open systems; programming; real-world models; representation; semantic diversity; software system; specifications; standardisation; unit conversions; visual", sponsororg = "ISCA; IEEE Comput. Soc.; IEEE Tech. Committee on Operating Syst.; et al", treatment = "A Application; P Practical", } @Article{Venditto:1996:JIH, author = "Gus Venditto", title = "{Java}: It's Hot, But Is It Ready to Serve? --- {IW Labs} examines {Sun}'s {Java} language to determine how much of the buzz is hype", journal = j-INTERNET-WORLD, volume = "7", number = "2", pages = "76--??", year = "1996", CODEN = "IERNE8", ISSN = "1064-3923", bibdate = "Fri Feb 23 08:05:11 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Internet World", } @Article{Vermeulen:1996:ADP, author = "Allan Vermeulen", title = "An Asynchronous Design Pattern: {A} pattern for managing concurrency---written in {Java}!", journal = j-DDJ, volume = "21", number = "6", pages = "42--??, 44, 84--86", month = jun, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6140D (High level languages); C6120 (File organisation)", fjournal = "Dr. Dobb's Journal of Software Tools", keywords = "abstract data types; asynchronous case; asynchronous design pattern; asynchronous mechanism; complete computer programs; dialog box; IOU design pattern; Java; Java language; object IOU; object-; object-oriented programming; oriented languages; remote procedure call; thread", treatment = "P Practical", } @Book{Viegnes:1996:HJB, author = "Laurent Viegnes and St{\'e}phane Boix", title = "{HTML} \& {JAVA}: bien d{\'e}buter", publisher = pub-EDITION-MICRO-APPLICATIONS, address = pub-EDITION-MICRO-APPLICATIONS:adr, pages = "358", year = "1996", ISBN = "2-7429-0733-5", ISBN-13 = "978-2-7429-0733-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.microapp.com/", note = "Includes CD-ROM.", price = "59 FF", URL = "http://www.microapp.com/", acknowledgement = ack-nhfb, language = "French", xxtitle = "{HTML} et {Java} Bien Debuter", } @Article{Vigil:1996:MIS, author = "H. P. Vigil and M. Mueller", title = "Making the {Internet} safe for e-commerce", journal = j-DATAMATION, volume = "42", number = "16", pages = "64--65", month = oct, year = "1996", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D5020 (Computer networks and intercomputer communications); D2050B (Accounting); D2080 (Information services and database systems)", fjournal = "Datamation", keywords = "applet security policy; Authenticode; commerce; data; digital signatures; e-commerce; electronic data interchange; Internet; Java; Microsoft; security of; Sun", treatment = "P Practical", } @Article{Vogel:1996:BDS, author = "A. Vogel", title = "Building distributed systems in {Java}", journal = j-OBJECT-EXPERT, volume = "1", number = "6", pages = "24--27", month = sep # "-" # oct, year = "1996", CODEN = "OBEXFJ", ISSN = "1360-3426", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6150N (Distributed systems software); C6110J (Object-oriented programming); C6140D (High level languages)", corpsource = "DSTC, Brisbane, Qld., Australia", countrypub = "UK", fjournal = "Object Expert", keywords = "applets; client-server systems; distributed processing; distributed systems; IP sockets; Java; Java ORBs; libraries; object-; object-oriented language; oriented languages; remote corporate server application; remote invocation; remote procedure calls; software; software reusability; subroutines", treatment = "P Practical", } @Article{Volpano:1996:SDW, author = "D. Volpano and G. Smith", title = "On the systematic design of {Web} languages", journal = j-COMP-SURV, volume = "28", number = "2", pages = "315--317", month = jun, year = "1996", CODEN = "CMSVAN", ISSN = "0360-0300 (print), 1557-7341 (electronic)", ISSN-L = "0360-0300", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6150N (Distributed systems software); C6130S (Data security)", corpsource = "Dept. of Comput. Sci., Naval Postgraduate Sch., Monterey, CA, USA", fjournal = "ACM Computing Surveys", keywords = "data; data integrity; explicitly; high level languages; Internet; Java; security of; stated security properties; systematic Web language design; unauthorized disclosure attacks", treatment = "P Practical", } @InProceedings{Vuong:1996:MIA, author = "Son Vuong and Ivailo Ivanov", title = "Mobile intelligent agent systems: {WAVE} vs. {JAVA}", crossref = "IEEE:1996:PFC", pages = "196--199", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE catalog number 96TH100035.", acknowledgement = ack-nhfb, affiliation = "Univ of British Columbia", affiliationaddress = "Vancouver, BC, Can", classcodes = "B6210L (Computer communications); B6150M (Protocols); C6170K (Knowledge engineering techniques); C6115 (Programming support); C6150N (Distributed systems software); C5640 (Protocols); C6110B (Software engineering techniques); C5620L (Local area networks); C6140D (High level languages)", classification = "716.1; 722.4; 723.1.1; 723.4; 723.4.1; 723.5", conference = "Proceedings of the 1996 1st Annual Conference on Emerging Technologies and Applications in Communications", conflocation = "Portland, OR, USA; 7--10 May 1996", conftitle = "Proceedings of COM'96. First Annual Conference on Emerging Technologies and Applications in Communications", corpsource = "Dept. of Comput. Sci., British Columbia Univ., Vancouver, BC, Canada", journalabr = "Proc Annu Conf Emerging Technol Appl Commun etaCOM", keywords = "Artificial intelligence; based systems; client-server model; client-server systems; code modules; Computer networks; Computer programming languages; Data communication systems; Distributed computer systems; distributed computing; distributed processing; distributed system; dynamic creation; dynamic processing; dynamic societies; environments; HTTP; Information technology; interactive; Internet protocols; JAVA; knowledge; Knowledge based systems; Knowledge networks; knowledge networks; knowledge processing; Mobile intelligent agent system; mobile intelligent agent systems; Mobile telecommunication systems; mobility; Network protocols; object-oriented languages; Parallel processing systems; program; programming; programming environments; programming languages; software agents; software portability; TCP/IP protocols; transport protocols; WAVE", meetingaddress = "Portland, OR, USA", meetingdate = "May 7--10 1996", meetingdate2 = "05/07--10/96", sponsor = "ACM; IEEE", sponsororg = "IEEE Comput. Soc. Tech. Committee on Comput. Commun.; ACM SIGARCH; ACM SIGCOMM; ACM SIGMULTI", treatment = "A Application; P Practical", } @Article{Waddington:1996:JVM, author = "Simon Waddington and Stephen Li", title = "{Java}: Virtual Machine for Virtually Any Platform", journal = j-EMBED-SYS-PROG, volume = "9", number = "6", pages = "26--28, 30, 32, 34, 36, 38, 40, 42", day = "1", month = jun, year = "1996", CODEN = "EYPRE4", ISSN = "1040-3272", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "There's no doubt about it, Java has become a hot topic in recent months. But should embedded developers care? This overview describes Java's applicability in embedded systems.", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming); C6150N (Distributed systems software); C7210 (Information services and centres)", corpsource = "Wind River Syst. Inc., USA", fjournal = "Embedded Systems Programming", keywords = "embedded systems; interactive environment; Internet; Java; language; object oriented; object-oriented; object-oriented languages; portable; programming; real-time systems; system security; virtual machine; virtual machines; Web pages; World Wide Web", treatment = "P Practical", } @Article{Wagner:1996:HSC, author = "Mitch Wagner", title = "Hot showgoers cool toward {Java}", journal = j-COMPUTERWORLD, volume = "30", number = "19", pages = "14--14", day = "6", month = may, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Wed May 22 11:26:46 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Wagner:1996:JU, author = "Richard Wagner and Paul Colton", title = "{JavaScript} Unleashed", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxx + 869", day = "1", month = oct, year = "1996", ISBN = "1-57521-118-1", ISBN-13 = "978-1-57521-118-3", LCCN = "QA76.73.J39J38 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1575211181/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575211181.html; http://www.mcp.com/samsnet/", acknowledgement = ack-nhfb, dimensions = "9.05in x 7.31in x 2.22in", keywords = "(computer program language); JavaScript; technology -- computers and computer technology", paperback = "yes", xxauthor = "Paul Colten and others", xxnote = "Library of Congress says authors are Richard Wagner and others??", } @Article{Walder:1996:CIP, author = "B. Walder", title = "{CT} and the {Internet}: paving the way for a paperless empire", journal = j-NETWORK-WEEK, volume = "1", number = "42", pages = "29--31", day = "10", month = "????", year = "1996", CODEN = "NEWEFS", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D2080 (Information services and database systems); D4070 (Telephone systems)", countrypub = "UK", fjournal = "Network Week", keywords = "automatic screen pops; call centres; communications; computer telephony; facsimile; fax; features; filled order forms; Internet; Java; multimedia; NetPhonic Web On Call; paperless empire; pre-; Quarterdeck server; routing; software; Sun Microsystems; telecomms; telephony; telephony server; text-to-speech engine; unified messaging systems; visual; Vocaltec Internet Phone Technology; voice; voice browser; voice communication; Web-server; World Wide Web", treatment = "P Practical", } @Article{Waldo:1996:IIJ, author = "J. Waldo", title = "Interface and implementation [{Java}]", journal = j-UNIX-REVIEW, volume = "14", number = "13", pages = "81--82, 85--86", month = dec, year = "1996", CODEN = "UNRED5", ISSN = "0742-3136", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6140D (High level languages); C6130 (Data handling techniques)", fjournal = "UNIX review", keywords = "association; classes; code reuse; data; data collection; data handling; data manipulation code; data schema manipulation; data-code; Java implementation; Java interfaces; language; object functioning; object-oriented; object-oriented languages; object-oriented methods; program code; programming; representation", treatment = "P Practical", } @Article{Waldo:1996:JAI, author = "Jim Waldo", title = "{Java} Advisor: Interface and Implementations", journal = j-UNIX-REVIEW, volume = "14", number = "??", pages = "81--84", month = dec, year = "1996", CODEN = "UNRED5", ISSN = "0742-3136", bibdate = "Tue Mar 11 22:27:01 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "UNIX review", } @Article{Waldo:1996:JAL, author = "Jim Waldo", title = "{Java} Advisor: {A} Language With Class", journal = j-UNIX-REVIEW, volume = "14", number = "9", pages = "83--92", day = "1", month = aug, year = "1996", CODEN = "UNRED5", ISSN = "0742-3136", bibdate = "Tue Mar 11 22:27:01 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", acknowledgement = ack-nhfb, fjournal = "UNIX review", } @Article{Waldo:1996:JAP, author = "Jim Waldo", title = "{Java} Advisor: Protected Classes", journal = j-UNIX-REVIEW, volume = "14", number = "??", pages = "97--101", month = oct, year = "1996", CODEN = "UNRED5", ISSN = "0742-3136", bibdate = "Tue Mar 11 22:27:01 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "UNIX review", } @Article{Waldo:1996:PCJ, author = "J. Waldo", title = "Protected classes [in {Java}]", journal = j-UNIX-REVIEW, volume = "14", number = "11", pages = "97--98, 100--101", month = oct, year = "1996", CODEN = "UNRED5", ISSN = "0742-3136", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6140D (High level languages); C6120 (File organisation)", fjournal = "UNIX review", keywords = "abstract data types; Java classes; languages; member functions; name visibility; namespace; naming services; object-oriented; object-oriented language; object-oriented programming; protected classes; protection", treatment = "P Practical", } @Article{Waldo:1996:PJ, author = "Jim Waldo", title = "Programming With {Java}", journal = j-UNIX-REVIEW, volume = "14", number = "5", pages = "31--32, 34, 36--37", day = "1", month = may, year = "1996", CODEN = "UNRED5", ISSN = "0742-3136", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "Java is more than just a language for Web programming. In fact, it provides reliability and security that can serve many programming needs.", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming); C5620W (Other computer networks); C6150N (Distributed systems software); C7250R (Information retrieval techniques)", fjournal = "UNIX review", keywords = "C language; C++; consumer electronics market; embedded systems; general purpose object oriented programming language; information retrieval; Internet; Java; languages; Modula-3; object-oriented; object-oriented programming; Objective C; real-time systems; Smalltalk; World Wide Web", treatment = "P Practical", } @Article{Waldo:1996:PJJ, author = "Jim Waldo", title = "Programming With {Java} --- {Java} is more than just a language for {Web} programming. In fact, it provides reliability and security that can serve many programming needs", journal = j-UNIX-REVIEW, volume = "14", number = "5", pages = "31--??", month = "????", year = "1996", CODEN = "UNRED5", ISSN = "0742-3136", bibdate = "Tue May 7 09:04:12 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "UNIX review", } @Article{Walker:1996:FFM, author = "D. W. Walker", title = "Focus: Free-market computing and the global economic infrastructure", journal = j-IEEE-PAR-DIST-TECH, volume = "4", number = "3", pages = "60--62", month = "Fall", year = "1996", CODEN = "IPDTEX", DOI = "http://dx.doi.org/10.1109/88.532140", ISSN = "1063-6552", ISSN-L = "1063-6552", bibdate = "Thu Apr 10 19:14:33 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses the role of Java as a standard for the Web, and how payment for computing resources might be triggered by author bank account information stored in Java applets.", acknowledgement = ack-nhfb, classification = "C0230 (Economic, social and political aspects of computing); C7100 (Business and administration); C7210 (Information services and centres)", corpsource = "Dept. of Comput. Sci., Univ. of Wales Coll. of Cardiff, UK", fjournal = "IEEE parallel and distributed technology: systems and applications", keywords = "commerce; economic aspects; education; entertainment; free-market computing; global economic infrastructure; interactive medium; Internet; science; socio-economic effects; Wide Web; World", treatment = "P Practical", } @Book{Wall:1996:IJP, author = "David A. Wall", title = "101 Freeze Dried {Java} Applets", publisher = pub-IDG, address = pub-IDG:adr, year = "1996", ISBN = "0-7645-4008-4", ISBN-13 = "978-0-7645-4008-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35", acknowledgement = ack-nhfb, xxnote = "Duplicate ISBN with \cite{Sydow:1996:IJP}.", } @Book{Walnum:1996:JE, author = "Clayton Walnum", title = "{Java} By Example", publisher = pub-QUE, address = pub-QUE:adr, pages = "xxv + 549", day = "1", month = jun, year = "1996", ISBN = "0-7897-0814-0", ISBN-13 = "978-0-7897-0814-4", LCCN = "QA76.73.J38W35 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/07897/bud/0789708140.html; http://www.amazon.com/exec/obidos/ISBN=0789708140/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$34.99", URL = "http://www.mcp.com/251356511370317/cgi-bin/bag?isbn=0-7897-0814-0&last=/bookstore; http://www.mcp.com/que", acknowledgement = ack-nhfb, dimensions = "9.06in x 7.37in x 1.40in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Book{Walnum:1996:UJW, author = "Clayton Walnum and Michael Desmond and others", title = "Using {Java} Workshop", publisher = pub-QUE, address = pub-QUE:adr, pages = "xx + 425", day = "16", month = aug, year = "1996", ISBN = "0-7897-0900-7", ISBN-13 = "978-0-7897-0900-4", LCCN = "QA76.73.J38W355 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.amazon.com/exec/obidos/ISBN=0789709007/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$34.99, CDN\$49.95, UK\pounds 32.49", URL = "http://www.mcp.com/cgi-bin/bag?isbn=0-7897-0900-7&last=/bookstore", acknowledgement = ack-nhfb, dimensions = "9.05in x 7.32in x 1.06in", xxtitle = "Special Edition Using {Java} Workshop", } @Article{Walsh:1996:CV, author = "Brian Walsh", title = "Corporate View", journal = j-NETWORK-COMPUTING, volume = "7", number = "13", pages = "39--??", day = "1", month = sep, year = "1996", CODEN = "NCOMEV", ISSN = "1046-4468", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "A Jolt of Java for the Database.", acknowledgement = ack-nhfb, fjournal = "Network Computing", } @Book{Walsh:1996:FJP, author = "Aaron E. Walsh", title = "Foundations of {Java} Programming for the {World Wide Web}", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xxviii + 906", year = "1996", ISBN = "1-56884-811-0", ISBN-13 = "978-1-56884-811-2", LCCN = "QA76.73.J38W357 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1568848110/wholesaleproductA/; http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$44.99", URL = "http://db.www.idgbooks.com/database/book/isbn/generic-book.tmpl?query=1-56884-811-0; http://www.idgbooks.com/database/book_result.msql?uid=uidg323&isbn=1-56884-811-0", acknowledgement = ack-nhfb, annote = "Disc in pocket contains Java Development Kit, release 1.0.1, and over 100 Java applets with source code.", dimensions = "9.24in x 7.38in x 1.80in", keywords = "Java (computer program language); Java (Computer program language); technology -- computers and computer technology; World wide Web (information retrieval system); World Wide Web (Information retrieval system)", paperback = "yes", } @Book{Walsh:1996:JDa, author = "Aaron Walsh", title = "{Java} for Dummies", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "????", month = may, year = "1996", ISBN = "0-614-14433-7", ISBN-13 = "978-0-614-14433-8", LCCN = "????", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$24.99", acknowledgement = ack-nhfb, } @Book{Walsh:1996:JDb, author = "Aaron E. Walsh", title = "{Java} for dummies", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, edition = "{Macintosh} and {Windows} 95", pages = "1 laser optical disc", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 22 09:10:57 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, annote = "System requirements for computer disc: Macintosh and Windows 95 compatible systems.", keywords = "Java (Computer program language)", } @Book{Walsh:1996:JDc, author = "Aaron E. Walsh", title = "{Java} for Dummies", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xviii + 365", month = aug, year = "1996", ISBN = "1-56884-641-X", ISBN-13 = "978-1-56884-641-5", LCCN = "QA76.73.J38 W36 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=156884641X/wholesaleproductA/; http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$19.99", URL = "http://db.www.idgbooks.com/database/book/isbn/generic-book.tmpl?query=1-56884-641-X; http://www.idgbooks.com/database/book_result.msql?uid=uidg323&isbn=1-56884-641-X", acknowledgement = ack-nhfb, annote = "Shows beginning to intermediate Windows 95 and Macintosh users how to obtain, install, test, and troubleshoot Java applets and JavaScript scripts.", dimensions = "9.22in x 7.36in x 0.97in", keywords = "Java (Computer program language); World Wide Web servers", paperback = "yes", } @Book{Walsh:1996:PJ, author = "Aaron E. Walsh", title = "Programacion en {Java}", publisher = pub-ANAYA-MULTIMEDIA, address = pub-ANAYA-MULTIMEDIA:adr, pages = "????", year = "1996", ISBN = "84-415-0132-7", ISBN-13 = "978-84-415-0132-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.anayamultimedia.es/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "5495 Ptas.", URL = "http://www.anaya.es/Catalogo/CGA?act=L&art=2318005&ed=2300", acknowledgement = ack-nhfb, language = "Spanish", url-publisher = "http://www.anayamultimedia.es/", } @Book{Walter:1996:BMJ, author = "Scott J. Walter and Aaron Weiss", title = "Beginnen met {JavaScript}", publisher = pub-ACADEMIC-SERVICE, address = pub-ACADEMIC-SERVICE:adr, pages = "304", year = "1996", ISBN = "90-395-0507-1", ISBN-13 = "978-90-395-0507-6", LCCN = "????", bibdate = "Mon Aug 18 07:31:30 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/dutch.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Dutch translation of \cite{Walter:1996:CIG}. Includes CD-ROM.", price = "fl. 49,00", URL = "http://www.acaserv.nl; http://www.acaserv.nl/5_0507.htm", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Walter:1996:CIG, author = "Scott J. Walter and Aaron Weiss", title = "The Complete Idiot's Guide to {JavaScript}", publisher = pub-QUE, address = pub-QUE:adr, pages = "xviii + 284", day = "1", month = mar, year = "1996", ISBN = "0-7897-0798-5", ISBN-13 = "978-0-7897-0798-7", LCCN = "QA76.73.J39W34 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0789707985/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$19.99", URL = "http://www.mcp.com/175067741767563/cgi-bin/bag?isbn=0-7897-0798-5&last=/bookstore", acknowledgement = ack-nhfb, dimensions = "9.11in x 7.36in x 0.85in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Article{Wayner:1996:BJP, author = "Peter Wayner", title = "Better {Java} Programming: Knowing how {Java}'s dynamic linking works can help you improve a program's performance", journal = j-BYTE, volume = "21", number = "9", pages = "63--64", month = sep, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "A look at how Java's dynamic linking mechanism operates, and how you can use it to write faster Java programs.", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming)", fjournal = "BYTE Magazine", keywords = "applet; dynamic linking; foo(); highly structured method; Internet; invocations; Java programming; object-; object-oriented languages; oriented procedure calls; run-time links", treatment = "P Practical", } @Article{Wayner:1996:IN, author = "P. Wayner", title = "Inside the {NC}", journal = j-BYTE, volume = "21", number = "11", pages = "105--106, 108, 110", month = nov, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210L (Computer communications); C5630 (Networking equipment); C5430 (Microcomputers); C5420 (Mainframes and minicomputers)", fjournal = "BYTE Magazine", keywords = "desktop system; dumb terminal; Gray; Internet standards; Java; LAN; Macintosh; mobile; network computer; network servers; notebook computer; open client model; standards; supercomputer; TV set-top box; Windows", treatment = "P Practical", } @Article{Wayner:1996:INN, author = "Peter Wayner", title = "Inside the {NC}: Are network computers just stripped-down terminals? {No} way. {The} official {NC} platform covers everything from a set-top box to a {Cray}", journal = j-BYTE, volume = "21", number = "11", pages = "105, 106, 108, 110", month = nov, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Thu Oct 24 06:23:10 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses the importance of {Java} in a Network Computer.", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Wayner:1996:NPM, author = "Peter Wayner", title = "Net programming for the masses", journal = j-BYTE, volume = "21", number = "2", pages = "101--102, 104", month = feb, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "For the past 10 years, the vision of the future of programming has been clear: fast, object-oriented compilers will turn C++ into lightning-quick native code. Now that compilers are becoming fast and adept at this task, a team of programmers at SunSoft is travelling back to the future by pushing an interpreted scripting language known as TCL (Tool Command Language). The goal is to produce a machine-independent, virus-free Visual Basic killer that will complement the Java language and allow software agents to roam from machine to machine throughout the Internet.", acknowledgement = ack-nhfb, affiliation = "BYTE, Baltimore, MA, USA", classcodes = "C6140D (High level languages); C6155 (Computer communications software); C6110 (Systems analysis and programming); C5620W (Other computer networks); C6150N (Distributed systems software)", classification = "722.3; 722.4; 723.1; 723.1.1; 723.5", corpsource = "BYTE, Baltimore, MA, USA", fjournal = "BYTE Magazine", journalabr = "Byte", keywords = "BASIC (programming language); Basic killer; built in memory handling ability; C (programming language); Codes (symbols); computer communications software; Computer networks; Computer software; Computer systems programming; Electronic mail; High level languages; high level languages; Internet; Internet programming; interpreted scripting language; Java language; machine independent virus free Visual; Net programming; Object oriented programming; Program compilers; Program interpreters; programming; Software agents; software agents; TCL; Tool command language; Tool Command Language; Visual basic; Visual Sasic", pagecount = "3", treatment = "P Practical", } @Article{Wayner:1996:SGJ, author = "Peter Wayner", title = "{Sun} Gambles on {Java} Chips: Are {Java} chips better than general purpose {CPU}s? Or will new compilers make them obsolete?", journal = j-BYTE, volume = "21", number = "11", pages = "79, 80, 82, 84, 86, 88", month = nov, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C5130 (Microprocessor chips); C6150C (Compilers, interpreters and other processors); C5220 (Computer architecture)", fjournal = "BYTE Magazine", keywords = "compilers; computer architecture; core specification; CPUs; general purpose; Java chips; microprocessor chips; picoJava; processor; program", treatment = "P Practical", } @Article{Wayner:1996:XBJ, author = "Peter Wayner", title = "{XTerminal} + Browser + {Java} = {Web PC} --- {HDS's (a) workStation} is a lowcost box for {Web} access, {Java} applets, and {Windows}", journal = j-BYTE, volume = "21", number = "10", pages = "50--??", month = oct, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Fri Oct 4 18:38:04 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Wayner:1996:XTB, author = "Peter Wayner", title = "{X} Terminal + Browser + {Java} = {Web PC}", journal = j-BYTE, volume = "21", number = "10", pages = "50--??", day = "1", month = oct, year = "1996", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "HDS's @ workStation is a low-cost box for Web access, Java applets, and Windows.", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Weber:1996:SEU, author = "Joseph Weber and David Baker and others", title = "Special Edition Using {Java}", publisher = pub-QUE, address = pub-QUE:adr, edition = "Second", pages = "xxx + 1134", year = "1996", ISBN = "0-7897-0936-8", ISBN-13 = "978-0-7897-0936-3", LCCN = "QA76.73.J38W4 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://w3.phdirect.com/que/et/se_java2e/; http://www.amazon.com/exec/obidos/ISBN=0789709368/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", URL = "http://www.mcp.com/cgi-bin/bag?isbn=0-7897-0936-8&last=/bookstore", acknowledgement = ack-nhfb, dimensions = "9.05in x 7.36in x 2.44in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", xxtitle = "Using {Java}", } @Article{Webster:1996:HSG, author = "John S. Webster", title = "{HDS}' Second-Generation Network Computer", journal = j-SUNEXPERT, volume = "7", number = "12", pages = "16, 18", month = dec, year = "1996", ISSN = "1053-9239", bibdate = "Tue Dec 17 07:01:41 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Notes that HDS' Network Computer contains a 66-MHz Intel i960 and supports up to $1600\times1200$ resolution. HDS NetOS includes its in-house Java Virtual Machine, with about twice the performance of a 133MHz Intel Pentium PC. It is the first Network Computer (formerly, X terminal) to support a Java-enabled browser in the machine itself.", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Book{Wehling:1996:LNA, author = "Jason Wehling and Vidya Bharat and others", title = "Late Night Advanced {Java}", publisher = pub-ZD, address = pub-ZD:adr, pages = "xxvii + 588", month = dec, year = "1996", ISBN = "1-56276-407-1", ISBN-13 = "978-1-56276-407-4", LCCN = "????", bibdate = "Mon Jun 22 08:08:55 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/zdpress/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15627/bud/1562764071.html", acknowledgement = ack-nhfb, xxnote = "Duplicate ISBN with \cite{Harold:1996:PMJ}.", xxtitle = "{PC Magazine Java} Programming", } @Book{Wehling:1996:PMA, author = "Jason Wehling", title = "{PC} Magazine Advanced {Java} Programming", publisher = pub-MACMILLAN-COMPUTER, address = pub-MACMILLAN-COMPUTER:adr, pages = "????", month = nov, year = "1996", ISBN = "0-614-20298-1", ISBN-13 = "978-0-614-20298-4", LCCN = "????", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$34.99", acknowledgement = ack-nhfb, keywords = "Java (computer program language)", } @InProceedings{Wharton:1996:EPS, author = "John Wharton and John Banning and Brian Case and David S. Hardin and Martin Hopkins and John Novitsky and Marc Tremblay", title = "Evening Panel Session, {Lagunita Court}: Software or Silicon: What's the Best Route to {Java}?", crossref = "IEEE:1996:HCV", pages = "145--146", year = "1996", bibdate = "Sat Jan 6 19:21:13 MST 2001", bibsource = "ftp://www.hotchips.org/pub/hotc7to11cd/hc96/hc8_pdf/Panel-Front.pdf; ftp://www.hotchips.org/pub/hotc7to11cd/hc96/hc8_pdf/Panel-Hardin.pdf; ftp://www.hotchips.org/pub/hotc7to11cd/hc96/hc8_pdf/Panel-Novitsky.pdf; ftp://www.hotchips.org/pub/hotc7to11cd/hc96/hc8_pdf/Panel-Wharton.pdf; http://www.math.utah.edu/pub/tex/bib/java.bib; OCLC Proceedings database", acknowledgement = ack-nhfb, } @InProceedings{White:1996:DDJ, author = "I. White", title = "Designing and developing {Java} applications", crossref = "Anonymous:1996:OEEb", pages = "347--348", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110F (Formal methods); C6110J (Object-oriented programming)C6140D (High level languages)", conflocation = "London, UK; 23--27 Sept. 1996", conftitle = "Proceedings of Object Expo Europe", countrypub = "UK", keywords = "analysis; design decisions; detailed domain model design; iterative development; Java applications development; object modeling; object-oriented analysis; object-oriented design; object-oriented languages; object-oriented methods; requirements definition; Unified Modeling Language; use-case", treatment = "P Practical", } @InProceedings{White:1996:DJC, author = "I. White", title = "Designing with the {Java} class libraries", crossref = "Anonymous:1996:OEEb", pages = "277--282", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110B (Software engineering techniques); C6110J (Object-oriented programming); C6120 (File organisation); C6110F (Formal methods); C6115 (Programming support); C6150E (General utility programs)", conflocation = "London, UK; 23--27 Sept. 1996", conftitle = "Proceedings of Object Expo Europe", countrypub = "UK", keywords = "abstract classes; abstract data types; application program interfaces; concrete classes; design; design pattern; interfaces; Java class libraries; libraries; object-; object-oriented programming; oriented methods; reusable object-oriented software; software; software reusability", treatment = "P Practical", } @Article{White:1996:JCA, author = "Greg White", title = "{Java} Command-Line Arguments", journal = j-DDJ, volume = "21", number = "2", pages = "58--??, 60, 62, 96, 98--99", month = feb, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.ddj.com/index/author/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Greg introduces a package of Java classes that parse the command-line parameters for HtmlXlate, an application that converts HTML to RTF. Because HtmlXlate doesn't require display graphics, Greg made it an ``application'' instead of an ``applet.''", abstract2 = "HtmlXlate is a Java application that converts an HTML file to a rich text format (RTF) file or text file. This article introduces and describes CmdLnArg, a package of Java classes which parses the command-line parameters for the application. This article and the accompanying code are based on the 1.0 beta of the Java development kit (JDK).", acknowledgement = ack-nhfb, classcodes = "C6130M (Multimedia); C6140D (High level languages); C6110J (Object-oriented programming); C6155 (Computer communications software); C7210 (Information services and centres)", classification = "722.2; 723.1; 723.1.1", fjournal = "Dr. Dobb's Journal of Software Tools", journalabr = "Dr Dobb's J Software Tools Prof Program", keywords = "C (programming language); Codes (symbols); Coding errors; command-line; complete computer programs; computer communications; Computer programming languages; display graphics; Error correction; Flag arguments; HTML; HtmlXlate; hypermedia; Internet; Java classes; Java command-line arguments; Object oriented programming; object-oriented languages; page description languages; parameters; program interpreters; Program processors; RTF; software; Software Package Java; User interfaces", treatment = "P Practical", } @Article{Whitehouse:1996:AWW, author = "K. Whitehouse", title = "Applications: Weather without the weatherman [on the {World Wide Web}]", journal = j-IEEE-CGA, volume = "16", number = "2", pages = "12--15", month = mar, year = "1996", CODEN = "ICGADZ", DOI = "http://dx.doi.org/10.1109/38.486675", ISSN = "0272-1716 (print), 1558-1756 (electronic)", ISSN-L = "0272-1716", bibdate = "Fri Mar 14 11:22:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses use of Java for browsing of weather data on the Web, with samples available at \path=http://cirrus.sprl.umich.edu/javaweather/=.", acknowledgement = ack-nhfb, fjournal = "IEEE Computer Graphics and Applications", } @Article{Whybrow:1996:EPJ, author = "M. Whybrow", title = "Epidemic proportions [{Java} programming language]", journal = j-BANKING-TECH, volume = "13", number = "2", pages = "20--??", month = mar, year = "1996", CODEN = "BATEEM", ISSN = "0266-0865", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D2050E (Banking); D5020 (Computer networks and intercomputer communications)", countrypub = "UK", fjournal = "Banking Technology", keywords = "applets; application creation; application generators; banking; dynamic browser; financial sector; high level languages; Internet; Java; Java programming language; networks; platform-independent; programming language", pubcountry = "UK", treatment = "P Practical", } @Book{Wiedling:1996:JG, author = "Hans-Peter Wiedling", title = "{Java ohne Geheimnis}", publisher = pub-HEINZ-HEISE, address = pub-HEINZ-HEISE:adr, pages = "163", year = "1996", ISBN = "3-88229-077-3", ISBN-13 = "978-3-88229-077-6", LCCN = "????", bibdate = "Mon Jun 22 16:23:52 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.heise.de/buch/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "39,80 DM", URL = "http://www.emedia.de/bin/bookshop?show=4862&id=; http://www.heise.de/buch/", acknowledgement = ack-nhfb, language = "German", } @Article{Wilde:1996:CCS, author = "Candee Wilde", title = "Computer Careers: Steaming brew: Demand for {Java} skills is hotter than ever. It's easy to learn, and it's heating up the competition", journal = j-COMPUTERWORLD, volume = "30", number = "24", pages = "87--87", day = "10", month = jun, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Aug 19 12:08:00 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Wilder:1996:JGC, author = "C. Wilder", title = "{Java} in gear [{CSX} freight transporter]", journal = j-INFORMATION-WEEK, volume = "????", number = "592", pages = "14--16", day = "12", month = "????", year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D2140 (Marketing, retailing and distribution); D2090 (Leisure industry, travel and transport)", fjournal = "Information Week", keywords = "applications; based applications; CSX customers; CSX transportation giant; freight transporter; goods distribution; independent programming language; Internet; IT managers; Java; Java-; marketing; mission-critical; object-oriented languages; object-oriented platform-; object-oriented programming; railroads; railways; shipment; shipment processing; Sun Microsystems; tracking; transportation; TWSNet; Web browser access; World Wide Web technology", treatment = "P Practical", } @Article{Wilder:1996:MNG, author = "C. Wilder and J. Swenson and R. Levin", title = "{Microsoft}'s {Net} gains [{Internet} strategy]", journal = j-INFORMATION-WEEK, volume = "????", number = "571", pages = "14--16", day = "18", month = mar, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D5000 (Office automation - computing); D2080 (Information services and database systems)", fjournal = "Information Week", issue = "no.571 p. 14--16", keywords = "ActiveX OLE controls; America Online; application; application program interfaces; applications; business; business transactions; business-to-; client-server business applications; corporate intranets; customer-to-business transactions; desktop computing; development tools; DP industry; graphical user interface; integrated development environment; Internet; Internet Explorer 3.0 Web browser; Internet Information Server; Jakarta; Java; Java Web development language; joint ventures; Microsoft; object; online service; R/3 manufacturing suite; software maker; standard applications programming interface; systems; technology; transactions; Visual Basic; Web; Windows operating", treatment = "P Practical", } @Article{Wilder:1996:PCI, author = "C. Wilder", title = "Pouring cash into the {Internet} [electronic commerce]", journal = j-INFORMATION-WEEK, volume = "????", number = "560", pages = "14--16", day = "1", month = jan, year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D5020 (Computer networks and intercomputer communications); D2140 (Marketing, retailing and distribution)", fjournal = "Information Week", issue = "no.560 p. 14--16", keywords = "business; commerce; companies; EFTS; electronic bill paying; electronic commerce; electronic data; financial transactions; interchange; Internet; Internet Shopping Network; investment; investments; Java; online; retailing; security standards; Sun Java scripting language; vendors; World Wide Web", treatment = "P Practical", } @Article{Wilder:1996:RW, author = "C. Wilder", title = "Reaching for the {Web}", journal = j-INFORMATION-WEEK, volume = "????", number = "594", pages = "47--48, 52, 58", day = "26", month = "????", year = "1996", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D2140 (Marketing, retailing and distribution); D2080 (Information services and database systems)", fjournal = "Information Week", keywords = "customers; Dun and Bradstreet; Internet; Internet application; Java applet; marketing; SAP; SmartStream; Web", treatment = "P Practical", } @Article{Williams:1996:JGW, author = "Tom Williams", title = "{Java} goes to work controlling networked embedded systems", journal = j-COMP-DESIGN, volume = "35", number = "9", pages = "36--??", day = "1", month = aug, year = "1996", CODEN = "CMPDAM", ISSN = "0010-4566", bibdate = "Thu Oct 3 05:52:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "The prospect of communicating with embedded systems from anywhere on the Internet---or even behind corporate firewalls---is pushing designers toward Java.", acknowledgement = ack-nhfb, fjournal = "Computer Design", } @Article{Williams:1996:JPD, author = "T. Williams", title = "{Java} perks developer interest from {IS} to embedded systems", journal = "Computer Design (International Edition)", volume = "35", number = "6", pages = "32--4, 37", month = may, year = "1996", CODEN = "CDESEL", ISSN = "0010-4566", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110V (Visual programming); C5620W (Other computer networks); C7210 (Information services and centres)", keywords = "analysis; Caf{\'e}; client-server systems; client/server IS environments; companies; connectivity; embedded systems; Espresso; interactive; Internet; Internet applications; Latt{\'e}; Mocha; portability; real-time systems; software; Sun Microsystems' Java language; systems; visual languages", treatment = "A Application; P Practical", } @Article{Wills:1996:J, author = "A. C. Wills", title = "{Java++}", journal = j-OBJECT-EXPERT, volume = "1", number = "4", pages = "48--50, 57", month = may # "-" # jun, year = "1996", CODEN = "OBEXFJ", ISSN = "1360-3426", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming); C6110B (Software engineering techniques)", countrypub = "UK", fjournal = "Object Expert", keywords = "distributed software; Internet; Java; Java++; object oriented; object-oriented; object-oriented languages; programming; programming language; secure software; software portability; software reliability; software reusability; software reuse; World Wide Web", pubcountry = "UK", treatment = "P Practical", } @Article{Willston:1996:LEJ, author = "John B. Willston", title = "Letter to the Editor: {Java} Dive", journal = j-DDJ, volume = "21", number = "12", pages = "8--8", month = dec, year = "1996", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Oct 30 05:46:04 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Winston:1996:J, author = "Patrick Henry Winston and Sundar Narasimhan", title = "On to {Java}", publisher = pub-AW, address = pub-AW:adr, pages = "xi + 329", day = "1", month = jul, year = "1996", ISBN = "0-201-49826-X", ISBN-13 = "978-0-201-49826-4", LCCN = "QA76.73.J38W56 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=020149826X/wholesaleproductA/; http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$17.95", series = "The Programming Languages Library", URL = "http://www.ascent.com/books; http://www.aw.com/", acknowledgement = ack-nhfb, dimensions = "9.26in x 7.44in x 0.56in", keywords = "Java (Computer program language)", lccnalt = "96-019447", } @Article{Winston:1996:JBH, author = "Peter Winston", title = "The {Java} bandwagon: How to time your jump", journal = j-COMPUTERWORLD, volume = "30", number = "11", pages = "48--48", day = "11", month = mar, year = "1996", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Apr 01 08:20:06 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.computerworld.com/", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Winters:1996:PVJ, author = "Patrick Winters and David Olhasso and Laura Lemay and Charles Perkins", title = "Programmare in {Visual J++}", publisher = pub-APOGEO, address = pub-APOGEO:adr, pages = "544", month = apr, year = "1996", ISBN = "88-7303-316-4", ISBN-13 = "978-88-7303-316-5", LCCN = "????", bibdate = "Thu Oct 31 19:29:46 2002", bibsource = "http://www.apogeonline.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Includes CD-ROM.", price = "58000 Lire", URL = "http://www.apogeonline.com/catalogo/316.html; http://www.urra.it/316.html", acknowledgement = ack-nhfb, language = "Italian", xxauthor = "Patrick Winters", } @Book{Winters:1996:TYV, author = "Patrick Winters and others", title = "Teach Yourself {Visual J++} in 21 Days", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xvii + 560", year = "1996", ISBN = "1-57521-158-0", ISBN-13 = "978-1-57521-158-9", LCCN = "QA76.73.J38 T43 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575211580.html; http://www.mcp.com/cgi-bin/bag?isbn=1-57521-158-0&last=/bookstore", acknowledgement = ack-nhfb, keywords = "Java (Computer program language); Microsoft Visual J++", } @InProceedings{Wipke:1996:RVT, author = "K. B. Wipke", title = "Reducing {VMTs} through transit-on-demand with {GPS} and satellite communications", crossref = "IEEE:1996:ITA", pages = "??--??", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B8520 (Transportation); B6250G (Satellite relay systems); B6330 (Radionavigation and direction finding)", conflocation = "Seattle, WA, USA; 4--6 Nov. 1996", conftitle = "IEEE Technical Applications Conference. Northcon/96. Conference Record", corpsource = "Nat. Renewable Energy Lab., Golden, CO, USA", keywords = "air pollution; communication; demand-responsive system; dispatching; fixed-; Global Positioning System; GPS; Java Internet programming language; road vehicles; routing software; satellite; satellite communications; schedule shuttle; transit-on-demand; transportation; transportation concept; travelled; two-; urban congestion; vehicle miles; VMTs; way communications; wide web site; world", treatment = "A Application; G General Review; P Practical", } @Book{Wodaski:1996:CCW, author = "Ron Wodaski", title = "Creating Cool {Web} Pages with {Netscape Gold} and {Javascript}", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xvi + 412", month = oct, year = "1996", ISBN = "0-7645-3021-6", ISBN-13 = "978-0-7645-3021-0", LCCN = "TK5105.883.N48W63 1996", bibdate = "Thu Mar 13 09:36:00 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.99", acknowledgement = ack-nhfb, keywords = "Java (computer program language); Netscape (computer; program); technology -- computers and computer technology; World Wide Web (information retrieval system)", } @InProceedings{Wollrath:1996:DOMa, author = "A. Wollrath and R. Riggs and J. Waldo", title = "A distributed object model for the {Java} System", crossref = "USENIX:1996:COO", pages = "261--??, 219--231", year = "1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "ftp://ftp.uu.net/library/bibliography; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6150N (Distributed systems software); C6140D (High level languages); C6120 (File organisation)", conflocation = "Toronto, Ont., Canada; 17--21 June 1996", conftitle = "Proceedings of 2nd Conference on Object-Oriented Technologies and Systems (COOTS)", keywords = "distributed; distributed object model; Internet; Java object model; Java System; lazy activation; Modula-3; Network Objects system; object oriented programming; object-oriented; object-oriented languages; programming; reference-counting garbage collection; remote method invocation; remote procedure calls; software maintenance; Spring's subcontract; storage management", treatment = "P Practical", } @Article{Wollrath:1996:DOMb, author = "Ann Wollrath and Roger Riggs and Jim Waldo", title = "A Distributed Object Model for the {Java} System", journal = j-COMP-SYS, volume = "9", number = "4", pages = "265--290", month = "Fall", year = "1996", CODEN = "CMSYE2", ISSN = "0895-6340", bibdate = "Tue Mar 18 07:03:16 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computing Systems", } @Article{Wollrath:COMPSYS-9-4-265, author = "Ann Wollrath and Roger Riggs and Jim Waldo", title = "A Distributed Object Model for the {Java} System", journal = j-COMP-SYS, volume = "9", number = "4", pages = "265--290", month = "Fall", year = "1996", CODEN = "CMSYE2", ISSN = "0895-6340", bibdate = "Tue Mar 18 07:03:16 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computing Systems", } @Book{Wood:1996:VJ, author = "Charles A. Wood", title = "{Visual J++}", publisher = pub-PRIMA, address = pub-PRIMA:adr, pages = "603", year = "1996", ISBN = "0-7615-0814-7", ISBN-13 = "978-0-7615-0814-4", LCCN = "QA76.73.J38W66 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.primapublishing.com/", price = "US\$35", URL = "http://www.primapublishing.com/cpd/76150814.html", acknowledgement = ack-nhfb, keywords = "Java (Computer program language); Microsoft Visual J++", } @Article{Wood:1996:WSC, author = "Frank Wood and Daniel Brown and Robert A. Amidon and Jonathan Alferness and Brian Joseph and Richard E. Gillilan and Carlos Faerman", title = "{WorkSpace} and the Study of {Chagas}' Disease", journal = j-IEEE-CGA, volume = "16", number = "4", pages = "72--78", month = jul, year = "1996", CODEN = "ICGADZ", DOI = "http://dx.doi.org/10.1109/38.511858", ISSN = "0272-1716 (print), 1558-1756 (electronic)", ISSN-L = "0272-1716", bibdate = "Fri Mar 14 11:28:55 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "WorkSpace is a 3-D extension of the 2-D graphics model provided by the Java Abstract Window Toolkit.", acknowledgement = ack-nhfb, affiliation = "Cornell Univ., Ithaca, NY, USA", classification = "461.6; 722.3; 722.4; 723.2; 723.4; 723.5", fjournal = "IEEE Computer Graphics and Applications", journalabr = "IEEE Comput Graphics Appl", keywords = "Abstract window toolkit; Chagas disease system; Computational geometry; Computer networks; Data structures; Diseases; Graphical user interfaces; Image communication systems; Interactive computer graphics; Multimedia; Network interface toolkit; Network protocols; Real time systems; Three dimensional computer graphics; Two dimensional; Virtual reality; Visualization; Voice/data communication systems; WorkSpace toolkit", } @Book{Wynkoop:1996:RPW, author = "Stephen Wynkoop and John Burke and others", title = "Running a Perfect {Web} Site: Learn how to implement the hottest technologies like {Java}, {JavaScript}, {VBScript} and {ActiveX} into your site", publisher = pub-QUE, address = pub-QUE:adr, edition = "Second", pages = "xxviii + 711", year = "1996", ISBN = "0-7897-0944-9 (softcover)", ISBN-13 = "978-0-7897-0944-8 (softcover)", LCCN = "TK5105.888.W96 1996", bibdate = "Sat Sep 13 14:36:20 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$44.99", } @Article{XinLi:1996:WWW, author = "Xin Li and D. J. Valentino and G. J. So and R. Lufkin and R. K. Taira", title = "A {World Wide Web} telemedicine system", journal = j-PROC-SPIE, volume = "2711", pages = "427--439", month = "????", year = "1996", CODEN = "PSISDG", ISSN = "0277-786X (print), 1996-756X (electronic)", ISSN-L = "0277-786X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210R (Multimedia communications); B6210L (Computer communications); C7140 (Medical administration); C6130M (Multimedia); C6130S (Data security); C7330 (Biology and medical computing); C6160S (Spatial and pictorial databases); C6155 (Computer communications software)", conflocation = "Newport Beach, CA, USA; 13--15 Feb. 1996", conftitle = "Medical Imaging 1996. PACS Design and Evaluation: Engineering and Clinical Issues", corpsource = "Dept. of Radiol. Sci., California Univ., Los Angeles, CA, USA", fjournal = "Proceedings of the SPIE --- The International Society for Optical Engineering", keywords = "CGI; communication; consultants; data privacy; health care; hypermedia; hypermedia medical record; information systems; interactive communications; interactive hypermedia medical record; Internet; Java; management; medical; multimedia communication; PACS; physician; privacy issues; radiology; remote access; security; security of data; telemedicine architecture; teleradiology; World Wide Web telemedicine system; World-Wide Web", sponsororg = "SPIE", treatment = "P Practical", } @MastersThesis{Yang:1996:IJT, author = "Jin Yang", title = "Integrating {Java} technology with an {Oracle} relational database", type = "Thesis (M.S.)", school = "Marquette University", address = "Milwaukee, WI, USA", pages = "iv + 59", year = "1996", bibdate = "Sat Aug 17 16:45:43 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "Java (Computer program language); Object-oriented programming (Computer science); Oracle (Computer file); Relational databases", } @Article{Yasumura:1996:WIT, author = "Y. Yasumura", title = "{WWW-OODB} integration technology", journal = j-NEC-TECH-J, volume = "49", number = "7", pages = "51--56", month = jul, year = "1996", CODEN = "NECGEZ", ISSN = "0285-4139", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6160J (Object-oriented databases); C7210 (Information services and centres); C7100 (Business and administration); C6150J (Operating systems)", countrypub = "Japan", fjournal = "NEC Technical Journal = NEC giho", keywords = "access control; class information manager; concurrency; concurrency control; configuration information; control; database gateway; integration technology; Internet; Java applets; management information; object-oriented databases; server communication controller; systems; WWW", language = "Japanese", treatment = "P Practical", } @Article{Yourdon:1996:DAI, author = "E. Yourdon", title = "Developing applications for the {Internet}: advice for the {Java} generation", journal = j-AM-PROG, volume = "9", number = "12", pages = "36--41", month = dec, year = "1996", CODEN = "AMPRFD", ISSN = "1048-5600", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6150N (Distributed systems software); C6110B (Software engineering techniques); C0310F (Software development management)", fjournal = "American Programmer", keywords = "development; Internet; Internet technology choice; intranet systems; life cycle; software engineering; system development methods", treatment = "P Practical", } @Article{Yourdon:1996:JWS, author = "Edward Yourdon", title = "{Java}, the {Web}, and Software Development", journal = j-COMPUTER, volume = "29", number = "8", pages = "25--30", month = aug, year = "1996", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; UnCover library database", abstract = "What's the big deal about Java and the Web? The fact that they mark the death of fatware and the birth of dynamic computing built on rented components", acknowledgement = ack-nhfb, classcodes = "C7210 (Information services and centres); C6110B (Software engineering techniques); C6110J (Object-oriented programming)C6140D (High level languages)", classification = "722.2; 722.3; 723.1; 723.1.1; 723.2; 723.5", fjournal = "Computer", keywords = "application development environment; application generators; Client server technology; Computational linguistics; computer aided software engineering; Computer architecture; Computer networks; Computer operating systems; Computer programming languages; Computer software; configuration management; Cryptography; dynamic computing; Dynamic computing; dynamic computing; Dynamic computing, Computer aided software engineering; e-mail; electronic mail; evaluation; fatware; FTP; HTML; HTML pages; Hypertext Markup Language; Hypertext Markup Language, Software engineering; Internet; Java; Java programming language; Network protocols; object-oriented languages; packages; Performance; Program processors; security; Security of data; Security protocols; software; software development management; software performance; software purchase; software rental; software reusability; user interface; User interfaces; version control; visual tools; Web pages; Wide area networks; World Wide Web; World wide web; World Wide Web", treatment = "P Practical", } @Article{Zannoli:1996:OMJ, author = "S. Zannoli", title = "An optimised microprocessor for {Java}", journal = j-ELETTRONICA-OGGI, volume = "????", number = "226", pages = "91--92, 94", day = "15", month = "????", year = "1996", CODEN = "ELOGDA", ISSN = "0391-6391", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B1265F (Microprocessors and microcomputers); C5130 (Microprocessor chips)", countrypub = "Italy", fjournal = "Elettronica Oggi", keywords = "dedicated; Java application; microprocessor; microprocessor chips; optimised microprocessor", language = "Italian", treatment = "A Application; P Practical", } @Book{Ziff-Davis:1996:HPJ, author = "{Ziff-Davis Press Staff}", title = "How to Program {Java}", publisher = pub-ZD, address = pub-ZD:adr, pages = "376", year = "1996", ISBN = "1-56276-478-0", ISBN-13 = "978-1-56276-478-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/zdpress/; http://www.amazon.com/exec/obidos/ISBN=1562764780/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99", URL = "http://www.mcp.com/cgi-bin/bag?isbn=1-56276-478-0&last=/bookstore", acknowledgement = ack-nhfb, dimensions = "9.95in x 8.51in x 1.02in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", xxauthor = "Peter Coffee", } @Article{Zoltan:1996:SGI, author = "E. Zoltan", title = "``Slap a {GUI} on it''. Your {M} future will be easier if it's object oriented", journal = j-M-COMPUTING, volume = "4", number = "5", pages = "16--18", month = dec, year = "1996", CODEN = "MCPUEF", ISSN = "1060-7684", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C7330 (Biology and medical computing); C6110J (Object-oriented programming); C6130B (Graphics techniques); C6180G (Graphical user interfaces)", fjournal = "M Computing", keywords = "computer industry; environment; graphical user interface; graphical user interfaces; GUI; high productivity; interactive systems; M developers; M future; Model/View/Controller; modern M systems; MUMPS; object oriented environments; object-oriented languages; object-oriented programming; OO model; paradigm; single operating; system; user demands; Windows", treatment = "P Practical", } @InProceedings{Zuckerman:1996:JLP, author = "A. E. Zuckerman and L. B. Jacques", title = "A {Java} Language Program for Writing Clinical Cases Using Custom Extensions to {HTML}", crossref = "Cimino:1996:BSE", pages = "906--??", year = "1996", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Book{Ablan:1997:TYM, author = "Jerry Ablan and Michael Morrison", title = "Teach Yourself More {Java} 1.1 in 21 Days", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxii + 479", month = nov, year = "1997", ISBN = "1-57521-347-8", ISBN-13 = "978-1-57521-347-7", LCCN = "QA76.73.J38M6744 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575213478.html", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/", xxnote = "Library of Congress has authors: Laura Lemay and Michael Morrison, and later, Michael Morrison and Jerry Ablan.", } @Article{Adapalli:1997:WWW, author = "Sridhar Adapalli and Krishna Addepalli", title = "{World Wide Web} integration of manufacturing process simulations", journal = j-CPE, volume = "9", number = "11", pages = "1341--1350", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13844; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13844&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Afergan:1997:DB, author = "Michael Afergan", title = "Discover {Bongo}", publisher = pub-IDG, address = pub-IDG:adr, pages = "????", year = "1997", ISBN = "0-7645-3119-0", ISBN-13 = "978-0-7645-3119-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$25", acknowledgement = ack-nhfb, url-author = "http://www.ai.mit.edu/people/mikea/resume.html", url-publisher = "http://www.idgbooks.com/", } @Article{Agesen:1997:ATP, author = "Ole Agesen and Stephen N. Freund and John C. Mitchell", title = "Adding type parameterization to the {Java} language", journal = j-SIGPLAN, volume = "32", number = "10", pages = "49--65", month = oct, year = "1997", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:39 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Agha:1997:ECC, author = "Gul Agha", title = "From the {Editor-in-Chief}: Concurrent {Java}", journal = j-IEEE-CONCURR, volume = "5", number = "4", pages = "2--3", month = oct # "\slash " # dec, year = "1997", CODEN = "IECMFX", ISSN = "1092-3063 (print), 1558-0849 (electronic)", ISSN-L = "1092-3063", bibdate = "Mon Jun 7 07:52:29 MDT 1999", bibsource = "http://www.computer.org/concurrency/pd1997/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/pd/books/pd1997/pdf/p4002.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Concurrency", } @Article{Agnvall:1997:WGH, author = "E. Agnvall", title = "{Web} glitz: how much is enough?", journal = j-BUSINESS-MARKETING, volume = "82", number = "1", pages = "M3--??, M21", month = jan # "-" # feb, year = "1997", CODEN = "BUMAED", ISSN = "0745-5933", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D2140 (Marketing, retailing and distribution); D2080 (Information services and database systems); D2010 (Business and professional)", fjournal = "Business Marketing", keywords = "ActiveX; audio; business graphics; business sites; business-to-business marketers; commerce; Internet; Java; marketing; marketing goals; multimedia; Shockwave; systems; video; virtual reality; Web sites; World Wide Web", treatment = "P Practical", } @Book{Aitken:1997:GJV, author = "Peter G. Aitken", title = "Guide de {JavaScript} et {VBScript}", publisher = pub-ITP-FRANCE, address = pub-ITP-FRANCE:adr, pages = "xvii + 391", year = "1997", ISBN = "2-84180-145-4", ISBN-13 = "978-2-84180-145-9", LCCN = "????", bibdate = "Thu Aug 14 18:51:01 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "French translation of \cite{Aitken:1996:WDG}. Includes CD-ROM.", price = "298 FF", URL = "http://www.thomson.com/intluk.html", acknowledgement = ack-nhfb, language = "French", } @Book{Aitken:1997:JPV, author = "Peter Aitken and David H. {Friedell, Jr.} and Anthony Potts and Gerhard Wilhelms", title = "{Java Programmierung mit Visual J++}", publisher = pub-ITCP, address = pub-ITCP:adr, pages = "????", year = "1997", ISBN = "3-8266-0318-4", ISBN-13 = "978-3-8266-0318-1", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "69 DM", URL = "http://www.itp.de/", acknowledgement = ack-nhfb, language = "German", } @Book{Aitken:1997:JV, author = "Peter Aitken", title = "{JavaScript und VBScript}", publisher = pub-ITCP, address = pub-ITCP:adr, pages = "328", year = "1997", ISBN = "3-8266-0321-4 (??invalid ISBN??)", ISBN-13 = "978-3-8266-0321-1 (??invalid ISBN??)", LCCN = "????", bibdate = "Thu Aug 14 17:40:22 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "50 DM", URL = "http://www.itp.de/; http://www.thomson.com/intluk.html", acknowledgement = ack-nhfb, language = "German", } @Article{Al-VandeerVeer:1997:CJ, author = "E. A. {Al-Vandeer Veer}", title = "Client-side {JavaScript}", journal = j-WEB-TECHNIQUES, volume = "2", number = "2", pages = "48--52", month = feb, year = "1997", CODEN = "WETEFA", ISSN = "1086-556X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6150N (Distributed systems software); C6140D (High level languages); C6180 (User interfaces)", fjournal = "Web Techniques", keywords = "C; C language; client-server systems; Client-side JavaScript; custom; data validation; interface display; interfaces; Internet; user feedback; user interfaces; Web; WWW", treatment = "T Theoretical or Mathematical", } @Article{Alexandrov:1997:SRI, author = "Albert D. Alexandrov and Maximilian Ibel and Klaus E. Schauser and Chris J. Scheiman", title = "{SuperWeb}: research issues in {Java}-based global computing", journal = j-CPE, volume = "9", number = "6", pages = "535--553", month = jun, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:32 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13876; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13876&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Allen:1997:HJ, author = "Mitch Allen and John B. Harvie", title = "Hands On {JavaBeans}", publisher = pub-PRIMA, address = pub-PRIMA:adr, pages = "xxiv + 447", year = "1997", ISBN = "0-7615-1047-8", ISBN-13 = "978-0-7615-1047-5", LCCN = "QA76.73.J38A45 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.primapublishing.com/", price = "US\$40", URL = "http://www.primapublishing.com/cpd/76151047.html", acknowledgement = ack-nhfb, xxnote = "Duplicate ISBN with \cite{Cox:1997:JPL}.", } @Article{Alpert:1997:UPC, author = "Sherman R. Alpert and Richard B. Lam", title = "The Ultimately Publishable Computer Science Paper for the Latter '90s: {A} Tip for Authors", journal = j-CACM, volume = "40", number = "1", pages = "94--94", month = jan, year = "1997", CODEN = "CACMA2", ISSN = "0001-0782 (print), 1557-7317 (electronic)", ISSN-L = "0001-0782", bibdate = "Thu Jan 09 14:42:39 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "This parody paper manages to use Java and JavaScript more than a dozen times.", acknowledgement = ack-nhfb, fjournal = "Communications of the ACM", } @Book{Ambler:1997:BOA, author = "Scott W. Ambler", title = "Building object applications that work: your step-by-step handbook for developing robust systems with object technology", publisher = pub-SIGS, address = pub-SIGS:adr, pages = "????", year = "1997", ISBN = "0-13-789215-2, 0-521-64826-2", ISBN-13 = "978-0-13-789215-0, 978-0-521-64826-4", LCCN = "QA76.9.O35A45 1997", bibdate = "Mon Jun 22 16:28:34 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ambysoft.com/; http://www.cup.org/sgs/0137892152.html", acknowledgement = ack-nhfb, } @Article{Amini:1997:WHA, author = "Lisa Amini", title = "What's So Hot About {Java}? --- Part 3", journal = j-AIXTRA, volume = "7", number = "1", pages = "45--47, 49--57, 59--60", month = jan # "\slash " # feb, year = "1997", bibdate = "Sat Jun 28 10:32:51 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "/{AIXtra}: {IBM}'s Magazine for {AIX} Professionals", } @Book{Ammann:1997:PAW, author = "Eckhard Ammann", title = "{Programmierung animierter Welten}", publisher = pub-ITCP, address = pub-ITCP:adr, pages = "310", year = "1997", ISBN = "3-8266-0329-X (??invalid ISBN??)", ISBN-13 = "978-3-8266-0329-7 (??invalid ISBN??)", LCCN = "????", bibdate = "Thu Aug 14 17:40:22 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "79 DM", URL = "http://www.itp.de/", acknowledgement = ack-nhfb, language = "German", xxtitle = "{Programmiertechniken f{\"u}r komplexe Webprojekte (VRML\slash Java)}", } @Book{Ammeraal:1997:BJ, author = "Leen Ammeraal", title = "Basiscursus {Java}", publisher = pub-ACADEMIC-SERVICE, address = pub-ACADEMIC-SERVICE:adr, pages = "250", year = "1997", ISBN = "90-395-0718-X", ISBN-13 = "978-90-395-0718-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/dutch.html; http://www.acaserv.nl; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "fl. 29,50", URL = "http://acaserv.nl/bestel/5_0718.htm; http://www.acaserv.nl; http://www.acaserv.nl/5_0718.htm", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Anderson:1997:JBH, author = "Thomas Anderson", title = "{Java} For Business: How Companies Are Using {Java} to Win Customers and Make Money Now", publisher = pub-VNR, address = pub-VNR:adr, pages = "xiv + 354", year = "1997", ISBN = "0-442-02517-3", ISBN-13 = "978-0-442-02517-5", LCCN = "HF5548.5.J38J38 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.thomson.com/vnr/default.html", price = "US\$24.95", series = "Business Technology Ser", acknowledgement = ack-nhfb, xxtitle = "{Java} for Business: using {Java} to win customers, cut costs, and drive growth", } @Article{Andrews:1997:WNJ, author = "David L. Andrews", title = "What's Next for {Java} Office Apps", journal = j-BYTE, volume = "22", number = "11", pages = "24--??", month = nov, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon Nov 24 17:12:05 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Ang:1997:AJM, author = "J.-P. Ang and Y.-T Tan", title = "An Architecture in {Java} for Mobile Computation", journal = j-LECT-NOTES-COMP-SCI, volume = "1343", pages = "145--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Anonymous:1997:AAJ, author = "Anonymous", title = "{Adra} announces {Java}-based {PDM Web} client", journal = j-SILICON-GRAPHICS-WORLD, volume = "7", number = "5", pages = "24--24", month = may, year = "1997", ISSN = "1057-7041", bibdate = "Thu May 15 11:18:12 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.adra.com/", acknowledgement = ack-nhfb, fjournal = "Silicon Graphics World", } @Article{Anonymous:1997:AIX, author = "Anonymous", title = "{ArborText} includes {XML}, {Java} support in {Adept Version 7}", journal = j-SUNSERVER, volume = "11", number = "12", pages = "21--21", month = dec, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 07:35:55 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.pcinews.com/pci/sun", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:ARB, author = "Anonymous", title = "{Aonix} releases binding covers for {Sun}'s {JDK}", journal = j-SUNSERVER, volume = "11", number = "10", pages = "23--23", month = oct, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:ARJ, author = "Anonymous", title = "{Algor Roadmaps} has {Java}-based human interface", journal = j-SILICON-GRAPHICS-WORLD, volume = "7", number = "4", pages = "21--21", month = apr, year = "1997", ISSN = "1057-7041", bibdate = "Fri Apr 18 07:30:52 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Silicon Graphics World", } @Article{Anonymous:1997:ASJ, author = "Anonymous", title = "{A\&D} Solution for {JavaStation}", journal = j-OBJECT-MAG, volume = "6", number = "11", pages = "77--77", month = jan, year = "1997", CODEN = "OBMAFO", ISSN = "1055-3614", bibdate = "Tue Mar 04 18:01:43 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Object Magazine", } @Article{Anonymous:1997:BGJ, author = "Anonymous", title = "Bookish on Graphical {Java}", journal = j-OBJECT-MAG, volume = "6", number = "11", pages = "77--77", month = jan, year = "1997", CODEN = "OBMAFO", ISSN = "1055-3614", bibdate = "Tue Mar 04 18:01:43 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Object Magazine", } @Article{Anonymous:1997:BJH, author = "Anonymous", title = "Briefs: {Java} for {HP Unix}", journal = j-COMPUTERWORLD, volume = "31", number = "11", pages = "51--51", day = "17", month = mar, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Mar 24 21:07:14 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Anonymous:1997:BPC, author = "Gregory V. Wilson", title = "Bookshelf: First-Year {C++} Text Outdated by {Java}: {{\em Programming with Class: A C++ Introduction}}. The Craft of Software Testing. Operating Systems. Executive Guide to Preventing {IT} Disasters. Managing a Programming Project-Processes and People", journal = j-IEEE-SOFTWARE, volume = "14", number = "3", pages = "122--124", month = may # "\slash " # jun, year = "1997", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/MS.1997.589251", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "IEEE Software", } @Article{Anonymous:1997:BRJa, author = "Anonymous", title = "Book Reviews: {Java Books}", journal = j-LINUX-J, volume = "36", pages = "??--??", month = apr, year = "1997", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Fri Oct 9 08:35:26 MDT 1998", bibsource = "http://www.linuxjournal.com/issue36/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.linuxjournal.com/2038.html", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Article{Anonymous:1997:BRJb, author = "Anonymous", title = "Book Review: {The Java Series}", journal = j-LINUX-J, volume = "40", pages = "??--??", month = aug, year = "1997", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Fri Oct 9 08:35:26 MDT 1998", bibsource = "http://www.linuxjournal.com/issue40/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.linuxjournal.com/2061.html", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Article{Anonymous:1997:CAC, author = "Anonymous", title = "Converting {Ada 95} Code to {Java}", journal = j-OBJECT-MAG, volume = "7", number = "1", pages = "68--68", month = mar, year = "1997", CODEN = "OBMAFO", ISSN = "1055-3614", bibdate = "Mon Mar 03 11:23:57 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.intermetrics.com/", acknowledgement = ack-nhfb, fjournal = "Object Magazine", } @Article{Anonymous:1997:CAJ, author = "Anonymous", title = "{CORBA} Adds {Java} Capabilities", journal = j-AIXTRA, volume = "7", number = "2", pages = "22--22", month = mar # "\slash " # apr, year = "1997", bibdate = "Mon Mar 10 21:52:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "/{AIXtra}: {IBM}'s Magazine for {AIX} Professionals", } @Article{Anonymous:1997:CBC, author = "Anonymous", title = "{C++ Builder} comes out of the closet, {IBM} does everything {Java}, a new Vision for client\slash server development, {Novell}'s {Developer Net 2000}, plus {Matlab 5.0}: serious fun with graphs", journal = j-EXE, volume = "11", number = "8", pages = "7--??", month = "????", year = "1997", CODEN = "EXEEE5", ISSN = "0268-6872", bibdate = "Sat Mar 21 10:08:00 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = ".EXE: the software developers' magazine", } @Article{Anonymous:1997:CDO, author = "Anonymous", title = "{Central Data} offers serial\slash parallel port {API}, driver for {Java}", journal = j-SILICON-GRAPHICS-WORLD, volume = "7", number = "6", pages = "21--21", month = jun, year = "1997", ISSN = "1057-7041", bibdate = "Fri Jun 27 08:10:40 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Silicon Graphics World", } @Article{Anonymous:1997:CENa, author = "Anonymous", title = "Cutting Edge: News Analysis --- {JavaMan}. {ActiveXecutables}. {Are} they friend or foe? {AS\slash 400} shops tackle {Year 2000} problem", journal = j-DATAMATION, volume = "43", number = "1", pages = "12--??", month = "????", year = "1997", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Tue Jan 26 09:28:04 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Datamation", } @Article{Anonymous:1997:CJD, author = "Anonymous", title = "Create {Java} Database Apps with {JetAssist}", journal = j-WEBSERVER, volume = "2", number = "2", pages = "49--49", month = mar, year = "1997", ISSN = "1087-4232", bibdate = "Mon Mar 10 22:07:26 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Anonymous:1997:CJT, author = "Anonymous", title = "{Chicago}'s {Java} Trade Winds", journal = j-OBJECT-MAG, volume = "7", number = "1", pages = "68--68", month = mar, year = "1997", CODEN = "OBMAFO", ISSN = "1055-3614", bibdate = "Mon Mar 03 11:23:57 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Object Magazine", } @Article{Anonymous:1997:CSB, author = "Anonymous", title = "{Charles Schwab} builds interactive, {Web}-based trading applications using {ActiveX}", journal = j-I-S-ANALYZER, volume = "36", number = "1", pages = "2--6", month = jan, year = "1997", CODEN = "ISANEL", ISSN = "0896-3231", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7120 (Financial computing); C6150N (Distributed systems software); C6115 (Programming support)", fjournal = "I/S Analyzer", keywords = "ActiveX; advanced trading analysis applications; applications distribution; authoring systems; case study; Charles Schwab; corporate firewalls; discount brokerage; electronic trading; hardware; interactive systems; interactive Web-based; Internet; Java; platforms; public; software platforms; trading applications; Web site; World Wide Web", treatment = "A Application", } @Article{Anonymous:1997:CSJ, author = "Anonymous", title = "{CORBAplus} Supports {Java ORB}", journal = j-SUNEXPERT, volume = "8", number = "4", pages = "104--104", month = apr, year = "1997", ISSN = "1053-9239", bibdate = "Fri Apr 18 08:00:08 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Anonymous:1997:DJO, author = "Anonymous", title = "Distribute {Java} Ojbects Across the Net", journal = j-SUNEXPERT, volume = "8", number = "4", pages = "108--108", month = apr, year = "1997", ISSN = "1053-9239", bibdate = "Fri Apr 18 08:00:52 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Describes the Black \& White Software Web\slash Enable product, which uses Java and the CORBA Internet Inter-ORB Protocol (IIOP).", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @InProceedings{Anonymous:1997:DRD, author = "Anonymous", title = "Defining Reusable, Distributable Information Objects Using or, How {SGML} can do for Databases what {JAVA} has done for User Interfaces", crossref = "Anonymous:1997:SEP", pages = "307--310", year = "1997", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Anonymous:1997:DSC, author = "Anonymous", title = "{DataBeam} Ships Conference Server with {Java}", journal = j-CISCO-WORLD, volume = "3", number = "8", pages = "27--27", month = aug, year = "1997", ISSN = "1081-3187", bibdate = "Mon Jan 12 19:35:06 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Cisco World: The Independent Journal for Internetworking Professionals", } @Article{Anonymous:1997:DWD, author = "Anonymous", title = "Display {Windows} Docs as {Java} Objects", journal = j-WEBSERVER, volume = "2", number = "1", pages = "53--53", month = feb, year = "1997", ISSN = "1087-4232", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Anonymous:1997:EEE, author = "Anonymous", title = "{Empress} Enhances Embedded {RDBMS} with {Web}, {Java}", journal = j-AIXTRA, volume = "7", number = "4", pages = "13--13", month = jul # "\slash " # aug, year = "1997", bibdate = "Mon Jul 21 10:08:42 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "/{AIXtra}: {IBM}'s Magazine for {AIX} Professionals", } @Article{Anonymous:1997:ELM, author = "Anonymous", title = "Editing Large Multi {Java} Apps", journal = j-OBJECT-MAG, volume = "6", number = "12", pages = "83--83", month = feb, year = "1997", CODEN = "OBMAFO", ISSN = "1055-3614", bibdate = "Mon Mar 03 11:31:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Object Magazine", } @Article{Anonymous:1997:ETJ, author = "Anonymous", title = "Emulation Through {Java} Applets", journal = j-AIXTRA, volume = "7", number = "3", pages = "20--21", month = may # "\slash " # jun, year = "1997", bibdate = "Mon May 05 21:09:09 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "/{AIXtra}: {IBM}'s Magazine for {AIX} Professionals", } @Article{Anonymous:1997:FJP, author = "Anonymous", title = "A Free {Java} Platform", journal = j-BYTE, volume = "22", number = "7", pages = "158--158", month = jul, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Fri Jun 27 08:37:54 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Anonymous:1997:GJBa, author = "Anonymous", title = "{Die gro{\ss}e {Java} Bibliothek}", publisher = pub-CARL-HANSER, address = pub-CARL-HANSER:adr, edition = "Second", pages = "????", year = "1997", ISBN = "3-446-18910-6", ISBN-13 = "978-3-446-18910-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.hanser.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "69 DM", URL = "http://www.hanser.de/computer/buecher/bi19019.htm", acknowledgement = ack-nhfb, language = "German", } @Book{Anonymous:1997:GJBb, author = "Anonymous", title = "{Die gro{\ss}e {Java} Bibliothek}", publisher = pub-CARL-HANSER, address = pub-CARL-HANSER:adr, edition = "Second", pages = "????", year = "1997", ISBN = "3-446-19019-8", ISBN-13 = "978-3-446-19019-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.hanser.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "50 DM", URL = "http://www.hanser.de/computer/buecher/bi19019.htm", acknowledgement = ack-nhfb, language = "German", } @Book{Anonymous:1997:HJT, author = "Anonymous", title = "Hands On {Java} Training", publisher = pub-MICROSOFT, address = pub-MICROSOFT:adr, pages = "????", month = nov, year = "1997", ISBN = "1-57231-707-8", ISBN-13 = "978-1-57231-707-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://mspress.microsoft.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", acknowledgement = ack-nhfb, url-publisher = "http://mspress.microsoft.com/", } @Article{Anonymous:1997:IAJ, author = "Anonymous", title = "{ICS} Adds {Java} Support", journal = j-UNIX-DEVELOPER, volume = "1", number = "1", pages = "93--93", month = jan # "\slash " # feb, year = "1997", ISSN = "1090-2279", bibdate = "Thu Jan 16 17:23:49 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "UNIX Developer", } @Article{Anonymous:1997:IAX, author = "Anonymous", title = "{Imperial} Announces {X-Designer: Java Edition}", journal = j-CCCUJ, volume = "15", number = "2", pages = "88--88", month = feb, year = "1997", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Wed Jan 15 18:32:28 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "X-Designer is a GUI builder for Motif with Java, X/Motif, and Windows code generators.", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Book{Anonymous:1997:IJJ, author = "Anonymous", title = "Instant {Java}: Jewel Case {C/Dos/Ww}", publisher = pub-QUE, address = pub-QUE:adr, pages = "????", month = mar, year = "1997", ISBN = "0-7897-1008-0", ISBN-13 = "978-0-7897-1008-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.amazon.com/exec/obidos/ISBN=0789710080/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$12.99", acknowledgement = ack-nhfb, dimensions = "4.92in x 5.61in x 0.41in", xxauthor = "{Que Corporation}", xxtitle = "Instant {Java CDPCW}", } @Article{Anonymous:1997:IJV, author = "Anonymous", title = "Inside the {Java Virtual Machine}", journal = j-UNIX-REVIEW, volume = "15", number = "1", pages = "31, 32, 34--36, 38--39", month = jan, year = "1997", CODEN = "UNRED5", ISSN = "0742-3136", bibdate = "Tue Dec 03 11:25:02 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Adapted, with permission, from \cite{Lindholm:1997:JVM}.", acknowledgement = ack-nhfb, fjournal = "UNIX review", } @Article{Anonymous:1997:IMM, author = "Anonymous", title = "{IT} Managers May Resist {Java}", journal = j-UNIX-DEVELOPER, volume = "1", number = "1", pages = "13--13", month = jan # "\slash " # feb, year = "1997", ISSN = "1090-2279", bibdate = "Thu Jan 16 17:23:49 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "UNIX Developer", } @Article{Anonymous:1997:IOF, author = "Anonymous", title = "{IBM} Offers Free Management Software", journal = j-SUNEXPERT, volume = "8", number = "4", pages = "10--10", month = apr, year = "1997", ISSN = "1053-9239", bibdate = "Fri Apr 18 07:54:47 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Describes Java-based Network Printer Manager (NPM).", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Anonymous:1997:IOI, author = "Anonymous", title = "{IST} Offers Integrated {X}, {Java}, and {Windows} Toolset", journal = j-UNIX-DEVELOPER, volume = "1", number = "1", pages = "94--94", month = jan # "\slash " # feb, year = "1997", ISSN = "1090-2279", bibdate = "Thu Jan 16 17:23:49 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "UNIX Developer", } @Article{Anonymous:1997:IPJ, author = "Anonymous", title = "{IntRprise} provides {Java}\slash {Internet} solutions", journal = j-SUNSERVER, volume = "11", number = "10", pages = "23--23", month = oct, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:ISB, author = "Anonymous", title = "{ILOG} shipping business rules engine for {Java}", journal = j-HP-CHRONICLE, volume = "14", number = "7", pages = "18--18", month = jun, year = "1997", ISSN = "0892-2829", bibdate = "Fri Jun 27 08:13:33 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", fjournal = "HP Chronicle", } @Article{Anonymous:1997:ISD, author = "Anonymous", title = "{ILOG} ships {2-D} {Java} graphics library", journal = j-SUNSERVER, volume = "11", number = "12", pages = "21--21", month = dec, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 07:35:55 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.pcinews.com/pci/sun", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:ISJ, author = "Anonymous", title = "{Infoscape} ships {Java} application development software", journal = j-HP-CHRONICLE, volume = "14", number = "8", pages = "19--19", month = jul, year = "1997", ISSN = "0892-2829", bibdate = "Wed Jul 02 14:09:56 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "HP Chronicle", } @Article{Anonymous:1997:ISP, author = "Anonymous", title = "{InterNetivity} ships {100\% Pure Java} data analysis tool", journal = j-SUNSERVER, volume = "11", number = "11", pages = "20--20", month = nov, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:ISS, author = "Anonymous", title = "{Imperial Software} ships {Visaj Java} development tool", journal = j-SUNSERVER, volume = "11", number = "12", pages = "19--19", month = dec, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 07:35:55 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.pcinews.com/pci/sun", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:IVJ, author = "Anonymous", title = "Interview: {A} Voice for {Java} Developers", journal = j-BYTE, volume = "22", number = "12", pages = "44--44", month = dec, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon Nov 24 17:06:19 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Anonymous:1997:IWJ, author = "Anonymous", title = "Interview: Why {Java} Won't Repeat the Mistakes of {Unix}. {Scott McNealy}, chairman and {CEO} of {Sun Microsystems}, talks about how {Java} will change computing and the computer industry", journal = j-BYTE, volume = "22", number = "1", pages = "40--40", month = jan, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Dec 28 07:00:20 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Some McNealy quotes: ``And I'm urging every CEO to make sure it [Windows] runs really slowly, so people stop using that stuff. The right way is to ban PowerPoint from your company.'' ``I banned PowerPoint from my company and we have had the best two quarters we've ever had\ldots{}'' ``I want to give everybody plastic Mylar sheets and all the pens they need to scribble on them. And I said use what I call the [Sun cofounder] Bill Joy font. You can see where he licked his thumb and erases; it's so much faster.''", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Anonymous:1997:Ja, author = "Anonymous", title = "{JavaScript}", publisher = pub-PH, address = pub-PH:adr, pages = "????", year = "1997", ISBN = "4-88735-026-0", ISBN-13 = "978-4-88735-026-7", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://puma.asahi-net.or.jp/prentice/wa_net11-j.html", acknowledgement = ack-nhfb, language = "Japanese", } @Article{Anonymous:1997:JAT, author = "Anonymous", title = "{Java} agent tools help move business apps", journal = j-SUNSERVER, volume = "11", number = "12", pages = "22--22", month = dec, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 07:35:55 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.pcinews.com/pci/sun", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Book{Anonymous:1997:Jb, author = "Anonymous", title = "{JavaScript}", publisher = "Gijutsu Hyoron Co., Ltd.", address = "??, Japan", pages = "????", year = "1997", ISBN = "4-7741-0335-7", ISBN-13 = "978-4-7741-0335-8", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "1680 yen", URL = "http://www.gihyo.co.jp/syoseki/promo/js/index.html", acknowledgement = ack-nhfb, language = "Japanese", } @Article{Anonymous:1997:JBB, author = "Anonymous", title = "{Java} Becomes Big Business: {Forrester} pegs {Java}'s penetration and offers advice on its use", journal = j-WEB-APPS, volume = "1", number = "1", pages = "11--11", month = jan # "\slash " # feb, year = "1997", ISSN = "1090-2287", bibdate = "Wed Jan 15 14:55:25 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Web Apps magazine", } @Article{Anonymous:1997:JBE, author = "Anonymous", title = "{Java Blend} eases complex database programming", journal = j-SUNSERVER, volume = "11", number = "10", pages = "20--20", month = oct, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:JBT, author = "Anonymous", title = "{Java}-based tools provide direct access to {CICS}", journal = j-SUNSERVER, volume = "11", number = "11", pages = "17--17", month = nov, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Book{Anonymous:1997:Jc, author = "Anonymous", title = "{Java}", publisher = pub-PH, address = pub-PH:adr, month = oct, year = "1997", ISBN = "4-89471-001-3", ISBN-13 = "978-4-89471-001-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mmjp.or.jp/prentice/", price = "5,200 yen", URL = "http://www.mmjp.or.jp/prentice/wa_int21-j.html", acknowledgement = ack-nhfb, language = "Japanese", } @Article{Anonymous:1997:JCC, author = "Anonymous", title = "{JavaBeans} course covers the many sides of {Java}", journal = j-SUNSERVER, volume = "11", number = "9", pages = "32--32", month = sep, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Book{Anonymous:1997:JD, author = "Anonymous", title = "{Java} 1.0 Decubierto", publisher = pub-PH-HISPANOAMERICANA, address = pub-PH-HISPANOAMERICANA:adr, pages = "????", year = "1997", ISBN = "84-89660-59-X (??Invalid checksum??)", ISBN-13 = "978-84-89660-59-5 (??Invalid checksum??)", LCCN = "????", bibdate = "Mon Aug 18 17:11:36 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/spanish.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prentice.com.mx/; http://wwwiz.com/books/european.html", note = "Includes CD-ROM.", price = "6995 Ptas.", URL = "http://prentice.com.mx/; http://prentice.com.mx/libros/javadesc.html", acknowledgement = ack-nhfb, language = "Spanish", } @Article{Anonymous:1997:JDA, author = "Anonymous", title = "{Java} Distributed Across {Internet}", journal = j-AIXTRA, volume = "7", number = "3", pages = "16--16", month = may # "\slash " # jun, year = "1997", bibdate = "Mon May 05 21:09:09 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "/{AIXtra}: {IBM}'s Magazine for {AIX} Professionals", } @Book{Anonymous:1997:Je, author = "Anonymous", title = "{Java}", publisher = pub-SOFTBANK, address = pub-SOFTBANK:adr, pages = "????", year = "1997", ISBN = "4-89052-892-X", ISBN-13 = "978-4-89052-892-9", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "2700 yen", URL = "http://www.softbank.co.jp/softbank/publishing/; http://www.softbank.co.jp/softbank/publishing/books/kikan/kikan2/002.htm", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Anonymous:1997:Jf, author = "Anonymous", title = "{Java}", publisher = "????", address = "??, Japan", pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.im.noda.sut.ac.jp/java/java-bon.html", acknowledgement = ack-nhfb, language = "Japanese", } @Article{Anonymous:1997:JFA, author = "Anonymous", title = "{JavaBeans} features assist developers with {ActiveX} apps", journal = j-SUNSERVER, volume = "11", number = "9", pages = "18--18", month = sep, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:JFE, author = "Anonymous", title = "{Java} Front Ends Supported", journal = j-OBJECT-MAG, volume = "6", number = "11", pages = "77--77", month = jan, year = "1997", CODEN = "OBMAFO", ISSN = "1055-3614", bibdate = "Tue Mar 04 18:01:43 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Object Magazine", } @Book{Anonymous:1997:Jg, author = "Anonymous", title = "{Java}", publisher = pub-SOFTBANK, address = pub-SOFTBANK:adr, pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "2400 yen", URL = "http://www.softbank.co.jp/softbank/publishing/; http://www.softbank.co.jp/softbank/publishing/books/editer/nw/appletbo.html", acknowledgement = ack-nhfb, language = "Japanese", } @Article{Anonymous:1997:JGB, author = "Anonymous", title = "{Java GUI} Builder Written in {Java}", journal = j-WEBSERVER, volume = "2", number = "1", pages = "53--53", month = feb, year = "1997", ISSN = "1087-4232", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Book{Anonymous:1997:JGC, author = "Anonymous", title = "{JavaScript} --- Guia de Consulta Rapida", publisher = "Novatec Editora Ltda.", address = "R Cons Moreira de Barros 1084 Conj. 01, 02018-012 S{\~a}o Paulo - SP, Brasil", pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 12:44:14 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/portuguese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://novatec1.com/", acknowledgement = ack-nhfb, language = "Portuguese", } @Article{Anonymous:1997:JGR, author = "Anonymous", title = "{JavaStation} Gets a Reaction", journal = j-SUNEXPERT, volume = "8", number = "1", pages = "6--6", month = jan, year = "1997", ISSN = "1053-9239", bibdate = "Thu Jan 16 18:51:20 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Book{Anonymous:1997:Jh, author = "Anonymous", title = "{Java}", publisher = pub-PH, address = pub-PH:adr, pages = "????", year = "1997", ISBN = "4-88735-011-2", ISBN-13 = "978-4-88735-011-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mmjp.or.jp/prentice/", price = "????", URL = "http://puma.asahi-net.or.jp/prentice/index_washo-j.html; http://puma.asahi-net.or.jp/prentice/wa_net05-j.html; http://www.mmjp.or.jp/prentice/wa_net05-j.html", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Anonymous:1997:Ji, author = "Anonymous", title = "{Java}", publisher = pub-PH, address = pub-PH:adr, pages = "????", year = "1997", ISBN = "4-88735-000-7", ISBN-13 = "978-4-88735-000-7", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "3000 yen", URL = "http://puma.asahi-net.or.jp/prentice/index_washo-j.html; http://puma.asahi-net.or.jp/prentice/wa_net13-j.html", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Anonymous:1997:Jj, author = "Anonymous", title = "{JavaScript}", publisher = pub-IMPRESS, address = pub-IMPRESS:adr, pages = "????", year = "1997", ISBN = "4-8443-4778-0", ISBN-13 = "978-4-8443-4778-1", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "1748 yen", URL = "http://www.ips.co.jp/; http://www.ips.co.jp/book/4778/4778.htm", acknowledgement = ack-nhfb, language = "Japanese", } @Article{Anonymous:1997:JJa, author = "Anonymous", title = "{Java} without {Java}", journal = j-SUNEXPERT, volume = "8", number = "1", pages = "78--78", month = jan, year = "1997", ISSN = "1053-9239", bibdate = "Thu Jan 16 18:51:20 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses OpenConnect Systems' integrated development environment, OpenVista.", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Book{Anonymous:1997:JJb, author = "Anonymous", title = "{Java \& JavaScript}", publisher = pub-SOFTBANK, address = pub-SOFTBANK:adr, pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.softbank.co.jp/softbank/publishing/; http://www.softbank.co.jp/softbank/publishing/books/editer/pg/javahomepage/index.html", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Anonymous:1997:Jk, author = "Anonymous", title = "{Java}", publisher = pub-ASCII, address = pub-ASCII:adr, pages = "????", year = "1997", ISBN = "4-7561-1650-7", ISBN-13 = "978-4-7561-1650-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.ascii.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://www.ascii.co.jp/; http://www.ascii.co.jp/pb/book1/shinkan/detail/1322183.html", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Anonymous:1997:Jl, author = "Anonymous", title = "{JavaScript}", publisher = pub-PH, address = pub-PH:adr, pages = "????", year = "1997", ISBN = "4-88735-040-6", ISBN-13 = "978-4-88735-040-3", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "1600 yen", URL = "http://puma.asahi-net.or.jp/prentice/wa_net17-j.html", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Anonymous:1997:Jm, author = "Anonymous", title = "{Java}", publisher = pub-PH, address = pub-PH:adr, pages = "????", year = "1997", ISBN = "4-88735-039-2", ISBN-13 = "978-4-88735-039-7", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "2400 yen", URL = "http://puma.asahi-net.or.jp/prentice/index_washo-j.html; http://puma.asahi-net.or.jp/prentice/wa_net16-j.html", acknowledgement = ack-nhfb, language = "Japanese", } @Article{Anonymous:1997:JML, author = "Anonymous", title = "{Java} Middleware Links Apps", journal = j-RS-MAGAZINE, volume = "6", number = "2", pages = "46--46", month = feb, year = "1997", ISSN = "1088-0844, 1061-0030", bibdate = "Tue Feb 11 06:17:14 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "RS\slash Magazine", } @Article{Anonymous:1997:JNJ, author = "Anonymous", title = "{JavaStation}, {Netra j} Unveiled", journal = j-SUNEXPERT, volume = "8", number = "1", pages = "6, 8", month = jan, year = "1997", ISSN = "1053-9239", bibdate = "Thu Jan 16 18:51:20 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Book{Anonymous:1997:JNS, author = "Anonymous", title = "{Java} Network Security", publisher = pub-IBM-REDBOOKS, address = pub-IBM-REDBOOKS:adr, month = dec, year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.redbooks.ibm.com/", price = "????", URL = "http://www.redbooks.ibm.com/redpieces.html", acknowledgement = ack-nhfb, } @Book{Anonymous:1997:JP, author = "Anonymous", title = "{Java-Plattform: 1997}", publisher = pub-BHV, address = pub-BHV:adr, pages = "????", month = "Winter", year = "1997", ISBN = "3-89360-302-6", ISBN-13 = "978-3-89360-302-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.ctn-service.com/bhv/inhalt.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "60 DM", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.ctn-service.com/bhv/inhalt.html", } @Book{Anonymous:1997:JPH, author = "Anonymous", title = "{Java} Programming Handbook", publisher = pub-SOFTBANK, address = pub-SOFTBANK:adr, pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.softbank.co.jp/softbank/publishing/; http://www.softbank.co.jp/softbank/publishing/books/editer/nw/index.html", acknowledgement = ack-nhfb, language = "Japanese", } @Article{Anonymous:1997:JPPa, author = "Anonymous", title = "{Java Premium} program provides business support", journal = j-SUNSERVER, volume = "11", number = "12", pages = "6--6", month = dec, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 07:35:55 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.pcinews.com/pci/sun", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:JPPb, author = "Anonymous", title = "{JClass Chart 2.0} creates business chart designs", journal = j-SUNSERVER, volume = "11", number = "12", pages = "20--20", month = dec, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 07:35:55 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.pcinews.com/pci/sun", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:JPS, author = "Anonymous", title = "{Java-Powered} Storage Management Systems", journal = j-SUNEXPERT, volume = "8", number = "3", pages = "82--82", month = mar, year = "1997", ISSN = "1053-9239", bibdate = "Tue Mar 18 07:22:49 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Describes Legato Systems Inc.'s GEMS (Global Enterprise Management of Systems) front end to their Networker storage backup product.", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Anonymous:1997:JRA, author = "Anonymous", title = "{Java} Rapid Application Building Tool", journal = j-SUNEXPERT, volume = "8", number = "9", pages = "104--104", month = sep, year = "1997", ISSN = "1053-9239", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Brief mention of Jyacc Inc.'s Prolifics 3 rapid application development tool.", fjournal = "SunExpert Magazine", } @Article{Anonymous:1997:JRM, author = "Anonymous", title = "{Java}-to-Relational Middleware", journal = j-WEBSERVER, volume = "2", number = "1", pages = "53--53", month = feb, year = "1997", ISSN = "1087-4232", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Book{Anonymous:1997:JV, author = "Anonymous", title = "{Java} + {VRML}", publisher = pub-PH, address = pub-PH:adr, pages = "????", month = jun, year = "1997", ISBN = "4-88735-058-9", ISBN-13 = "978-4-88735-058-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mmjp.or.jp/prentice/", price = "4000 yen", URL = "http://www.mmjp.or.jp/prentice/wa_int11-j.html", acknowledgement = ack-nhfb, language = "Japanese", url-publisher = "http://www.mmjp.or.jp/prentice/", } @Book{Anonymous:1997:JVM, author = "Anonymous", title = "{Java Virtual Machine} unleashed", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "????", year = "1997", ISBN = "1-57521-247-1 (paperback)", ISBN-13 = "978-1-57521-247-0 (paperback)", LCCN = "9710 BOOK NOT YET IN LC", bibdate = "Mon Apr 10 10:43:48 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, } @Book{Anonymous:1997:Jx, author = "Anonymous", title = "{JavaBeans}", publisher = pub-OHMSHA, address = pub-OHMSHA:adr, month = nov, year = "1997", ISBN = "4-274-06232-5", ISBN-13 = "978-4-274-06232-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ohmsha.co.jp/", price = "2,400 yen", URL = "http://www.ohmsha.co.jp/data/books/contents/4-274-06232-5.htm", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Anonymous:1997:Jy, author = "Anonymous", title = "{JavaBeans}", publisher = pub-PH, address = pub-PH:adr, month = nov, year = "1997", ISBN = "4-89471-013-7", ISBN-13 = "978-4-89471-013-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mmjp.or.jp/prentice/", price = "2,800 yen", URL = "http://www.mmjp.or.jp/prentice/wa_int26-j.html", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Anonymous:1997:Jz, author = "Anonymous", title = "{Java}", publisher = "Mizuki", address = "??, Japan", pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "800 yen", URL = "http://www.mizuki.co.jp/; http://www.mizuki.co.jp/books/155-3b.html", acknowledgement = ack-nhfb, language = "Japanese", } @Article{Anonymous:1997:LCC, author = "Anonymous", title = "Low-cost {C++}, {Java} Storage Products", journal = j-OBJECT-MAG, volume = "6", number = "11", pages = "76--76", month = jan, year = "1997", CODEN = "OBMAFO", ISSN = "1055-3614", bibdate = "Tue Mar 04 18:01:43 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Object Magazine", } @Article{Anonymous:1997:LEC, author = "Paul Whittington and Nancy Nicolaisen", title = "Letter to the Editor: Could {Ada95} Outmuscle {Java}?", journal = j-OBJECT-MAG, volume = "6", number = "12", pages = "6, 8", month = feb, year = "1997", CODEN = "OBMAFO", ISSN = "1055-3614", bibdate = "Mon Mar 03 11:23:57 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Object Magazine", } @Article{Anonymous:1997:LTO, author = "Anonymous", title = "{Learning Tree} Offers {Java} Courses", journal = j-CCCUJ, volume = "15", number = "1", pages = "78--78", month = jan, year = "1997", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Fri Dec 13 06:23:10 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Anonymous:1997:LWA, author = "Anonymous", title = "{Logic Works} adds {Java} to {Universal Directory} system", journal = j-SUNSERVER, volume = "11", number = "10", pages = "28--28", month = oct, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Book{Anonymous:1997:MJH, author = "Anonymous", title = "{Mac Java\slash HotJava}", publisher = "Cutt", address = "??, Japan", pages = "????", year = "1997", ISBN = "4-906391-29-X", ISBN-13 = "978-4-906391-29-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.cutt.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "1,800 yen", URL = "http://www.cutt.co.jp/; http://www.cutt.co.jp/book/macjava.html", acknowledgement = ack-nhfb, language = "Japanese", } @Article{Anonymous:1997:MJT, author = "Anonymous", title = "{Motif-to-Java} Tool Debuts", journal = j-RS-MAGAZINE, volume = "6", number = "1", pages = "53--54", month = jan, year = "1997", ISSN = "1088-0844, 1061-0030", bibdate = "Wed Jan 15 15:28:43 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "RS\slash Magazine", } @Article{Anonymous:1997:MLF, author = "Anonymous", title = "{Marimba} Launches First {Java}\slash {Web} Products", journal = j-UNIX-DEVELOPER, volume = "1", number = "1", pages = "92--92", month = jan # "\slash " # feb, year = "1997", ISSN = "1090-2279", bibdate = "Thu Jan 16 17:23:49 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "UNIX Developer", } @Article{Anonymous:1997:MNJ, author = "Anonymous", title = "Micro News: {JavaOne 97}. {Intel} vs. {DEC}", journal = j-IEEE-MICRO, volume = "17", number = "3", pages = "5--??", month = may # "\slash " # jun, year = "1997", CODEN = "IEMIDZ", ISSN = "0272-1732 (print), 1937-4143 (electronic)", ISSN-L = "0272-1732", bibdate = "Tue Aug 12 12:35:06 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://pascal.computer.org/mi/books/mi1997/pdf/m3005.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Micro", } @Article{Anonymous:1997:MOJ, author = "Anonymous", title = "Manage Objects in {Java}", journal = j-BYTE, volume = "22", number = "7", pages = "158--158", month = jul, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Fri Jun 27 08:37:54 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Anonymous:1997:MRJ, author = "Anonymous", title = "Micro Review: {Java}, {SGML}: Destabilizing forces for companies and careers?", journal = j-IEEE-MICRO, volume = "17", number = "3", pages = "3--5", month = may # "\slash " # jun, year = "1997", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/MM.1997.591647", ISSN = "0272-1732 (print), 1937-4143 (electronic)", ISSN-L = "0272-1732", bibdate = "Tue Aug 12 12:35:06 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://pascal.computer.org/mi/books/mi1997/pdf/m3003.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Micro", } @Article{Anonymous:1997:MRO, author = "Anonymous", title = "Micro Review: Only the paranoid survive; recent {Java} books", journal = j-IEEE-MICRO, volume = "17", number = "2", pages = "4, 77", month = mar # "-" # apr, year = "1997", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/MM.1997.592322", ISSN = "0272-1732 (print), 1937-4143 (electronic)", ISSN-L = "0272-1732", bibdate = "Sat May 10 11:49:40 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "IEEE Micro", } @Article{Anonymous:1997:MTS, author = "Anonymous", title = "{MindQ} tutorial simplifies {Java Workshop 2.0}", journal = j-SUNSERVER, volume = "11", number = "11", pages = "4--4", month = nov, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:MVI, author = "Anonymous", title = "Micro View: {IBM} bets on {JavaBeans}", journal = j-IEEE-MICRO, volume = "17", number = "3", pages = "80--??", month = may # "\slash " # jun, year = "1997", CODEN = "IEMIDZ", ISSN = "0272-1732 (print), 1937-4143 (electronic)", ISSN-L = "0272-1732", bibdate = "Tue Aug 12 12:35:06 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://pascal.computer.org/mi/books/mi1997/pdf/m3080.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Micro", } @Article{Anonymous:1997:MWS, author = "Anonymous", title = "Monitor a {Web} Site with {Java}", journal = j-WEBSERVER, volume = "2", number = "2", pages = "52--53", month = mar, year = "1997", ISSN = "1087-4232", bibdate = "Mon Mar 10 22:07:26 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Anonymous:1997:NJV, author = "Anonymous", title = "New {Java} Validation Centers", journal = j-AIXTRA, volume = "7", number = "1", pages = "6--6", month = jan # "\slash " # feb, year = "1997", bibdate = "Thu Jan 09 14:49:51 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "/{AIXtra}: {IBM}'s Magazine for {AIX} Professionals", } @Article{Anonymous:1997:NOJ, author = "Anonymous", title = "{NetRight} Offers {Java}-Based {DMS}", journal = j-WEBSERVER, volume = "2", number = "1", pages = "52--52", month = feb, year = "1997", ISSN = "1087-4232", bibdate = "Wed Jan 29 13:42:32 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Anonymous:1997:NPC, author = "Anonymous", title = "New Products: {CodeWizard} for {Java}", journal = j-COMPUTER, volume = "30", number = "6", pages = "106--106", month = jun, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Wed Jun 04 08:59:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Anonymous:1997:NPf, author = "Anonymous", title = "New Products", journal = j-CCCUJ, volume = "15", number = "6", pages = "94--97", month = jun, year = "1997", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Fri May 16 08:01:41 1997", bibsource = "http://www.cuj.com/1506toc.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "DigitalThink Offers Online C++ and Java Courses (\path=http://www.digitalthink.com/=). Software Research Announces TCAT (coverage analyser) for Java (\path=http://www.soft.com/=).", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Anonymous:1997:NPI, author = "Anonymous", title = "New Products: {Integra4 RDBMS for Linux; Clustor 1.0; BitWizard; Hitachi MP-EG1A; LinkScan; Pixel!FX Version 5.1; JClass Chart; Internet\slash Intranet Design Shop; Velocis Database Server}", journal = j-LINUX-J, volume = "38", pages = "??--??", month = jun, year = "1997", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Fri Oct 9 08:35:26 MDT 1998", bibsource = "http://noframes.linuxjournal.com/lj-issues/issue38/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Article{Anonymous:1997:NPR, author = "Anonymous", title = "New Products: {Raima Database Manager; PC Watchdog; TextSurgeon 2.0; Edith Pro\slash X11; Java Numeric Library; MagicFax; F-Secure Data Security Software; Stronghold 2.0}", journal = j-LINUX-J, volume = "36", pages = "??--??", month = apr, year = "1997", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Fri Oct 9 08:35:26 MDT 1998", bibsource = "http://www.linuxjournal.com/issue36/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Article{Anonymous:1997:NPV, author = "Anonymous", title = "New Products: {Visix} Releases {Vibe Java IDE}", journal = j-CCCUJ, volume = "15", number = "7", pages = "94--94", month = jul, year = "1997", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Thu Jun 26 14:12:46 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Anonymous:1997:NPW, author = "Anonymous", title = "New Products: {WebThreads 1.0.1; QUERYFLEX Report Writer; Linux Pro Desktop 1.0; NDP Fortran for Linux; Numerics and Visualization for Java; Craftworks Linux/AXP 2.2; InfoDock Linux Software Development Toolset; Caldera Wabi 2.2 for Linux}", journal = j-LINUX-J, volume = "34", pages = "??--??", month = feb, year = "1997", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Fri Oct 9 08:35:26 MDT 1998", bibsource = "http://noframes.linuxjournal.com/lj-issues/issue34/index.html; http://www.linuxjournal.com/issue34/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Article{Anonymous:1997:NSG, author = "Anonymous", title = "New Software Guards Against `Hostile Applets' Using {ActiveX} and {Java} on {Internet}", journal = j-CISCO-WORLD, volume = "3", number = "8", pages = "26--26", month = aug, year = "1997", ISSN = "1081-3187", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Cisco World: The Independent Journal for Internetworking Professionals", } @Article{Anonymous:1997:OAF, author = "Anonymous", title = "{ObjectSpace} Announces Five New Object-Oriented Classes for {C++}, {Java}, and {MFC}", journal = j-CCCUJ, volume = "15", number = "9", pages = "98--98", month = sep, year = "1997", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Wed Aug 20 10:24:19 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Book{Anonymous:1997:OGJ, author = "Anonymous", title = "Official {Gamelan} {Java} Applet Library", publisher = pub-ZD, address = pub-ZD:adr, pages = "????", month = jun, year = "1997", ISBN = "1-56276-461-6", ISBN-13 = "978-1-56276-461-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/zdpress/; http://www.amazon.com/exec/obidos/ISBN=1562764616/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.95", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15627/bud/1562764616.html", acknowledgement = ack-nhfb, dimensions = "10.19in x 8.62in x 2.03in", xxtitle = "{Java} Applet Library", } @Article{Anonymous:1997:OSJ, author = "Anonymous", title = "{ObjectShare} Ships {Java} Components", journal = j-WEBSERVER, volume = "2", number = "1", pages = "52--53", month = feb, year = "1997", ISSN = "1087-4232", bibdate = "Wed Jan 29 13:42:32 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Anonymous:1997:PUJ, author = "Anonymous", title = "{Patriot} uses {JavaOS} to enhance {ShBoom} microprocessors", journal = j-SUNSERVER, volume = "11", number = "9", pages = "23--23", month = sep, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:PUM, author = "Anonymous", title = "{Penumbra} upgrades {Mojo Java}", journal = j-UNIX-DEVELOPER, volume = "1", number = "1", pages = "92--92", month = jan # "\slash " # feb, year = "1997", ISSN = "1090-2279", bibdate = "Thu Jan 16 17:23:49 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "UNIX Developer", } @Article{Anonymous:1997:RAB, author = "Anonymous", title = "{R-Active}'s {BetterState PRO} Generates {Java} Code", journal = j-CCCUJ, volume = "15", number = "1", pages = "79--79", month = jan, year = "1997", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Fri Dec 13 06:23:10 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Anonymous:1997:RAJ, author = "Anonymous", title = "{RSA} announces {Java} encryption tool kit", journal = j-SUNSERVER, volume = "11", number = "11", pages = "19--19", month = nov, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:RAN, author = "Anonymous", title = "{RTI} Announces {NetAcquire Java Toolkit}", journal = j-CCCUJ, volume = "15", number = "9", pages = "96--96", month = sep, year = "1997", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Wed Aug 20 10:24:19 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Anonymous:1997:RDL, author = "Anonymous", title = "{RSA Data} Licenses {Java} Encryption Library", journal = j-CISCO-WORLD, volume = "3", number = "8", pages = "21--21", month = aug, year = "1997", ISSN = "1081-3187", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Cisco World: The Independent Journal for Internetworking Professionals", } @Article{Anonymous:1997:RFM, author = "Anonymous", title = "{Rockwell} First to Market with {Java} Microprocessor", journal = j-ENEWS, volume = "43", number = "2187", pages = "20--20", day = "29", month = sep, year = "1997", CODEN = "ELNEAU", ISSN = "0013-4937, 1061-6624", bibdate = "Mon Jan 12 07:12:28 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Electronic News", } @Article{Anonymous:1997:RRJ, author = "Anonymous", title = "Recent Releases: {Java}: {Sun Microsystems}", journal = j-UNIX-REVIEW, volume = "15", number = "1", pages = "91--91", month = jan, year = "1997", CODEN = "UNRED5", ISSN = "0742-3136", bibdate = "Tue Mar 11 22:58:15 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "UNIX review", } @Article{Anonymous:1997:RRT, author = "Anonymous", title = "{RTI} releases test, measurement {Java}-based toolkit", journal = j-HP-CHRONICLE, volume = "14", number = "7", pages = "17--17", month = jun, year = "1997", ISSN = "0892-2829", bibdate = "Fri Jun 27 08:13:33 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", fjournal = "HP Chronicle", } @Article{Anonymous:1997:RWI, author = "Anonymous", title = "{Rogue Wave} Introduces a Pair of {Java} Updates", journal = j-UNIX-DEVELOPER, volume = "1", number = "1", pages = "92--92", month = jan # "\slash " # feb, year = "1997", ISSN = "1090-2279", bibdate = "Thu Jan 16 17:23:49 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "UNIX Developer", } @Article{Anonymous:1997:SAJ, author = "Anonymous", title = "{Scopus} adds {Java} to call center environment", journal = j-SUNSERVER, volume = "11", number = "9", pages = "18--18", month = sep, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:SBJ, author = "Anonymous", title = "{Sun} brews up {Java} development environment", journal = j-SUNSERVER, volume = "11", number = "11", pages = "4--4", month = nov, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:SBO, author = "Anonymous", title = "{Sun} bundles {Object Design}'s database with {Java Workshop}", journal = j-SUNSERVER, volume = "11", number = "11", pages = "4--4", month = nov, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:SBP, author = "Anonymous", title = "{Sun} brings power of {Java} to users with disabilities", journal = j-SUNSERVER, volume = "11", number = "9", pages = "19--19", month = sep, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:SEJ, author = "Anonymous", title = "Secure Embedded {Java} Computer Out", journal = j-WEBSERVER, volume = "2", number = "2", pages = "52--53", month = mar, year = "1997", ISSN = "1087-4232", bibdate = "Mon Mar 10 22:07:26 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Anonymous:1997:SFJ, author = "Anonymous", title = "{Sun} finalizes {Java Card API 2.0} specification", journal = j-SUNSERVER, volume = "11", number = "12", pages = "20--20", month = dec, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 07:35:55 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.pcinews.com/pci/sun", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:SIJa, author = "Anonymous", title = "{Symantec} includes {JScape}'s {Java} tools in {Visual} family", journal = j-SUNSERVER, volume = "11", number = "9", pages = "32--32", month = sep, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:SIJb, author = "Anonymous", title = "{Symantec} includes {JScape}'s {Java} tools {in} Visual family", journal = j-SUNSERVER, volume = "11", number = "10", pages = "22--22", month = oct, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:SJR, author = "Anonymous", title = "{Sun}'s {JavaEngine 1} reference platform meets demands of {OEMs}", journal = j-SUNSERVER, volume = "11", number = "10", pages = "20--20", month = oct, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:SLS, author = "Anonymous", title = "{Sun} launches suite of {Java} testing developer tools", journal = j-SUNSERVER, volume = "11", number = "10", pages = "5--5", month = oct, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:SMS, author = "Anonymous", title = "{SoftPlus} markets {SunTest}'s {100\% Pure Java} tools", journal = j-SUNSERVER, volume = "11", number = "10", pages = "20--20", month = oct, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:SOC, author = "Anonymous", title = "{SGI} to offer {Cosmo Code Java} environment on Windows", journal = j-SILICON-GRAPHICS-WORLD, volume = "7", number = "6", pages = "3--4", month = jun, year = "1997", ISSN = "1057-7041", bibdate = "Fri Jun 27 08:08:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Silicon Graphics World", } @Article{Anonymous:1997:SSA, author = "Anonymous", title = "{Su}, {Siemens} agree to embed {Java} into smartcard chips", journal = j-SUNSERVER, volume = "11", number = "9", pages = "19--19", month = sep, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:STR, author = "Anonymous", title = "{STEP Tools} releases {Java Tools} for product data", journal = j-SILICON-GRAPHICS-WORLD, volume = "7", number = "10", pages = "8--8", month = oct, year = "1997", ISSN = "1057-7041", bibdate = "Mon Jan 12 07:32:41 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Silicon Graphics World", } @Article{Anonymous:1997:SUF, author = "Anonymous", title = "{Sun} unveils first {JavaChip} series of processors", journal = j-SUNSERVER, volume = "11", number = "12", pages = "5--5", month = dec, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 07:35:55 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.pcinews.com/pci/sun", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:SVJ, author = "Anonymous", title = "Software: {Visual Java}", journal = j-COMPUTER, volume = "30", number = "2", pages = "123--123", month = feb, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Sun Feb 09 09:45:28 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Anonymous:1997:TBJ, author = "Anonymous", title = "Tool for Building {Java} Apps", journal = j-SUNEXPERT, volume = "8", number = "11", pages = "94, 96", month = nov, year = "1997", ISSN = "1053-9239", bibdate = "Mon Nov 24 16:58:34 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Describes Tendril Software's StructureBuilder 1.0.", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Anonymous:1997:TDJ, author = "Anonymous", title = "Top drawer: {Java} client generator", journal = j-IEEE-SOFTWARE, volume = "14", number = "2", pages = "125--125", month = mar # "\slash " # apr, year = "1997", CODEN = "IESOEG", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Mon Mar 24 20:57:29 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "IEEE Software", } @Article{Anonymous:1997:TNR, author = "Anonymous", title = "Technology News \& Reviews: {Chemkin} software; {OpenMP Fortran Standard}; {ODE} Toolbox for {Matlab}; {Java} products; {Scientific WorkPlace 3.0}", journal = j-IEEE-COMPUT-SCI-ENG, volume = "4", number = "4", pages = "75--??", month = oct # "\slash " # dec, year = "1997", CODEN = "ISCEE4", ISSN = "1070-9924", ISSN-L = "1070-9924", bibdate = "Sat Jan 9 08:57:23 MST 1999", bibsource = "http://www.computer.org/cse/cs1998; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/matlab.bib; http://www.math.utah.edu/pub/tex/bib/multithreading.bib", URL = "http://dlib.computer.org/cs/books/cs1997/pdf/c4075.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Computational Science \& Engineering", } @Article{Anonymous:1997:UAJ, author = "Anonymous", title = "{Ultrexx} announces {Java}-based development tools", journal = j-SUNSERVER, volume = "11", number = "10", pages = "21--21", month = oct, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Book{Anonymous:1997:VJA, author = "Anonymous", title = "{Visual J++} \& {ActiveX}", publisher = pub-SOFTBANK, address = pub-SOFTBANK:adr, pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "2200 yen", URL = "http://www.softbank.co.jp/softbank/publishing/", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Anonymous:1997:VJD, author = "Anonymous", title = "{Visual J++} Developer's Guide", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "????", year = "1997", ISBN = "1-57521-266-8", ISBN-13 = "978-1-57521-266-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$55", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/", } @Article{Anonymous:1997:VJV, author = "Anonymous", title = "{Visual Java} for {Visual Basic} Developers", journal = j-BYTE, volume = "22", number = "9", pages = "145--146", month = sep, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Aug 23 07:11:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Anonymous:1997:VNA, author = "Anonymous", title = "{Visual Numerics} announces {Pure Java Certification}", journal = j-SUNSERVER, volume = "11", number = "10", pages = "22--22", month = oct, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:VNR, author = "Anonymous", title = "{Visual Numerics} releases {JWAVE Java} Analysis Tool", journal = j-SILICON-GRAPHICS-WORLD, volume = "7", number = "6", pages = "21--21", month = jun, year = "1997", ISSN = "1057-7041", bibdate = "Fri Jun 27 08:10:40 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Silicon Graphics World", } @Article{Anonymous:1997:VNS, author = "Anonymous", title = "{Visual Numerics} starts {Java Numeric Library} beta test", journal = j-SILICON-GRAPHICS-WORLD, volume = "7", number = "3", pages = "22--22", month = mar, year = "1997", ISSN = "1057-7041", bibdate = "Thu Mar 13 07:50:01 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Silicon Graphics World", } @Article{Anonymous:1997:VQP, author = "Anonymous", title = "{Visual Quantify} points to problems in {Java}, {C++} apps", journal = j-SUNSERVER, volume = "11", number = "9", pages = "22--22", month = sep, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1997:VUV, author = "Anonymous", title = "{Visix} unveils {Vibe} suite of {Java} development products", journal = j-HP-CHRONICLE, volume = "14", number = "7", pages = "18--18", month = jun, year = "1997", ISSN = "0892-2829", bibdate = "Fri Jun 27 08:13:33 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", fjournal = "HP Chronicle", } @Article{Anonymous:1997:WAH, author = "Anonymous", title = "{THE WEB} Authoring: {HTML} Authoring, {FrontPage} 1.1, {HoTMetaL PRO} 3.0, {Java}, {Symantec Caf{\'e}}", journal = j-WINDOWS-MAG, volume = "??", number = "??", pages = "147--??", month = "????", year = "1997", CODEN = "WINMEV", ISSN = "1060-1066", bibdate = "Fri Jan 3 11:27:17 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Windows Magazine", } @Article{Anonymous:1997:WAS, author = "Anonymous", title = "Will {ActiveX} surpass {Java} as the key {Internet} technology?", journal = j-SOFTWARE-ECONOMICS-LETTER, volume = "6", number = "2", pages = "7--8", month = feb, year = "1997", CODEN = "SECLE3", ISSN = "1065-6146", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D5020 (Computer networks and intercomputer communications)", fjournal = "Software Economics Letter", keywords = "ActiveX; desktop development; integrated software; Internet; Internet development; Internet technology; Java; Microsoft", treatment = "E Economic", } @Book{Anonymous:1997:WJH, author = "Anonymous", title = "{Windows Java\slash HotJava}", publisher = "Cutt", address = "??, Japan", pages = "????", year = "1997", ISBN = "4-906391-27-3", ISBN-13 = "978-4-906391-27-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.cutt.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "1,800 yen", URL = "http://www.cutt.co.jp/; http://www.cutt.co.jp/book/winjava.html", acknowledgement = ack-nhfb, language = "Japanese", } @Article{Anonymous:1997:XDM, author = "Anonymous", title = "{X Designer} Migrates {Motif} to {Java}", journal = j-AIXTRA, volume = "7", number = "2", pages = "25--25", month = mar # "\slash " # apr, year = "1997", bibdate = "Mon Mar 10 21:52:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "/{AIXtra}: {IBM}'s Magazine for {AIX} Professionals", } @Book{Anuff:1997:JSb, author = "Ed Anuff", title = "The {Java} 1.1 Sourcebook", publisher = pub-WILEY, address = pub-WILEY:adr, edition = "Second", pages = "????", month = jan, year = "1997", ISBN = "0-614-20340-6", ISBN-13 = "978-0-614-20340-0", LCCN = "????", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.95", acknowledgement = ack-nhfb, keywords = "Java (computer program language)", } @Book{Aoyagi:1997:JWP, author = "Tatsuya Aoyagi", title = "{Java}: {Web} Pages Alive", publisher = "Quality Books", address = "??, Japan", pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "1700 yen", URL = "http://www.qualitysoft.com/ (??)", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Appel:1997:MCI, author = "Andrew W. Appel", title = "Modern Compiler Implementation in {Java}: Basic Techniques", publisher = pub-CUP, address = pub-CUP:adr, pages = "x + 398", month = feb, year = "1997", ISBN = "0-521-58387-X (hardback), 0-521-58654-2 (paperback)", ISBN-13 = "978-0-521-58387-9 (hardback), 978-0-521-58654-2 (paperback)", LCCN = "QA76.73.J38A66 1997", bibdate = "Tue May 04 12:51:28 1999", bibsource = "http://www.cup.org; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "See reviews in \cite{Jenkins:1997:AAH,Wilson:1997:PBA}.", price = "US\$74.95 (hardback), US\$29.95 (paperback)", URL = "http://www.cs.princeton.edu/~appel/modern/java", acknowledgement = ack-nhfb, } @Book{Armstrong:1997:JJB, author = "Eric Armstrong", title = "{JBuilder Java} Bible", publisher = pub-IDG, address = pub-IDG:adr, pages = "????", month = nov, year = "1997", ISBN = "0-7645-3114-X", ISBN-13 = "978-0-7645-3114-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", acknowledgement = ack-nhfb, url-publisher = "http://www.idgbooks.com/", } @Article{Atwood:1997:PCF, author = "Christopher A. Atwood and Rajat P. Garg and Dennis Deryke", title = "A prototype computational fluid dynamics case study in {Java}", journal = j-CPE, volume = "9", number = "11", pages = "1311--1318", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13842; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13842&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Au:1997:JPB, author = "Edith Au and Dave Makower and {Pencom Web Works}", title = "{Java} Programming Basics: For {Java} 1.1", publisher = pub-MIS # " and " # pub-MT, address = pub-MIS:adr # " and " # pub-MT:adr, edition = "Second", pages = "????", month = apr, year = "1997", ISBN = "1-55828-551-2 (softcover)", ISBN-13 = "978-1-55828-551-4 (softcover)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mispress.com/", note = "Includes CD-ROM.", price = "US\$34.95", acknowledgement = ack-nhfb, } @Article{Babcock:1997:DIM, author = "Charles Babcock", title = "``Do it my way, or {I}'ll take my ball and \ldots{}''", journal = j-COMPUTERWORLD, volume = "31", number = "11", pages = "51--51", day = "17", month = mar, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Mar 24 21:07:14 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Commentary on the Microsoft and Sun views of Java.", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Babcock:1997:JMO, author = "Charles Babcock", title = "Is {Java} more `open' on {SPARC}?", journal = j-COMPUTERWORLD, volume = "31", number = "10", pages = "105--105", day = "10", month = mar, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Sat Mar 15 07:10:16 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Comments on IEEE 754 floating-point standard co-developer Jerome Coonan's ``A Note on Java Numerics'' paper, which observes that Java's requirement of identical floating-point results on all platforms imposes a run-time penalty on some platforms, notably IBM PowerPC and Intel x86, because it forces those systems to store intermediate results into memory and then immediately reload them, in order to prevent extra bits of precision in the PowerPC multiply-add instruction, or the 80-bit x86 floating-point registers, from affecting results. Babcock charges that Java is not platform neutral, as claimed by Sun, but has instead been `optimized for Sun SPARC and MIPS architectures.', without understanding, or explaining, the reasoning behind the Java Virtual Machine floating-point design.", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Baker:1997:CDO, author = "Se{\'a}n Baker", title = "{CORBA} Distributed Objects Using {Orbix}", publisher = pub-AW, address = pub-AW:adr, pages = "xxiii + 518", year = "1997", ISBN = "0-201-92475-7", ISBN-13 = "978-0-201-92475-6", LCCN = "QA76.64.B28 1997", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$44", URL = "http://cseng.aw.com/bookdetail.qry?ISBN=0%2D201%2D92475%2D7&ptype=0", acknowledgement = ack-nhfb, url-author = "http://cseng.aw.com/authordetail.qry?AuthorID=1104", url-publisher = "http://www.aw.com/", } @Book{Bakkers:1997:PPJ, editor = "A. Bakkers", title = "Parallel Programming and {Java}", publisher = pub-IOS, address = pub-IOS:adr, pages = "????", year = "1997", ISBN = "90-5199-336-6", ISBN-13 = "978-90-5199-336-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.iospress.nl/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$73", URL = "http://www.iospress.nl/html/node98.html#SECTION00035200000000000000; http://www.iospress.nl/html/node99.html#SECTION00035200000000000000", acknowledgement = ack-nhfb, url-publisher = "http://www.iospress.nl/", } @InProceedings{Balfour:1997:AJB, author = "B. Balfour", title = "{Ada 95}, {Java} Byte Code, and the Distributed Systems Annex", crossref = "ACM:1997:PTA", pages = "247--162", year = "1997", bibdate = "Tue Apr 20 13:43:51 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Book{Ball:1997:OPG, author = "Derek Ball and David Cinderella", title = "Official Power++: Getting Started", publisher = pub-VENTANA, address = pub-VENTANA:adr, month = nov, year = "1997", ISBN = "1-85032-862-5", ISBN-13 = "978-1-85032-862-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.vmedia.com/", price = "US\$45", acknowledgement = ack-nhfb, } @InProceedings{Bamforth:1997:JSS, author = "R. Bamforth", title = "{Java} --- from smartcard to supercomputer", crossref = "Anonymous:1997:INI", pages = "1--??", year = "1997", bibdate = "Wed Mar 18 12:33:18 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @InProceedings{Bank:1997:PTJ, author = "Joseph A. Bank and Andrew C. Myers and Barbara Liskov", title = "Parameterized types for {Java}", crossref = "ACM:1997:CRP", pages = "132--145", year = "1997", bibdate = "Mon May 3 12:56:11 MDT 1999", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/plan/263699/p132-bank/", acknowledgement = ack-nhfb, keywords = "design; languages; performance; theory", subject = "{\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Java. {\bf D.2.2} Software, SOFTWARE ENGINEERING, Design Tools and Techniques, User interfaces. {\bf H.5.2} Information Systems, INFORMATION INTERFACES AND PRESENTATION, User Interfaces.", } @Article{Barghouti:1997:GGP, author = "N. S. Barghouti and J. Mocenigo and W. Lee", title = "{Grappa}: {A GRAPh PAckage} in {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1353", pages = "336--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Barlett:1997:JHS, author = "N. Barlett", title = "A {Java-based} high-score server", journal = j-WEB-TECHNIQUES, volume = "2", number = "3", pages = "51--54", month = mar, year = "1997", CODEN = "WETEFA", ISSN = "1086-556X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7830D (Computer games); C6150E (General utility programs); C6130S (Data security); C6110 (Systems analysis and programming)", fjournal = "Web Techniques", keywords = "computer games; high-score recorder; Internet; Java programming; programming; security issues; security of data; utility programs; Web", treatment = "P Practical", } @Article{Barstow:1997:PIR, author = "D. R. Barstow and W. B. Brogden", title = "Personalized interactive real-time sports reporting using {Java}", journal = j-AM-PROG, volume = "10", number = "1", pages = "32--37", month = jan, year = "1997", CODEN = "AMPRFD", ISSN = "1048-5600", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7185 (Administration of other service industries); C5620W (Other computer networks); C6140D (High level languages); C6110J (Object-oriented programming); C7210 (Information services and centres); C6180 (User interfaces)", corpsource = "Instant Sports, Austin, TX, USA", fjournal = "American Programmer", keywords = "animated home run; broadcasting; entertainment; Instant; interactive services; interactive systems; Internet; Java applet; object oriented language; object-; object-oriented programming; one way; oriented languages; outfield fence; personalized interactive real time sports reporting; real-time; simulated; sport; Sports Web site; systems; technology; telecommunications", treatment = "P Practical", } @Book{Bartlett:1997:CB, author = "Neil Bartlett and Steve Simkin", title = "{Castanet} \& {Bongo}", publisher = pub-OHMSHA, address = pub-OHMSHA:adr, pages = "????", month = oct, year = "1997", ISBN = "4-900718-44-0", ISBN-13 = "978-4-900718-44-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ohmsha.co.jp/", price = "4,000 yen", URL = "http://www.ohmsha.co.jp/data/books/contents/4-900718-44-0.htm", acknowledgement = ack-nhfb, language = "Japanese", url-publisher = "http://www.ohmsha.co.jp/", } @Book{Bartlett:1997:CBP, author = "Neil Bartlett and Steve Simkin", title = "{Castanet} and {Bongo} Programming {FrontRunner}", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "xix + 354", year = "1997", ISBN = "1-57610-135-5", ISBN-13 = "978-1-57610-135-3", LCCN = "TK5105.888.B37 1997", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", URL = "http://www.coriolis.com/Site/MSIE/Books/Ind/castbong.htm", acknowledgement = ack-nhfb, url-publisher = "http://www.coriolis.com/", xxauthor = "Dan Wesley", } @Article{Bayle:1997:MRK, author = "Aime J. Bayle", title = "Media Reviews: Keeping up with {Java}: {{\em Java by Example} by J. R. Jackson and A. L. McClellan (SunSoft Press, 1997, 426 pp., \$34.95, ISBN 0-13-272295-X)}", journal = j-IEEE-MULTIMEDIA, volume = "4", number = "3", pages = "91--92", month = jul # "--" # sep, year = "1997", CODEN = "IEMUE4", DOI = "http://dx.doi.org/10.1109/MMUL.1997.621587", ISSN = "1070-986X (print), 1941-0166 (electronic)", ISSN-L = "1070-986X", bibdate = "Mon Jan 29 16:49:42 MST 2001", bibsource = "http://www.computer.org/multimedia/mu1997/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/mu/books/mu1997/pdf/u3091.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE MultiMedia", } @Book{Bayomi:1997:SJC, author = "Donald Bayomi", title = "Starting {Java}: Crash Course Videotape", publisher = "ShareViews Video Tutor", address = "????", month = jan, year = "1997", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mbnet.mb.ca/shareviews/", price = "US\$25", URL = "http://www.mbnet.mb.ca/shareviews/svvideos.html", acknowledgement = ack-nhfb, } @Book{Beaver:1997:LNN, author = "Jason Beaver and Jamie Costa and Jason Wehling", title = "Late Night {Netscape IFC}", publisher = pub-ZD, address = pub-ZD:adr, pages = "xx + 575", year = "1997", ISBN = "1-56276-540-X", ISBN-13 = "978-1-56276-540-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/zdpress/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15627/bud/156276540X.html", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/zdpress/", } @Article{Beca:1997:JEC, author = "Lukasz Beca and Gang Cheng and Geoffrey C. Fox and Tomasz Jurga and Konrad Olszewski and Marek Podgorny and Piotr Sokolowski and Krzysztof Walczak", title = "{Java} enabling collaborative education, health care, and computing", journal = j-CPE, volume = "9", number = "6", pages = "521--533", month = jun, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:32 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13875; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13875&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @InProceedings{Beck:1997:WJN, author = "B. Beck", title = "World-Ready {Java}: The Next Steps", crossref = "UC:1997:SDI", pages = "A16--??", year = "1997", bibdate = "Fri Apr 24 09:14:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "internet; software development; Unicode", } @Book{Becker:1997:HPB, author = "Jocelyn Becker", title = "How To Program {Bongo}", publisher = pub-ZD, address = pub-ZD:adr, pages = "xix + 326", year = "1997", ISBN = "1-56276-534-5", ISBN-13 = "978-1-56276-534-7", LCCN = "QA76.625 .B43 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/zdpress/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15627/bud/1562765345.html", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/zdpress/", } @Article{Beker:1997:LEJ, author = "Harry Beker", title = "Letter to the Editor: {Java} Hype versus {Tcl\slash Tk} Reality", journal = j-DDJ, volume = "22", number = "1", pages = "8, 10", month = jan, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Mon Dec 02 08:05:58 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Argues that Tcl\slash Tk provides a much more advanced windowing interface than Java currently does.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Bellin:1997:CCB, author = "David Bellin and Susan Suchman Simone", title = "The {CRC} Card Book (Includes {Java})", publisher = pub-AW, address = pub-AW:adr, pages = "xxiii + 290", year = "1997", ISBN = "0-201-89535-8", ISBN-13 = "978-0-201-89535-3", LCCN = "QA76.64.B437 1997", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://cseng.aw.com/bookdetail.qry?ISBN=0%2D201%2D89535%2D8&ptype=0", acknowledgement = ack-nhfb, url-author = "http://cseng.aw.com/authordetail.qry?AuthorID=1144", url-publisher = "http://www.aw.com/", } @Book{Ben-Natan:1997:WOD, author = "Ron Ben-Natan", title = "{Web} Objects: Designing, Building, and Deploying {Object}-Oriented Applications for the {Web}", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xix + 488", year = "1997", ISBN = "0-07-006281-1", ISBN-13 = "978-0-07-006281-8", LCCN = "QA76.64.B45 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$40", acknowledgement = ack-nhfb, url-publisher = "http://www.mcgraw-hill.com/", } @Book{Bercik:1997:CBN, author = "Bill Bercik and Sylvia Purcupile", title = "{Castanet} \& {Bongo}: No experience required", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xix + 443", year = "1997", ISBN = "0-7821-2115-2", ISBN-13 = "978-0-7821-2115-5", LCCN = "TK5105.875.I57B467 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.com/", price = "US\$30", URL = "http://www.sybex.com/cgi-bin/bookpg.pl?2115back.html", acknowledgement = ack-nhfb, url-publisher = "http://www.sybex.com/", } @Article{Berg:1997:JQH, author = "Cliff Berg", title = "{Java Q and A}: How Do {I} Write an International Application?", journal = j-DDJ, volume = "22", number = "7", pages = "105--106, 116", month = jul, year = "1997", CODEN = "DDJSDM", ISSN = "1044-789X", bibdate = "Fri Apr 24 15:18:27 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classification = "C6110J (Object-oriented programming); C6140D (High level languages); C6150N (Distributed systems software); C6180N (Natural language processing)", corpsource = "Digital Focus, USA", fjournal = "Dr. Dobb's Journal of Software Tools", keywords = "international application writing; Internet; Java; JDK 1.1; multilanguage development; multilanguage support; multinational development; natural languages; network-capable language; object-oriented languages; object-oriented programming; Web", treatment = "P Practical", } @Article{Berg:1997:JQHa, author = "C. Berg", title = "{Java Q and A}: How do {I} use {CORBA} from {Java}?", journal = j-DDJ, volume = "22", number = "1", pages = "100, 102, 103, 114", month = jan, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Cliff examines how you can use {Java} to implement a {CORBA} application that is representative of the way {CORBA} is likely to be used. In doing so, he revisits the chat application introduced in a previous column", acknowledgement = ack-nhfb, classcodes = "C6150N (Distributed systems software); C6110J (Object-oriented programming); C6110F (Formal methods)", fjournal = "Dr. Dobb's Journal of Software Tools", keywords = "client-server systems; Common Object Request Broker Architecture; computing networks; CORBA; distributed computing; heterogeneous; interoperable software component design; Java; modules; object-; object-oriented languages; object-oriented programming; open systems; oriented methods", treatment = "P Practical", } @Article{Berg:1997:JQHb, author = "Cliff Berg", title = "{Java Q and A}: How do {I} access a {SQL} database from an applet?", journal = j-DDJ, volume = "22", number = "2", pages = "103, 105, 113, 114", month = feb, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6150E (General utility programs); C6110J (Object-oriented programming); C6160D (Relational databases)", fjournal = "Dr. Dobb's Journal of Software Tools", keywords = "applets; application program interfaces; applications; browsers; business tool; complete computer programs; databases; drivers; enterprise data; Java; JDBC drivers; JDBC interface; object-oriented languages; ODBC; open database connectivity; open systems; portable database; relational; SQL; SQL database access; subroutines", treatment = "P Practical", } @Article{Berg:1997:JQHc, author = "C. Berg", title = "{Java Q and A}: How do {I} use {Java} remote method invocation from an applet?", journal = j-DDJ, volume = "22", number = "3", pages = "101--103", month = mar, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6140D (High level languages); C6150N (Distributed systems software)", fjournal = "Dr. Dobb's Journal of Software Tools", keywords = "API; applet; application program interface; application program interfaces; authoring languages; downloadable applet; host-based services; inter-applet cooperation; Internet; Java remote method invocation; language; legacy systems; network; network-capable; object-oriented; object-oriented languages; platform independence; programming; remote procedure calls; wide-area; World Wide Web", treatment = "P Practical", } @Article{Berg:1997:JQHd, author = "Cliff Berg", title = "{Java Q and A}: How Do {I} Create Persistent {Java} Objects?", journal = j-DDJ, volume = "22", number = "4", pages = "98--101", month = apr, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat May 31 09:25:48 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Persistence may well be the most important capability of a computing environment, and {Cliff} shows how you can take advantage of built-in support for object persistence in the {Java Developer's Kit 1.1}.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Berg:1997:JQHe, author = "Cliff Berg", title = "{Java Q and A}: How Can {I} Create a Push {Java} Channel?", journal = j-DDJ, volume = "22", number = "5", pages = "99, 101--103, 118, 122, 123", month = may, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Apr 02 07:24:30 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "{Cliff} uses {Marimba}'s {Castanet} software to implement {Internet Push} channels using {Java}.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Berg:1997:JQHf, author = "Cliff Berg", title = "{Java Q and A}: How Do {I} Create My Own Security Manager?", journal = j-DDJ, volume = "22", number = "6", pages = "115, 117--120, 132", month = jun, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Aug 12 09:10:51 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "See letter to the editor \cite{Boukanov:1997:JS} pointing out a flaw in the security manager.", abstract = "With its built-in security features. {Java} is among the most secure environments you can program in. This month, {Cliff} explains how to create a security manager for your applications.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Berg:1997:JQHg, author = "Cliff Berg", title = "{Java Q and A}: How Do {I} Write an International Application?", journal = j-DDJ, volume = "22", number = "7", pages = "105--106, 116", month = jul, year = "1997", CODEN = "DDJSDM", ISSN = "1044-789X", bibdate = "Fri Apr 24 15:18:27 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classification = "C6110J (Object-oriented programming); C6140D (High level languages); C6150N (Distributed systems software); C6180N (Natural language processing)", corpsource = "Digital Focus, USA", fjournal = "Dr. Dobb's Journal of Software Tools", keywords = "international application writing; Internet; Java; JDK 1.1; multilanguage development; multilanguage support; multinational development; natural languages; network-capable language; object-oriented languages; object-oriented programming; Web", treatment = "P Practical", } @Article{Berg:1997:JQHh, author = "Cliff Berg", title = "{Java Q and A}: How Do {I} Create a Signed Applet?", journal = j-DDJ, volume = "22", number = "8", pages = "109--111, 122", month = aug, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Jun 28 10:53:54 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Signed Java applets provide a means of verifying the authenticity of a program. Cliff describes how to create them using JAR files.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Berg:1997:JQHi, author = "Cliff Berg", title = "{Java Q and A}: How Do {I} Create a {JavaBean}?", journal = j-DDJ, volume = "22", number = "9", pages = "102--104, 114, 115", month = sep, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Mon Aug 11 12:53:44 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Berg:1997:JQHj, author = "Cliff Berg", title = "{Java Q and A}: How Do {I} Write a {Java} Servet?", journal = j-DDJ, volume = "22", number = "10", pages = "121--123, 130, 131", month = oct, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Nov 28 17:28:03 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Java servlets represent a new model for developing server-based applications. Cliff shows you how to write them.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Berg:1997:JQHk, author = "Cliff Berg", title = "{Java Q and A}: How Do {I} Print in {Java}?", journal = j-DDJ, volume = "22", number = "11", pages = "110--114", month = nov, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Nov 28 17:28:03 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "A longstanding problem with Java is that printing support has not been available. JDK 1.1 makes a first stab at solving this problem! and Cliff shows you how to make the most out of the printing facilities it provides.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Berg:1997:JQHl, author = "Cliff Berg", title = "{Java Q and A}: How do {I} Browse and Dynamically Invoke Remote Objects", journal = j-DDJ, volume = "22", number = "12", pages = "121--123", month = dec, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Nov 28 17:26:40 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Cliff demonstrates Java's dynamic class-loading features by creating a remote object browser that uses RMI.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Bergeron:1997:VDH, author = "Marcel Bergeron and Corinne Kempa and Yolande Perron", title = "Vocabulaire d'{Internet}: {HTML}, {Java}, {VRML}, cyberculture: terminologie des technologies de l'information: vocabulaire anglais-fran{\c{c}}ais", publisher = "Gouvernement du Qu{\'e}bec, Office de la langue fran{\c{c}}aise", address = "Qu{\'e}bec, PQ, Canada", edition = "Deuxi{\`e}me", pages = "140", year = "1997", ISBN = "2-551-17286-1", ISBN-13 = "978-2-551-17286-3", LCCN = "????", bibdate = "Fri Sep 11 08:29:11 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = "Cahiers de l'Office de la langue fran{\c{c}}aise Cahiers de l'Office de la langue fran{\c{c}}aise (Unnumbered)", acknowledgement = ack-nhfb, annote = "Comprend un index. Ed. originale: c1995. ``\ldots{} prepare a la Direction des services linguistiques de l'Office de la langue fran{\c{c}}aise''--Verso de p. de t. Comprend des ref. bibliogr.: p. [117]-126. Prepar{\'e} {\'a} la Direction des services linguistiques de l'Office de la langue fran{\c{c}}aise", keywords = "Anglais (Langue) -- Dictionnaires fran{\c{c}}ais; English language -- Dictionaries -- French; Francais (Langue) -- Dictionnaires anglais; French language -- Dictionaries -- English; Internet (Computer network) -- Dictionaries; Internet (Computer network) -- Dictionaries -- French; Internet -- Dictionnaires; Internet -- Dictionnaires anglais", } @Book{Bertacca-Guidi:1997:IJ, author = "Bertacca-Guidi", title = "Introduzione a {Java}", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, month = oct, year = "1997", ISBN = "88-8386-076-4", ISBN-13 = "978-88-8386-076-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://pallade.iol.it/cgi-bin/mercator2/mallurl/CESSECCOCEDRBILEDOMAa000eC/mcghill/index.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "35000 L.", acknowledgement = ack-nhfb, language = "Italian", } @Article{Bhatia:1997:WVP, author = "Dimple Bhatia and Vanco Burzevski and Maja Camuseva and Geoffrey Fox and Wojtek Furmanski and Girish Premchandran", title = "{WebFlow} --- a visual programming paradigm for {Web\slash Java} based coarse grain distributed computing", journal = j-CPE, volume = "9", number = "6", pages = "555--577", month = jun, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:32 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13877; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13877&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Bieber:1997:TSH, author = "M. Bieber and F. Vitali", title = "Toward support for hypermedia on the {World Wide Web}", journal = j-COMPUTER, volume = "30", number = "1", pages = "62--70", month = jan, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6130M (Multimedia); C6130D (Document processing techniques); C7210 (Information services and centres); C6180G (Graphical user interfaces); C6110B (Software engineering techniques)", corpsource = "New Jersey Inst. of Technol., Newark, NJ, USA", fjournal = "Computer", keywords = "application; application development; application functionality; applications; departments; graphical user interface; graphical user interfaces; hypermedia; hypermedia navigation; hypermedia support; infrastructure; interactive; interactive systems; Internet; Java; MIS; software engineering; supplemental links; World Wide Web", treatment = "P Practical", } @Book{Bigus:1997:CIA, author = "Joseph Bigus and Jennifer Bigus", title = "Constructing Intelligent Agents With {Java}: {A} Programmer's Guide to Smarter Applications", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxxv + 379", month = dec, year = "1997", ISBN = "0-471-19135-3", ISBN-13 = "978-0-471-19135-3", LCCN = "QA76.76.I58B563 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$45", URL = "http://www.wiley.com/compbooks/catalog/19135-3.htm", acknowledgement = ack-nhfb, url-publisher = "http://www.wiley.com/", } @Article{Bik:1997:AEI, author = "Aart J. C. Bik and Dennis B. Gannon", title = "Automatically exploiting implicit parallelism in {Java}", journal = j-CPE, volume = "9", number = "6", pages = "579--619", month = jun, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:32 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13878; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13878&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Bik:1997:JPJ, author = "Aart J. C. Bik and Juan E. Villacis and Dennis B. Gannon", title = "javar: {A} prototype {Java} restructuring compiler", journal = j-CPE, volume = "9", number = "11", pages = "1181--1191", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13819; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13819&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, classification = "C6110J (Object-oriented programming); C6110P (Parallel programming); C6150C (Compilers, interpreters and other processors)", conflocation = "Las Vegas, NV, USA; 21 June 1997", conftitle = "Java for Computational Science and Engineering --- Simulation and Modeling II", corpsource = "Dept. of Comput. Sci., Indiana Univ., Bloomington, IN, USA", fjournal = "Concurrency, practice and experience", keywords = "annotations; explicit parallelism; functionality; implicit parallelism; Java program parallelization; Java restructuring compiler; javar; multi-threading; object-oriented languages; parallelising compilers; prototype; semantic analysis; software prototyping", pubcountry = "UK", sponsororg = "ACM", treatment = "P Practical", } @Article{Bik:1997:NNL, author = "Aart J. C. Bik and Dennis B. Gannon", title = "A note on native level 1 {BLAS} in {Java}", journal = j-CPE, volume = "9", number = "11", pages = "1091--1099", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13826; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13826&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @InProceedings{Bingler:1997:DJU, author = "R. Bingler", title = "Developing {Java}-based {Unicode} Applications: {A} Case Study", crossref = "UC:1997:SDI", pages = "A12--??", year = "1997", bibdate = "Fri Apr 24 09:14:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "internet; software development; Unicode", } @Book{Bishop:1997:JGP, author = "Judy (Judith) M. Bishop", title = "{Java} Gently: Programming Principles Explained", publisher = pub-AW, address = pub-AW:adr, pages = "xxiii + 391", year = "1997", ISBN = "0-201-59399-8 (softcover)", ISBN-13 = "978-0-201-59399-0 (softcover)", LCCN = "QA76.73.J38B58 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$36.95", URL = "http://cseng.aw.com/bookdetail.qry?ISBN=0-201-59399-8&ptype=0", acknowledgement = ack-nhfb, } @Book{Bond:1997:JP, author = "Jill Bond and Bill Berick", title = "{JavaScript f{\"u}r Profis}", publisher = pub-ACADEMIC-SERVICE-VERLAG, address = pub-ACADEMIC-SERVICE-VERLAG:adr, pages = "????", year = "1997", ISBN = "3-932073-11-8 (??invalid ISBN??)", ISBN-13 = "978-3-932073-11-3 (??invalid ISBN??)", LCCN = "????", bibdate = "Thu Aug 14 17:40:22 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "85 DM", URL = "????", acknowledgement = ack-nhfb, language = "German", } @Book{Boone:1997:JCP, author = "Barry Boone", title = "{Java} Certification for Programmers and Developers", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xxiv + 744", month = jul, year = "1997", ISBN = "0-07-913657-5 (hardcover)", ISBN-13 = "978-0-07-913657-2 (hardcover)", LCCN = "QA76.3 .B66 1997", bibdate = "Tue May 16 06:11:13 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", note = "Includes CD-ROM.", price = "US\$65", URL = "http://mcgraw-hill.inforonics.com/cgi/getarec?mgh31641%comp", } @Article{Boukanov:1997:JS, author = "Igor Boukanov", title = "{Java} Security", journal = j-DDJ, volume = "22", number = "9", pages = "10--10", month = sep, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Mon Aug 11 12:53:44 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Points out a flaw in the security manager described in \cite{Berg:1997:JQHf}.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Boyland:1997:PMI, author = "John Boyland and Giuseppe Castagna", title = "Parasitic Methods: An Implementation of Multi-Methods for {Java}", journal = j-SIGPLAN, volume = "32", number = "10", pages = "66--76", month = oct, year = "1997", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:39 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Bramley:1997:TNR, author = "Randall Bramley", title = "Technology News \& Reviews: {Chemkin} software; {OpenMP Fortran Standard}; {ODE} Toolbox for {Matlab}; {Java} products; {Scientific WorkPlace 3.0}", journal = j-IEEE-COMPUT-SCI-ENG, volume = "4", number = "4", pages = "75--78", month = oct # "\slash " # dec, year = "1997", CODEN = "ISCEE4", ISSN = "1070-9924", ISSN-L = "1070-9924", bibdate = "Sat Jan 9 08:57:23 MST 1999", bibsource = "http://www.computer.org/cse/cs1998; http://www.math.utah.edu/pub/tex/bib/fortran3.bib; http://www.math.utah.edu/pub/tex/bib/ieeecomputscieng.bib; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/multithreading.bib", URL = "http://dlib.computer.org/cs/books/cs1997/pdf/c4075.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Computational Science \& Engineering", } @Article{Bramley:1997:TNRb, author = "Randall Bramley", title = "Technology News \& Reviews: {Chemkin} software; {OpenMP Fortran Standard}; {ODE} Toolbox for {Matlab}; {Java} products; {Scientific WorkPlace 3.0}", journal = j-IEEE-COMPUT-SCI-ENG, volume = "4", number = "4", pages = "75--78", month = oct # "\slash " # dec, year = "1997", CODEN = "ISCEE4", ISSN = "1070-9924", ISSN-L = "1070-9924", bibdate = "Sat Jan 9 08:57:23 MST 1999", bibsource = "http://www.computer.org/cse/cs1998; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/cs/books/cs1997/pdf/c4075.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Computational Science \& Engineering", } @Article{Breuel:1997:LEJ, author = "Thomas M. Breuel and Ted Lewis", title = "Letter to the Editor: {Java} as Universal Language", journal = j-COMPUTER, volume = "30", number = "4", pages = "6--7", month = apr, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Fri Apr 18 08:20:13 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computer", } @Book{Brookshier:1997:JDR, author = "Dan Brookshier", title = "{JavaBeans} Developer's Reference", publisher = pub-NRP, address = pub-NRP:adr, pages = "xlvii + 733", month = mar, year = "1997", ISBN = "1-56205-716-2", ISBN-13 = "978-1-56205-716-9", LCCN = "QA76.73.J38B76 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/newriders/; http://www.amazon.com/exec/obidos/ISBN=1562057162/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15620/bud/1562057162.html", acknowledgement = ack-nhfb, dimensions = "9.09in x 7.38in x 2.04in", xxtitle = "{Java Beans} Developer's Reference", } @InProceedings{Brosgol:1997:COF, author = "B. M. Brosgol", title = "A Comparison of the Object-Oriented Features of {Ada 95} and {Java[TM]}", crossref = "ACM:1997:PTA", pages = "213--230", year = "1997", bibdate = "Tue Apr 20 13:43:51 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Brown:1997:JBC, author = "Peter Brown", title = "{Java} 16-bit cards: {Sun}, {Siemens} in {Java}\slash {Smart Card} Pact", journal = j-ENEWS, volume = "43", number = "2178", pages = "14--14", day = "28", month = jul, year = "1997", CODEN = "ELNEAU", ISSN = "0013-4937, 1061-6624", bibdate = "Mon Aug 11 10:11:15 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", fjournal = "Electronic News", } @Article{Brown:1997:JCA, author = "Marc H. Brown and Roope Raisamo", title = "{JCAT}: {Collaborative} active textbooks using {Java}", journal = j-COMP-NET-ISDN, volume = "29", number = "14", pages = "1577--1586", day = "15", month = oct, year = "1997", CODEN = "CNISE9", ISSN = "0169-7552", ISSN-L = "0169-7552", bibdate = "Fri Sep 24 20:21:56 MDT 1999", bibsource = "http://www.elsevier.com/cgi-bin/cas/tree/store/cna/cas_free/browse/browse.cgi?year=1997&volume=29&issue=14; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.elsevier.com/cas/tree/store/comnet/sub/1997/29/14/1765.pdf", acknowledgement = ack-nhfb, fjournal = "Computer Networks and ISDN Systems", } @Article{Bruckner:1997:PRP, author = "Jared Bruckner", title = "Product Review: {Penumbra Software}'s {Mojo}: {A} great way to create {Java} applets without writing code", journal = j-WEB-APPS, volume = "1", number = "1", pages = "66--68", month = jan # "\slash " # feb, year = "1997", ISSN = "1090-2287", bibdate = "Wed Jan 15 15:10:55 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Web Apps magazine", } @Book{Buchanan:1997:SDE, author = "William Buchanan", title = "Software development for engineers with {C}, {Pascal}, {C++}, Assembly Language, {Visual Basic}, {HTML}, {JavaScript}, and {Java}", publisher = "Arnold", address = "London, UK", pages = "xiv + 674", year = "1997", ISBN = "0-340-70014-9 (paperback)", ISBN-13 = "978-0-340-70014-3 (paperback)", LCCN = "????", bibdate = "Fri Sep 11 08:29:11 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "Computer software -- Development; Engineering -- Data processing; Programming languages (Electronic computers)", } @Article{Budimlic:1997:OJT, author = "Zoran Budimlic and Ken Kennedy", title = "Optimizing {Java}: theory and practice", journal = j-CPE, volume = "9", number = "6", pages = "445--463", month = jun, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:32 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13870; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13870&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Buhrmann:1997:JCB, author = "Peter Buhrmann and Thomas Kretzberg and Martin Pein", title = "{Java 1.1: ne Einf{\"u}hrung in die Programmierung; mit Online-Aktualisierung; h{\"o}ren, sehen, verstehen; inkl. lizenzierter Vollversion}", publisher = pub-AW, address = pub-AW:adr, edition = "Third", pages = "16", month = sep, year = "1997", ISBN = "3-8273-1236-1", ISBN-13 = "978-3-8273-1236-5", LCCN = "????", bibdate = "Mon Mar 02 19:11:27 1998", bibsource = "http://www.addison-wesley.de/katalog; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "89,90 DM", URL = "http://www.addison-wesley.de/katalog/item.ppml?id=00207; http://www.addison-wesley.de/katalog/item.ppml?textexpr=Java&id=00207", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.addison-wesley.de/", xxtitle-1 = "{Java 1.1: Computer Based Training auf CD-ROM: Eine Einf{\"u}hrung in die Programmierung}", xxtitle-2 = "{Java 1.1: Computer Based Training: Eine Einf{\"u}hrung in die Programmierung}", } @Book{Buhrmann:1997:JII, author = "Peter Buhrmann and Thomas Kretzberg", title = "{Java: interaktiv im WorldWideWeb; [Computer based training; inklusive Netscape 2.0]}", publisher = pub-AW, address = pub-AW:adr, pages = "72", year = "1997", ISBN = "3-8273-1027-X (??invalid ISBN??)", ISBN-13 = "978-3-8273-1027-9 (??invalid ISBN??)", LCCN = "????", bibdate = "Mon Jun 22 09:02:38 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "79,90 DM", URL = "http://www.addison-wesley.de/", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.addison-wesley.de/", } @Book{Burd:1997:JPD, author = "Barry A. Burd", title = "{JBuilder} For Dummies", publisher = pub-IDG, address = pub-IDG:adr, pages = "353", month = oct, year = "1997", ISBN = "0-7645-0078-3", ISBN-13 = "978-0-7645-0078-7", LCCN = "QA76.73.J38B85 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$24.99", URL = "http://www.dummies.com/cgi/fill_out_template.pl?book:0-7645-0078-3:book-Dummies+Press::u183717", acknowledgement = ack-nhfb, url-publisher = "http://www.idgbooks.com/", } @Book{Buss:1997:PJH, author = "Frank Bu{\ss} and Stefan Schl{\"o}pke", title = "Programmation {Java} En 15 Heures", publisher = pub-EDITION-MICRO-APPLICATIONS, address = pub-EDITION-MICRO-APPLICATIONS:adr, pages = "????", year = "1997", ISBN = "2-7429-0749-1", ISBN-13 = "978-2-7429-0749-6", LCCN = "????", bibdate = "Fri Nov 01 05:23:53 2002", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.microapp.com/", note = "Includes CD-ROM.", price = "139 FF", URL = "http://www.microapp.com/", acknowledgement = ack-nhfb, language = "French", } @Book{Buss:1997:PTJ, author = "Frank Bu{\ss} and Stefan Schl{\"o}pke", title = "{Programmier Training Java}", publisher = pub-DATA-BECKER, address = pub-DATA-BECKER:adr, pages = "467", year = "1997", ISBN = "3-8158-1303-4", ISBN-13 = "978-3-8158-1303-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.data-becker.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "49 DM", URL = "http://www.data-becker.de/buecher/buchinfos/1303.htm; http://www.data-becker.de/buecher/buecher.htm#softwaretr htmljava", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.data-becker.de/", } @InProceedings{Butrico:1997:GRM, author = "Maria A. Butrico and Henry Chang and Anthony Cocchi and Norman H. Cohen and Dennis G. Shea and Stephen E. Smith", title = "{Gold Rush}: Mobile Transaction Middleware with {Java}-Object Replication", crossref = "USENIX:1997:TUC", pages = "91--101", year = "1997", bibdate = "Sun Oct 12 16:49:23 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Book{Cadenhead:1997:TYJ, author = "Rogers Cadenhead", title = "Teach Yourself {Java} 1.1 Programming in 24 Hours", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xviii + 384", year = "1997", ISBN = "1-57521-270-6", ISBN-13 = "978-1-57521-270-8", LCCN = "QA76.73.J38 C33 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$25", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575212706.html", acknowledgement = ack-nhfb, } @Book{Campione:1997:JTO, author = "Mary Campione and Kathy Walrath", title = "{Das Java Tutorial: Objektorientierte Programmierung f{\"u}r das Internet}", publisher = pub-AW, address = pub-AW:adr, pages = "784", year = "1997", ISBN = "3-8273-1050-4", ISBN-13 = "978-3-8273-1050-7", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.addison-wesley.de/katalog; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "German translation of \cite{Campione:1996:JTO}.", price = "99,90 DM", URL = "http://www.addison-wesley.de/katalog/item.ppml?textexpr=Java&id=00125", acknowledgement = ack-nhfb, language = "German", url-author = "http://cseng.aw.com/authordetail.qry?AuthorID=656", url-publisher = "http://www.addison-wesley.de/", } @Book{Cardoso:1997:JGR, author = "Carlos Cardoso", title = "{JavaScript}: Guia de Refer{\'e}ncia Inteligente", publisher = "Axcel Books do Brasil Editora", address = "Rua da Gl{\'o}ria, 344/10 And. - Ed. Gl{\'o}ria Trade Center Gl{\'o}ria - Rio de Janeiro/RJ, Brasil", pages = "????", year = "1997", ISBN = "85-7323-016-9 (??Invalid checksum??)", ISBN-13 = "978-85-7323-016-1 (??Invalid checksum??)", LCCN = "????", bibdate = "Thu Aug 14 12:44:14 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/portuguese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "R\$ 35", URL = "http://www.axcelbooks.com.br/cgi-bin/cgiwrap/axcel/pes-tit.pl?livro=136; http://www.visualnet.com.br/shop/ciencia_moderna/book23.htm", acknowledgement = ack-nhfb, language = "Portuguese", } @Article{Carpenter:1997:EHJ, author = "Bryan Carpenter and Yuh-Jye Chang and Geoffrey Fox and Donald Leskiw and Xiaoming Li", title = "Experiments with {HP Java}", journal = j-CPE, volume = "9", number = "6", pages = "633--648", month = jun, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:32 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13880; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13880&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Cartwright:1997:SJ, author = "D. Cartwright", title = "{Sun JavaStation}", journal = j-LAN, volume = "5", number = "2", pages = "27--28", month = feb, year = "1997", CODEN = "LMAGEP", ISSN = "0968-6320", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D5010D (Selection guides); D5020 (Computer networks and intercomputer communications); D5010G (Terminals)", countrypub = "UK", fjournal = "LAN: the network solutions magazine", keywords = "100 MHz; 32 MB; buyer's guides; JavaOS; local area networks; microcomputers; MicroSPARC II CPU; network; network computer; operating system; operating systems; SPARC-based machine; Sun JavaStation; workstations", treatment = "P Practical; R Product Review", } @Article{Casanova:1997:JAN, author = "Henri Casanova and Jack Dongarra and David M. Doolin", title = "{Java} access to numerical libraries", journal = j-CPE, volume = "9", number = "11", pages = "1279--1291", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13823; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13823&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @InProceedings{Casanova:1997:UJN, author = "H. Casanova and J. Dongarra", title = "The Use of {Java} in the {NetSolve} Project", crossref = "Sydow:1997:IWC", volume = "4", pages = "791--796", year = "1997", bibdate = "Thu Sep 16 09:48:36 MDT 1999", bibsource = "http://www.math.utah.edu/pub/bibnet/authors/d/dongarra-jack-j.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.netlib.org/utk/people/JackDongarra/PAPERS/netsolve-imacs897.ps; http://www.netlib.org/utk/people/JackDongarra/pdf/netsolve-imacs897.pdf", acknowledgement = ack-nhfb, } @Book{Cassady-Dorion:1997:ISJ, author = "Luke Cassady-Dorion and Matthew Brumbaugh and Shirani Maheshwari", title = "Industrial Strength {Java}", publisher = pub-NRP, address = pub-NRP:adr, pages = "842", day = "1", month = feb, year = "1997", ISBN = "1-56205-634-4", ISBN-13 = "978-1-56205-634-6", LCCN = "QA76.73.J38I53 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/newriders/; http://www.amazon.com/exec/obidos/ISBN=1562056344/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15620/bud/1562056344.html", acknowledgement = ack-nhfb, dimensions = "9.09in x 7.35in x 2.13in", keywords = "Java (computer program language); technology -- computers and computer technology", } @InProceedings{Cavanaugh:1997:LDN, author = "Kevin Cavanaugh", title = "{Lotus}, {Domino}, {Notes} and {Java}", crossref = "UC:1997:ESI", pages = "??--??", year = "1997", bibdate = "Thu Aug 20 21:00:11 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc10/program.html", acknowledgement = ack-nhfb, } @Book{CBT:1997:AJC, author = "{CBT Systems}", title = "Anatomy of {Java} Classes", publisher = pub-CBT-SYSTEMS, address = pub-CBT-SYSTEMS:adr, month = jun, year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.cbtsys.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$200", URL = "http://www.cbtsys.com/cbt/curicula/courses/jav1105/jav1105.htm", acknowledgement = ack-nhfb, } @Book{CBT:1997:AWA, author = "{CBT Systems}", title = "Advanced {Web} Authoring: {Java}", publisher = pub-CBT-SYSTEMS, address = pub-CBT-SYSTEMS:adr, month = jun, year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.cbtsys.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$200", URL = "http://www.clbooks.com/sqlnut/SP/search/gtsumt?isbn=IT00215236", acknowledgement = ack-nhfb, } @Book{CBT:1997:IJL, author = "{CBT Systems}", title = "Introduction to the {Java} Language", publisher = pub-CBT-SYSTEMS, address = pub-CBT-SYSTEMS:adr, month = jun, year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.cbtsys.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$200", URL = "http://www.cbtsys.com/cbt/curicula/courses/java03/java03.htm", acknowledgement = ack-nhfb, } @Book{CBT:1997:JAI, author = "{CBT Systems}", title = "{Java} Animation and Images", publisher = pub-CBT-SYSTEMS, address = pub-CBT-SYSTEMS:adr, month = jun, year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.cbtsys.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$200", URL = "http://www.cbtsys.com/cbt/curicula/courses/jav1112/jav1112.htm", acknowledgement = ack-nhfb, } @Book{CBT:1997:JDO, author = "{CBT Systems}", title = "{Java} and Distributed Objects", publisher = pub-CBT-SYSTEMS, address = pub-CBT-SYSTEMS:adr, month = jun, year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.cbtsys.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$200", URL = "http://www.cbtsys.com/cbt/curicula/courses/jav1111/jav1111.htm", acknowledgement = ack-nhfb, } @Book{CBT:1997:OJ, author = "{CBT Systems}", title = "An Overview of {Java}", publisher = pub-CBT-SYSTEMS, address = pub-CBT-SYSTEMS:adr, month = jun, year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.cbtsys.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$200", URL = "http://www.cbtsys.com/cbt/curicula/courses/java01/java01a.htm", acknowledgement = ack-nhfb, } @Book{CBT:1997:OOP, author = "{CBT Systems}", title = "Object-Oriented Principles and {Java}", publisher = pub-CBT-SYSTEMS, address = pub-CBT-SYSTEMS:adr, month = jun, year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.cbtsys.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$200", URL = "http://www.cbtsys.com/cbt/curicula/courses/java04/java04.htm", acknowledgement = ack-nhfb, } @Article{Cenciarelli:1997:SMJ, author = "P. Cenciarelli and A. Knapp and B. Reus and M. Wirsing", title = "From sequential to multi-threaded {Java}: An event-based operational semantics", journal = j-LECT-NOTES-COMP-SCI, volume = "1349", pages = "75--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Cenciarelli:1997:SMT, author = "P. Cenciarelli and A. Knapp and B. Reus and M. Wirsing", title = "From sequential to multi-threaded {Java}: An event-based operational semantics", journal = j-LECT-NOTES-COMP-SCI, volume = "1349", pages = "75--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Chan:1997:JCLa, author = "Patrick Chan and Rosanna Lee", title = "The {Java} Class Libraries: An Annotated Reference", publisher = pub-AW, address = pub-AW:adr, pages = "xxvi + 1660", month = jul, year = "1997", ISBN = "0-201-63458-9", ISBN-13 = "978-0-201-63458-7", LCCN = "QA76.73.J38C47 1997", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0201634589/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$52.67", URL = "http://www.aw.com", acknowledgement = ack-nhfb, dimensions = "9.56in x 7.75in x 2.17in", } @Book{Chan:1997:JCLc, author = "Patrick Chan and Rosanna Lee", title = "The {Java} Class Libraries", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, month = jul, year = "1997", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.gotop.com.tw; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Chinese translation by Thi Shiang Workshop.", price = "????", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Chan:1997:JPT, author = "Mark C. Chan and Steven W. Griffith and Anthony F. Iasi", title = "1001 {Java} Programmer's Tips", publisher = pub-JAMSA, address = pub-JAMSA:adr, pages = "various", month = jan, year = "1997", ISBN = "1-884133-32-0", ISBN-13 = "978-1-884133-32-9", LCCN = "QA76.73.J38C46 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1884133320/wholesaleproductA/; http://www.jamsa.com/jp.htm; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.95", URL = "http://www.jamsa.com/catalog/1001java/1001java.htm", acknowledgement = ack-nhfb, dimensions = "10.39in x 8.53in x 1.69in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Article{Chang:1997:TAS, author = "Rong-Guey Chang and Cheng-Wei Chen and Tyng-Ruey Chuang and Jenq Kuen Lee", title = "Towards automatic support of parallel sparse computation in {Java} with continuous compilation", journal = j-CPE, volume = "9", number = "11", pages = "1101--1111", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13827; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13827&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Chappell:1997:ADI, author = "David Chappell and David S. Linthicum", title = "{ActiveX} Demystified: It's invasive. It's ubiquitous. But what, exactly, is {ActiveX}?", journal = j-BYTE, volume = "22", number = "9", pages = "56--62, 64", month = sep, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Aug 23 07:11:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Contains a comparison of Java and ActiveX.", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Charlesworth:1997:OJT, author = "Susan Charlesworth", title = "{Open JBuilder in 21 Tagen}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, pages = "????", month = nov, year = "1997", ISBN = "3-87791-895-6", ISBN-13 = "978-3-87791-895-1", LCCN = "????", bibdate = "Thu Aug 14 17:40:22 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "89,95 DM", URL = "http://www.mut.ch/html/buchinfo.htx?&x_pp=qvhiJEcdJrTbphZH&x_az=10&x_pk=Direkt&x_pa=&x_pr=Fr&x_bestell=91895&x_stichwort=jbuilder&x_sprache=D&x_start=1&x_gefunden=&x_query=&x_lastpage=buchfund&x_soft=&x_suchewo=S; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm; http://www.mut.com/", acknowledgement = ack-nhfb, language = "German", xxauthor = "Michelle M. Manning", xxtitle-1 = "{Borland JBuilder in 21 Tagen}", xxtitle-2 = "{Latt{\'e} in 21 Tagen}", } @Book{Chauvet:1997:CAJ, author = "Jean-Marie Chauvet", title = "{CORBA}, {ActiveX} et {JavaBeans}", publisher = pub-EYROLLES, address = pub-EYROLLES:adr, month = mar, year = "1997", ISBN = "2-212-08950-3", ISBN-13 = "978-2-212-08950-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.estp.fr/eyrolles/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "173 FF", URL = "http://www.lmet.fr/cgi-bin/Nouveaute/en/n/2-212-08950-3", acknowledgement = ack-nhfb, language = "French", url-publisher = "http://www.estp.fr/eyrolles/", } @Article{Chauvet:1997:NCO, author = "Jean-Marie Chauvet", title = "A New Convergence of Object Models: {Java} is the likely peacemaker to bring the warring {OT} camps into accord", journal = j-OBJECT-MAG, volume = "7", number = "2", pages = "46--49", month = apr, year = "1997", CODEN = "OBMAFO", ISSN = "1055-3614", bibdate = "Thu Apr 24 08:01:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Object Magazine", } @Article{Chauvet:1997:OMJ, author = "Jean-Marie Chauvet and Marc Lerman", title = "Object Models and {Java}: Mixing and matching disparate object models", journal = j-DDJ, volume = "22", number = "12", pages = "20--22, 243, 99, 100", month = dec, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Nov 28 17:26:40 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Although distributed objects are rapidly becoming the foundation for many applications, differences between object models continue to be a problem. Our authors show how you can use Java to glue together Microsoft's ActiveX controls and the OMG's CORBA objects.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Chen:1997:JRD, author = "Marina Chen and James Cowie", title = "{Java}'s role in distributed collaboration", journal = j-CPE, volume = "9", number = "6", pages = "509--519", month = jun, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:32 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13874; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13874&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Chen:1997:WBF, author = "Zhikai Chen and Kurt Maly and Piyush Mehrotra and Praveen K. Vangala and Mohammad Zubair", title = "{Web}-based framework for distributed computing", journal = j-CPE, volume = "9", number = "11", pages = "1175--1180", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13839; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13839&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Cherlin:1997:BLB, author = "Edward Cherlin", title = "Breaking the Language Barrier: {Java}, with no legacy code, is pushing the pace of adoption of {Unicode}, the only global character set", journal = j-UNIX-DEVELOPER, volume = "1", number = "1", pages = "56--59", month = jan # "\slash " # feb, year = "1997", ISSN = "1090-2279", bibdate = "Thu Jan 16 17:23:49 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "UNIX Developer", } @Article{Choi:1997:DIC, author = "T. Choi and E. Son and K.-Y. Yu", title = "{DAVIC} and The {Internet} Convergence: {A} Convergence Architecture Using {WWW}, {JAVA}, and {CORBA}", journal = j-LECT-NOTES-COMP-SCI, volume = "1238", pages = "77--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Fri Aug 22 11:59:49 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Choi:1997:JA, author = "Jeehwan Choi", title = "{Java} Applets", publisher = "Power Book", address = "??, Korea", pages = "????", year = "1997", ISBN = "89-8160-010-4 (??Invalid checksum??)", ISBN-13 = "978-89-8160-010-5 (??Invalid checksum??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/korean.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "10,000 won", URL = "????", acknowledgement = ack-nhfb, language = "Korean", } @Book{Chorafas:1997:VPT, author = "Dimitris N. Chorafas", title = "Visual Programming Technology: Covers {VRML}, {Java}", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xiv + 353", year = "1997", ISBN = "0-07-011685-7 (softcover)", ISBN-13 = "978-0-07-011685-6 (softcover)", LCCN = "QA76.65.C47 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$49.00", acknowledgement = ack-nhfb, } @Article{Christiansen:1997:JIB, author = "Bernd O. Christiansen and Peter Cappello and Mihai F. Ionescu and Michael O. Neary and Klaus E. Schauser and Daniel Wu", title = "{Javelin}: {Internet}-based parallel computing using {Java}", journal = j-CPE, volume = "9", number = "11", pages = "1139--1160", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13833; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13833&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Ciancarini:1997:JCC, author = "P. Ciancarini and D. Rossi", title = "{Jada} --- Coordination and Communication for {Java} Agents", journal = j-LECT-NOTES-COMP-SCI, volume = "1222", pages = "213--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Fri Aug 22 11:59:49 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Cierniak:1997:JTO, author = "Micha{\l} Cierniak and Wei Li", title = "Just-in-time optimizations for high-performance {Java} programs", journal = j-CPE, volume = "9", number = "11", pages = "1063--1073", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13828; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13828&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Cierniak:1997:OJB, author = "Micha{\l} Cierniak and Wei Li", title = "Optimizing {Java} bytecodes", journal = j-CPE, volume = "9", number = "6", pages = "427--444", month = jun, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:32 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13869; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13869&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Cierniak:1997:PBP, author = "Micha{\l} Cierniak and Suresh Srinivas", title = "A portable browser for performance programming", journal = j-CPE, volume = "9", number = "11", pages = "1243--1248", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13815; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13815&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @MastersThesis{Cladingboel:1997:RJV, author = "Christopher Cladingboel", title = "Real {Java Virtual Machines}: Hardware Compilation and the {Java Virtual Machine}", type = "Thesis ({M.Sc.})", school = "Board of the Faculty of Mathematical Sciences, Oxford University", address = "Oxford, UK", pages = "107", year = "1997", bibdate = "Mon Apr 10 11:07:23 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Clark:1997:WJH, author = "Shelby Clark", title = "Watch Out, the {Java's} Hot", journal = j-CONTRACT-PROFESSIONAL, volume = "1", number = "4", pages = "31, 32, 34", month = mar # "\slash " # apr, year = "1997", ISSN = "1089-5825", bibdate = "Wed Apr 02 07:17:39 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Clarke:1997:BRS, author = "G. Miller Clarke", title = "Book Review: Seven {Java} Books --- {A} Whirlwind Tour", journal = j-CCCUJ, volume = "15", number = "5", pages = "37--39", month = may, year = "1997", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Thu Jun 26 14:46:19 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Clausen:1997:JBO, author = "Lars R. Clausen", title = "A {Java} bytecode optimizer using side-effect analysis", journal = j-CPE, volume = "9", number = "11", pages = "1031--1045", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13838; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13838&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Coad:1997:JDB, author = "Peter Coad and Mark Mayfield", title = "{Java} Design: Building Better Apps and Applets", publisher = pub-YOURDON, address = pub-YOURDON:adr, pages = "xiii + 238", day = "1", month = jan, year = "1997", ISBN = "0-13-271149-4", ISBN-13 = "978-0-13-271149-4", LCCN = "QA76.73.J38C65 1996", bibdate = "Fri Apr 30 10:03:22 1999", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0132711494/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "See \cite{Wilson:1997:PBA}.", price = "US\$39.95", series = "Yourdon Press Computing Series", acknowledgement = ack-nhfb, dimensions = "9.23in x 7.02in x 0.76in", paperback = "yes", } @Book{Coad:1997:JDBa, author = "Peter Coad and Mark Mayfield", title = "{Java} Design: Building Better Apps and Applets", publisher = pub-YOURDON, address = pub-YOURDON:adr, pages = "xiii + 238", year = "1997", ISBN = "0-13-271149-4", ISBN-13 = "978-0-13-271149-4", LCCN = "QA76.73.J38C65 1996", bibdate = "Tue May 04 12:56:34 1999", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0132711494/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", note = "See reviews in \cite{Jenkins:1997:AAH,Wilson:1997:PBA}.", price = "US\$39.95", series = "Yourdon Press Computing Series", URL = "http://www.oi.com/jd-book.htm", acknowledgement = ack-nhfb, dimensions = "9.23in x 7.02in x 0.76in", paperback = "yes", } @Book{Coad:1997:JDBb, author = "Peter Coad and Mark Mayfield", title = "{Java} Design: Building Better Apps and Applets", publisher = pub-PH, address = pub-PH:adr, month = nov, year = "1997", ISBN = "4-89471-014-5", ISBN-13 = "978-4-89471-014-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mmjp.or.jp/prentice/", price = "3,000 yen", URL = "http://www.oi.com/jd-book.htm", acknowledgement = ack-nhfb, language = "Japanese", } @Article{Coad:1997:JDU, author = "P. Coad and M. Mayfield", title = "{Java-inspired} design: use composition, rather than inheritance", journal = j-AM-PROG, volume = "10", number = "1", pages = "22--31", month = jan, year = "1997", CODEN = "AMPRFD", ISSN = "1048-5600", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6140D (High level languages); C6120 (File organisation)", corpsource = "Object Int. Inc., Raleigh, NC, USA", fjournal = "American Programmer", keywords = "composition; inheritance; Java inspired design; object; object oriented design; object-oriented; object-oriented languages; oriented development; oriented language; programming", treatment = "P Practical", } @Book{Coffee:1997:HPJ, author = "Peter Coffee and others", title = "How to Program {JavaBeans}", publisher = pub-ZD, address = pub-ZD:adr, pages = "xiii + 367", year = "1997", ISBN = "1-56276-521-3", ISBN-13 = "978-1-56276-521-7", LCCN = "QA76.73.J38H69 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/zdpress/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "79,00 DM; US\$40", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15627/bud/1562765213.html; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, xxauthor = "Michael Morrison and others", xxnote = "Check author?? Looks like a pseudonym", } @Book{Cogswell:1997:JDP, author = "Jeff Cogswell", title = "{Java} Database Programming with {JBuilder}", publisher = pub-MIS # " and " # pub-MT, address = pub-MIS:adr # " and " # pub-MT:adr, pages = "416", year = "1997", ISBN = "1-55851-512-7", ISBN-13 = "978-1-55851-512-3", LCCN = "????", bibdate = "Mon Jun 22 16:32:57 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1558515127/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mispress.com/", price = "US\$39.95", acknowledgement = ack-nhfb, paperback = "yes", xxtitle = "{Java} Database Development With {JBuilder}", } @Book{Cohen:1997:CPJ, author = "I. Cohen", title = "{CGI\slash Perl} y {JavaScript}", publisher = "Ediciones Gesti{\'o}n 2000, S.A.", address = "????", pages = "????", year = "1997", ISBN = "84-8088-143-7", ISBN-13 = "978-84-8088-143-2", LCCN = "????", bibdate = "Thu Aug 14 12:31:58 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/spanish.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, language = "Spanish", } @TechReport{Cohen:1997:DJV, author = "R. Cohen", title = "The Defensive {Java Virtual Machine} Specification", type = "Technical Report", institution = "Computational Logic Inc.", address = "Austin, TX, USA", year = "1997", bibdate = "Thu Dec 01 07:17:25 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Cohen:1997:GSF, author = "Sarah Cohen", title = "{Gemplus}, {Schlumberger} Form {Java Card Forum}", journal = j-ENEWS, volume = "43", number = "2158", pages = "26--26", day = "10", month = mar, year = "1997", CODEN = "ELNEAU", ISSN = "0013-4937, 1061-6624", bibdate = "Thu Mar 13 07:46:17 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Electronic News", } @Book{Cohen:1997:JC, author = "Yosef Cohen", title = "{Javascript} Cookbook", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "608", day = "1", month = apr, year = "1997", ISBN = "0-471-18145-5", ISBN-13 = "978-0-471-18145-3", LCCN = "QA76.73.J39C64 1997", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0471181455/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.95", acknowledgement = ack-nhfb, dimensions = "9.19in x 7.53in x 1.57in", keywords = "JavaScript (Computer program language)", paperback = "yes", } @Book{Cohn:1997:TYV, author = "Mike Cohn", title = "Teach Yourself {Visual Caf{\'e}} 2 in 21 Days", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxx + 849", year = "1997", ISBN = "1-57521-303-6", ISBN-13 = "978-1-57521-303-3", LCCN = "QA76.73.J38C655 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575213036.html", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/", } @Book{Cohn:1997:WPVa, author = "Mike Cohn and Jay Butten and James Jory", title = "{Web} Programming with {Visual J++}", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxiii + 652", year = "1997", ISBN = "1-57521-174-2", ISBN-13 = "978-1-57521-174-9", LCCN = "QA76.625 .C64 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575211742.html", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/", } @Book{Cohn:1997:WPVb, author = "Mike Cohn and Jay Butten and James Jory", title = "{Web-Programmierung mit Visual J++}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, pages = "763", year = "1997", ISBN = "3-8272-5211-3", ISBN-13 = "978-3-8272-5211-1", LCCN = "????", bibdate = "Mon Mar 02 19:16:23 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "79,95 DM", URL = "http://www.mut.ch/html/buchinfo.htx?&x_pp=dJgxRqA9wlAYNijX&x_az=10&x_pk=VpLvjnsx7b5V&x_pa=B&x_pr=oS&x_bestell=25211&x_stichwort=Cohn&x_sprache=A&x_start=1&x_gefunden=5&x_query=&x_lastpage=buchfund&x_soft=&x_suchewo=A; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm; http://www.mut.com/; http://www.mut.com/listen/fmonatb.htm", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.mut.ch/", } @InProceedings{Comar:1997:TGJ, author = "C. Comar and G. Dismukes and F. Gasperoni", title = "Targeting {GNAT} to the {Java Virtual Machine}", crossref = "ACM:1997:PTA", pages = "149--164", year = "1997", bibdate = "Tue Apr 20 13:43:51 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Comerford:1997:SET, author = "R. Comerford", title = "Software engineering [technology analysis and forecast]", journal = j-IEEE-SPECTRUM, volume = "34", number = "1", pages = "65--69", month = jan, year = "1997", CODEN = "IEESAM", DOI = "http://dx.doi.org/10.1109/6.560645", ISSN = "0018-9235 (print), 1939-9340 (electronic)", ISSN-L = "0018-9235", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110B (Software engineering techniques); C6130S (Data security); C6130B (Graphics techniques); C6180N (Natural language processing)", fjournal = "IEEE Spectrum", keywords = "Internet; Microsoft Corporation; security; security of data; software engineering; software quality; speech processing; virtual reality", treatment = "P Practical", } @Book{Comi:1997:JF, author = "Luigi Comi", title = "{Java} Flash!", publisher = pub-APOGEO, address = pub-APOGEO:adr, pages = "224", year = "1997", ISBN = "88-7303-197-8", ISBN-13 = "978-88-7303-197-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/italian.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.urra.it/apocat.html", price = "16000 Lire", URL = "http://www.urra.it/285.html; http://www.urra.it/apocat.html", acknowledgement = ack-nhfb, language = "Italian", } @Book{Conner:1997:OGJ, author = "Nauman Conner", title = "Overnight Guide to {Java}, {CGI}, Animation", publisher = pub-ORA, address = pub-ORA:adr, pages = "????", year = "1997", ISBN = "1-56592-283-2", ISBN-13 = "978-1-56592-283-9", LCCN = "????", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Book{Conner:1997:OOP, author = "Brook Conner", title = "Object Oriented Programming in {Java}", publisher = pub-AW, address = pub-AW:adr, pages = "????", month = jan, year = "1997", ISBN = "0-201-87013-4", ISBN-13 = "978-0-201-87013-8", LCCN = "????", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Book{Coombs:1997:SIS, author = "Jason Coombs", title = "Setting Up an {Internet} Site for Dummies", publisher = pub-SOFTBANK, address = pub-SOFTBANK:adr, pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "1800 yen", URL = "http://www.science.org/jasonc; http://www.softbank.co.jp/softbank/publishing/; http://www.softbank.co.jp/softbank/publishing/books/editer/os1/internetsite/index.html", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Cooper:1997:POO, author = "James William Cooper", title = "Principles of {Object-Oriented} Programming in {Java} 1.1: The Practical Guide to Effective, Efficient Program Design", publisher = pub-VENTANA-COMM-GROUP, address = pub-VENTANA-COMM-GROUP:adr, pages = "xx + 372", month = jun, year = "1997", ISBN = "1-56604-530-4", ISBN-13 = "978-1-56604-530-8", LCCN = "QA76.64.C66 1997", bibdate = "Mon Jun 22 09:00:06 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1566045304/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.vmedia.com/", price = "US\$39.99", acknowledgement = ack-nhfb, dimensions = "9.22in x 9.22in x 1.24in", } @Book{Cooper:1997:VBP, author = "James William Cooper", title = "The {Visual Basic} Programmers Guide to {Java} for {Windows 95} and {Windows NT}: your professional toolkit for object-oriented programming", publisher = pub-VENTANA-COMM-GROUP, address = pub-VENTANA-COMM-GROUP:adr, pages = "xxvi + 564", day = "1", month = jan, year = "1997", ISBN = "1-56604-527-4", ISBN-13 = "978-1-56604-527-8", LCCN = "QA76.73.J38C66 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1566045274/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.vmedia.com/", price = "US\$39.99", acknowledgement = ack-nhfb, dimensions = "9.19in x 7.42in x 1.72in", keywords = "Java (computer; microsoft visual basic (computer program); program language)", paperback = "yes", } @Book{Copeland:1997:EPJ, author = "G. S. Copeland and M. Conner and G. Hambrick", title = "Enterprise Programming with {Java}", publisher = "????", address = "????", pages = "????", month = oct, year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Sat Jun 06 09:34:00 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.tamu.edu/course-info/cpsc681/fall97/welch/copeland-ab.html", acknowledgement = ack-nhfb, } @Book{Corcoran:1997:JWW, author = "Patrick Corcoran", title = "{JavaScript} for the {World Wide Web}, ({Visual QuickStart} Guide)", publisher = pub-PEACHPIT, address = pub-PEACHPIT:adr, edition = "Second", pages = "xii + 195", month = sep, year = "1997", ISBN = "0-201-69648-7 (softcover)", ISBN-13 = "978-0-201-69648-6 (softcover)", LCCN = "QA76.73.J39N44 1998", bibdate = "Mon May 11 09:36:49 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$16.15", xxnote = "Library of Congress has authors Tom Negrino and Dori Smith.", } @Book{Cornell:1997:CJ, author = "Gary Cornell and Cay S. Horstmann", title = "Core {Java}", publisher = pub-SUNSOFT, address = pub-SUNSOFT:adr, edition = "Second", pages = "xxxii + 766", month = jan, year = "1997", ISBN = "0-13-596891-7", ISBN-13 = "978-0-13-596891-8", LCCN = "QA76.73.J38C67 1997", bibdate = "Fri Apr 30 10:03:52 1999", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0135968917/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Available in German translation \cite{Cornell:1997:JBI}. See review in \cite{Young:1997:PBJ}. Includes CD-ROM.", price = "US\$44.95", series = "SunSoft Press Java series", URL = "http://www.sun.com/books/books/Cornell/Cornell.html", acknowledgement = ack-nhfb, dimensions = "9.19in x 7.09in x 1.55in", keywords = "Java (computer program language); technology -- data processing", paperback = "yes", } @Book{Cornell:1997:CJa, author = "Gary Cornell and Cay S. Horstmann", title = "Core {Java}", publisher = pub-SUNSOFT, address = pub-SUNSOFT:adr, edition = "Second", pages = "xxxii + 766", month = jan, year = "1997", ISBN = "0-13-596891-7", ISBN-13 = "978-0-13-596891-8", LCCN = "QA76.73.J38C67 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0135968917/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", note = "Available in German translation \cite{Cornell:1997:JBI}. Includes CD-ROM.", price = "US\$40", series = "SunSoft Press Java series", URL = "http://www.prenhall.com/ptrbooks/ptr_0135968917.html; http://www.sun.com/books/books/Cornell/Cornell.html", acknowledgement = ack-nhfb, dimensions = "9.19in x 7.09in x 1.55in", keywords = "Java (computer program language); technology -- data processing", paperback = "yes", } @Book{Cornell:1997:CJb, author = "Gary Cornell and Cay S. Horstmann", title = "Core {Java}", publisher = pub-MONDADORI-INFORMATICA, address = pub-MONDADORI-INFORMATICA:adr, pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 15:22:22 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Italian translation of \cite{Cornell:1997:CJa}.", price = "90000 Lire", URL = "http://www.horstmann.com/; http://www.mondadori.com/; mailto:gcornell@ix.netcom.com", acknowledgement = ack-nhfb, language = "Italian", } @Book{Cornell:1997:CJc, author = "Gary Cornell and Cay S. Horstmann", title = "Core {Java}", publisher = pub-ASCII, address = pub-ASCII:adr, pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://75720.1524compuserve.com; http://www.ascii.co.jp/", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Cornell:1997:CVJ, author = "Gary Cornell and others", title = "Core {Visual J++}", publisher = pub-PH, address = pub-PH:adr, pages = "????", month = nov, year = "1997", ISBN = "0-13-794520-5", ISBN-13 = "978-0-13-794520-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$50", URL = "http://www.prenhall.com/ptrbooks/ptr_0137945205.html", acknowledgement = ack-nhfb, url-publisher = "http://www.prenhall.com/", } @Book{Cornell:1997:JBI, author = "Gary Cornell and Cay S. Horstmann", title = "{JAVA bis ins Detail --- Das Buch f{\"u}r Experten}", publisher = pub-HEINZ-HEISE, address = pub-HEINZ-HEISE:adr, pages = "648", year = "1997", ISBN = "3-88229-087-0", ISBN-13 = "978-3-88229-087-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.heise.de/buch/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "German translation of \cite{Cornell:1997:CJa}. Includes CD-ROM.", price = "99,80 DM", series = "SunSoft Press Java series", URL = "http://www.emedia.de/bin/bookshop?show=4553&id=; http://www.heise.de/buch/", acknowledgement = ack-nhfb, keywords = "Java (computer program language); technology -- data processing", language = "German", } @Book{Cornell:1997:JPA, author = "Gary Cornell and Cay S. Horstmann", title = "{Java} Programming Algorithms", publisher = pub-MICROSOFT, address = pub-MICROSOFT:adr, pages = "????", month = dec, year = "1997", ISBN = "1-57231-690-X", ISBN-13 = "978-1-57231-690-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://mspress.microsoft.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", acknowledgement = ack-nhfb, url-author = "http://www.horstmann.com/", url-publisher = "http://mspress.microsoft.com/", } @Book{Cornell:1997:JPS, author = "Gary Cornell and Cay Horstmann", title = "{Java} Programming With {Symantec Caf{\'e}}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "750", month = dec, year = "1997", ISBN = "0-13-270455-2", ISBN-13 = "978-0-13-270455-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0132704552/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", note = "Check year: 1996 or 1997??", price = "US\$44.95", URL = "http://www.prenhall.com/ptrbooks/ptr_0132704552.html", acknowledgement = ack-nhfb, keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Article{Cornell:1997:SAC, author = "G. Cornell", title = "Scripting {ActiveX} controls with {VBScript}", journal = j-WEB-TECHNIQUES, volume = "2", number = "2", pages = "38--40, 42, 44", month = feb, year = "1997", CODEN = "WETEFA", ISSN = "1086-556X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210L (Computer communications); C6140D (High level languages); C6115 (Programming support); C5620W (Other computer networks); C6150N (Distributed systems software); C6110 (Systems analysis and programming)", fjournal = "Web Techniques", keywords = "Active; active content; Active controls; Active Platform; Active Server; ActiveX; ActiveX controls; authoring languages; beta version; complete computer programs; Desktop; Edition; Internet; Java applets; programming; scripting; scripting language; software reviews; tool; VBScript 2 programming language; Visual Basic; Visual Basic Scripting; Web", treatment = "P Practical; R Product Review", } @Book{Cortes:1997:JLP, author = "Jos{\'e} Luis Cort{\'e}s and others", title = "{Java}: El Lenguaje de Programaci{\'o}n de Internet", publisher = pub-EDITORIAL-MARCOMBO, address = pub-EDITORIAL-MARCOMBO:adr, pages = "168", year = "1997", ISBN = "84-267-1082-4", ISBN-13 = "978-84-267-1082-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/spanish.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "1900 Ptas.", acknowledgement = ack-nhfb, language = "Spanish", xxauthor = "Michael Tischer", xxnote = "Check author first name??", xxtitle = "{Java} Acceso Rapido", } @Article{Coursey:1997:CSW, author = "David Coursey", title = "Challenge to {Sun}: Wall off {Java}", journal = j-COMPUTERWORLD, volume = "31", number = "17", pages = "113--113", day = "28", month = apr, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Wed Apr 30 12:19:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Coursey:1997:FSJ, author = "David Coursey", title = "Fits and starts in the {Java} revolution", journal = j-COMPUTERWORLD, volume = "31", number = "10", pages = "105--105", day = "10", month = mar, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Sat Mar 15 07:10:16 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Comments on IEEE 754 floating-point standard co-developer Jerome Coonan's ``A Note on Java Numerics'' paper, which observes that Java's requirement of identical floating-point results on all platforms imposes a run-time penalty on some platforms, notably IBM PowerPC and Intel x86, because it forces those systems to store intermediate results into memory and then immediately reload them, in order to prevent extra bits of precision in the PowerPC multiply-add instruction, or the 80-bit x86 floating-point registers, from affecting results. Babcock charges that Java is not platform neutral, as claimed by Sun, but has instead been `optimized for Sun SPARC and MIPS architectures.', without understanding, or explaining, the reasoning behind the Java Virtual Machine floating-point design.", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Coursey:1997:MWB, author = "David Coursey", title = "The macro world beyond viruses", journal = j-COMPUTERWORLD, volume = "31", number = "22", pages = "28--28", day = "2", month = jun, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Wed Jun 04 15:32:41 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses the virus problem with reference to Java and ActiveX.", fjournal = "ComputerWorld", } @Article{Coursey:1997:SS, author = "David Coursey", title = "The {Sun} also sets", journal = j-COMPUTERWORLD, volume = "31", number = "23", pages = "117--117", day = "9", month = jun, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Jun 27 08:25:01 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Comments on Java's commercial future.", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Coursey:1997:WKS, author = "David Coursey", title = "What keeps {Sun} awake at night?", journal = j-COMPUTERWORLD, volume = "31", number = "16", pages = "129--129", day = "21", month = apr, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Wed Apr 30 12:19:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Speculates about Java and the future of Sun Microsystems.", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Courtney:1997:JSB, editor = "Tom Courtney", title = "{Java-SIG's} 100 Best Applets", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "viii + 231", month = jul, year = "1997", ISBN = "0-471-18001-7 (softcover)", ISBN-13 = "978-0-471-18001-2 (softcover)", LCCN = "QA76.73.J38J383 1997", bibdate = "Mon Jun 22 10:41:19 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", note = "Includes CD-ROM.", price = "US\$26.99", URL = "http://www.wiley.com/compbooks/catalog/18001-7.htm", acknowledgement = ack-nhfb, url-publisher = "http://www.wiley.com/", xxeditor = "{Java-SIG Team}", } @Book{Courtois:1997:JNC, author = "Todd Courtois", title = "{Java} Networking and Communications", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "400", month = jul, year = "1997", ISBN = "0-13-850454-7", ISBN-13 = "978-0-13-850454-0", LCCN = "QA76.73.J38C69 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0138504547/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.phptr.com/ptrbooks/ptr_0138504547.html; http://www.prenhall.com/", price = "US\$39.95", URL = "http://www.prenhall.com/allbooks/ptr_0138504547.html", acknowledgement = ack-nhfb, paperback = "yes", } @Book{Cowell:1997:EJF, author = "John R. Cowell", title = "Essential {Java} Fast: How to Write Object Oriented Software for the {Internet} in {Java}", publisher = pub-SV, address = pub-SV:adr, pages = "x + 186", day = "1", month = may, year = "1997", ISBN = "3-540-76052-0", ISBN-13 = "978-3-540-76052-8", LCCN = "QA76.64.C678 1997", bibdate = "Mon Jun 22 10:02:00 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=3540760520/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.springer-ny.com/", price = "US\$24.95; US\$39.95", URL = "http://www.springer-ny.com/catalog/np/jun97np/DATA/3-540-76052-0.html", acknowledgement = ack-nhfb, dimensions = "9.35in x 6.16in x 0.48in", xxnote = "Original title may have been: ``Essential {Java} with {Latt{\'e} Fast}''. Library of Congress has title above.", xxtitle = "Essential {Java} \& {JBuilder} Fast", xxtitle = "Essential {Java} Fast: How to Write Object Oriented Software for the {Internet}", } @Book{Cox:1997:JPL, author = "Ron Cox", title = "{JavaBeans} Programming Lab", publisher = pub-PRIMA, address = pub-PRIMA:adr, pages = "xxiv + 447", year = "1997", ISBN = "0-7615-1047-8 (softcover)", ISBN-13 = "978-0-7615-1047-5 (softcover)", LCCN = "QA76.73.J38 A45 1997", bibdate = "Wed Dec 31 14:29:00 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$36.00", xxnote = "Duplicate ISBN with \cite{Allen:1997:HJ}. Library of Congress has authors: Mitch Allen and John B. Harvie??. Data Resource Associates has title: Hands on JavaBeans", } @Article{Cramer:1997:CJJ, author = "Timothy Cramer and Richard Friedman and Terrence Miller and David Seherger and Robert Wilson and Mario Wolczko", title = "Compiling {Java} Just in Time: Using runtime compilation to improve {Java} program performance", journal = j-IEEE-MICRO, volume = "17", number = "3", pages = "36--43", month = may # "\slash " # jun, year = "1997", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/40.591653", ISSN = "0272-1732 (print), 1937-4143 (electronic)", ISSN-L = "0272-1732", bibdate = "Thu Dec 14 06:08:58 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; Science Citation Index database (1980--2000)", URL = "http://pascal.computer.org/mi/books/mi1997/pdf/m3036.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Micro", } @Article{Cramer:1997:CLJ, author = "Timothy Cramer and Richard Friedman and Terrence Miller and David Seherger and Robert Wilson and Mario Wolczko", title = "Compiling {Java} Just in Time: Using runtime compilation to improve {Java} program performance", journal = j-IEEE-MICRO, volume = "17", number = "3", pages = "36--43", month = may # "\slash " # jun, year = "1997", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/40.591653", ISSN = "0272-1732 (print), 1937-4143 (electronic)", ISSN-L = "0272-1732", bibdate = "Tue Aug 12 12:35:06 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://pascal.computer.org/mi/books/mi1997/pdf/m3036.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Micro", } @Article{Cravit:1997:LEJ, author = "Matthew Cravit", title = "Letter to the Editor: {Java} Response", journal = j-DDJ, volume = "22", number = "2", pages = "10, 12", month = feb, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Jan 03 06:34:28 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Crawford:1997:BD, author = "Mike Crawford and Ted Alspach", title = "{Bongo} For Dummies", publisher = pub-IDG, address = pub-IDG:adr, pages = "xxi + 359", month = jun, year = "1997", ISBN = "0-7645-0176-3", ISBN-13 = "978-0-7645-0176-0", LCCN = "QA76.73.J38C73 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$30", URL = "http://www.idgbooks.com/cgi-bin/db/fill_out_template.pl?idgbook:0-7645-0176-3:book-idg::uidg2862; http://www.idgbooks.com/database/book_result.msql?uid=uidg323&isbn=0-7645-0176-3", acknowledgement = ack-nhfb, url-author = "http://www.idgbooks.com/database/author\_search\_result.msql?uid=uidg323\&term=Mike+Crawford", url-publisher = "http://www.idgbooks.com/", } @Book{Creek:1997:JDT, author = "{Walnut Creek}", title = "{Jolt}! Developer's Toolkit (for {Java})", publisher = "Walnut Creek", address = "????", pages = "????", month = oct, year = "1997", ISBN = "1-57176-211-6", ISBN-13 = "978-1-57176-211-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.cdrom.com; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", URL = "http://www.cdrom.com/titles/prog/jolt_dev.htm", acknowledgement = ack-nhfb, url-author = "http://www.cdrom.com", url-publisher = "http://www.cdrom.com", } @Book{Creek:1997:JGJ, author = "{Walnut Creek}", title = "{Jolt}! Games (for {Java})", publisher = "Walnut Creek", address = "????", pages = "????", month = feb, year = "1997", ISBN = "1-57176-197-7", ISBN-13 = "978-1-57176-197-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.cdrom.com; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", URL = "http://www.cdrom.com/titles/games/jolt_gam.htm", acknowledgement = ack-nhfb, url-author = "http://www.cdrom.com", url-publisher = "http://www.cdrom.com", } @Book{Croft:1997:HJA, author = "Brian A. Croft", title = "{HTML} 4, {Java} 1.1, and {ActiveX Web} Publishing Unleashed", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, edition = "Second", pages = "????", month = dec, year = "1997", ISBN = "1-57521-363-X", ISBN-13 = "978-1-57521-363-7", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/", xxnote = "Duplicate ISBN with \cite{Powers:1998:DWP}.", } @Book{Cross:1997:MVJ, author = "Jay Cross and Al Saganich", title = "The {Microsoft Visual J++} Sourcebook", publisher = pub-WILEY-COMPUTER, address = pub-WILEY-COMPUTER:adr, pages = "xiv + 539", year = "1997", ISBN = "0-471-17840-3", ISBN-13 = "978-0-471-17840-8", LCCN = "QA76.73.J38C76 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$40", URL = "http://www.wiley.com/compbooks/catalog/17840-3.htm", acknowledgement = ack-nhfb, keywords = "Java (Computer program language); Microsoft Visual J++", xxauthor = "John A. Cross", } @InProceedings{Culwin:1997:JC, author = "Fintan Culwin", editor = "{ACM}", booktitle = "Workshop at ACM SIGCSE 1997, San Diego, CA, March 1997", title = "{Java} in the {HE} Curriculum", publisher = pub-ACM, address = pub-ACM:adr, pages = "??--??", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Sep 08 17:38:30 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.scism.sbu.ac.uk/~fintan/publications.html", acknowledgement = ack-nhfb, } @Article{Culwin:1997:JCC, author = "Fintain Culwin", title = "{Java} in the computing curriculum conference", journal = j-SIGPLAN, volume = "32", number = "6", pages = "28--32", month = jun, year = "1997", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:34 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Culwin:1997:RJC, author = "Fintan Culwin", title = "A Report on the {`Java in the Computing Curriculum Conference'} held at {South Bank University, London, on 4th February 1997}", journal = j-SIGPLAN, volume = "32", number = "6", pages = "28--32", month = jun, year = "1997", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Fri Jul 18 15:04:45 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Book{Dallmeier:1997:JVM, author = "Matthias K. Dallmeier", title = "{Java Virtual Machine, Sprache, Konzept, Architektur}", publisher = pub-ORA, address = pub-ORA:adr, pages = "209", year = "1997", ISBN = "3-930673-73-8", ISBN-13 = "978-3-930673-73-5", LCCN = "????", bibdate = "Mon Mar 02 19:18:51 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "25 DM", URL = "http://www.ora.de/", acknowledgement = ack-nhfb, language = "German", } @Book{Damasceno:1997:AJP, author = "Americo {Damasceno, Jr.}", title = "Aprendendo {Java} --- Programa{\c{c}}{\~a}o Na {Internet}", publisher = "Editora Erica", address = "??, Brazil", pages = "????", year = "1997", ISBN = "85-7194-331-1", ISBN-13 = "978-85-7194-331-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/portuguese.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "R\$ 33", URL = "????", acknowledgement = ack-nhfb, language = "Portuguese", } @Book{Danesh:1997:IMJa, author = "Arman Danesh", title = "{Internett} med {Java} og {JavaScript}", publisher = pub-PH, address = pub-PH:adr, pages = "????", year = "1997", ISBN = "0-13-271198-2", ISBN-13 = "978-0-13-271198-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/norwegian.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sn.no/prenhall/", note = "Oversatt og omarbeidet av K. Vilhelmsen [Translated and edited by K. Vilhelmsen]. Includes CD-ROM.", price = "NKr 149", URL = "http://www.sn.no/prenhall/; http://www.sn.no/prenhall/oppg/imjoj/index.htm; http://www.sn.no/prenhall/pren2000.htm; http://www.sn.no/prenhall/pren2100.htm", acknowledgement = ack-nhfb, language = "Norwegian", } @Book{Danesh:1997:IMJb, author = "Arman Danesh", title = "{Internett} med {Java} och {JavaScript}", publisher = pub-PH, address = pub-PH:adr, pages = "188", year = "1997", ISBN = "0-13-286980-2", ISBN-13 = "978-0-13-286980-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/swedish.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sn.no/prenhall/", note = "Swedish translation of \cite{Danesh:1996:TYJa} by Magnus Gidlund.", price = "Skr 98", URL = "http://www.sn.no/prenhall/pren3000.htm; http://www.sn.no/prenhall/pren3100.htm", acknowledgement = ack-nhfb, language = "Swedish", } @Book{Danesh:1997:JIC, author = "Arman Danesh", title = "{JavaScript} Interactive Course", publisher = pub-WAITE-GROUP, address = pub-WAITE-GROUP:adr, pages = "xx + 616", day = "1", month = jan, year = "1997", ISBN = "1-57169-084-0", ISBN-13 = "978-1-57169-084-5", LCCN = "QA76.73.J39D35 1997", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1571690840/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99", acknowledgement = ack-nhfb, dimensions = "9.05in x 7.31in x 1.61in", keywords = "JavaScript (Computer program language)", } @Article{David:1997:KAI, author = "Olaf David", title = "A kernel approach for interactive-oriented model construction in {Java}", journal = j-CPE, volume = "9", number = "11", pages = "1319--1326", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13836; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13836&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Davis:1997:AJA, author = "Stephen R. Davis", title = "Aprenda {Java} Agora", publisher = pub-EDITORE-CAMPUS, address = pub-EDITORE-CAMPUS:adr, pages = "432", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 12:44:14 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/portuguese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "R\$ 52,20", URL = "http://www.campus.com.br/about-us.htm; http://www.campus.com.br/catalogo/livro.cfm?cod_livro=20147", acknowledgement = ack-nhfb, language = "Portuguese", } @Book{Davis:1997:AJY, author = "Stephen R. Davis", title = "Aprenda {Java} Ya", publisher = pub-MCGRAW-HILL-SPAIN, address = pub-MCGRAW-HILL-SPAIN:adr, pages = "????", month = may, year = "1997", ISBN = "84-481-0976-7", ISBN-13 = "978-84-481-0976-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.es/", price = "5500 Ptas.", URL = "http://www.microsoft.com/mexico/press/Program.htm", acknowledgement = ack-nhfb, language = "Spanish", url-publisher = "http://mexplaza.udg.mx/McGraw/", } @InProceedings{Davis:1997:CGA, author = "M. Davis", title = "Creating Global Applications with {JDK 1.1}", crossref = "UC:1997:SDI", pages = "A11--??", year = "1997", bibdate = "Thu Aug 20 07:03:28 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc11/program.html", acknowledgement = ack-nhfb, keywords = "internet; software development; Unicode", } @Article{Davis:1997:LRJ, author = "Dwight B. Davis", title = "Letter From {Redmond}: {Java}: To be or not to be", journal = j-DATAMATION, volume = "43", number = "2", pages = "136--??", month = "????", year = "1997", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Tue Jan 26 09:28:04 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Datamation", } @Article{Davis:1997:WMO, author = "M. Davis", title = "Well-mannered objects: tips on porting {C++} to {Java}", journal = j-C-PLUS-PLUS-REPORT, volume = "9", number = "4", pages = "14--21", month = apr, year = "1997", CODEN = "CRPTE7", ISSN = "1040-6042", bibdate = "Thu Apr 24 09:46:14 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classification = "C6110B (Software engineering techniques); C6110J (Object-oriented programming); C6140D (High level languages)", fjournal = "C++ Report", keywords = "C language; C++ code porting; client-server applications; client-server systems; Java; JavaSoft; JDK 1.1; object classes; object-oriented languages; object-oriented programming; power; simplicity; software portability; Taligent; turnaround time; Unicode Analytic package; well-behaved objects; World Wide Web applets", treatment = "P Practical", } @Book{December:1997:JIM, author = "John December", title = "{Java} --- Immagini in movimento nelle pagine {WWW}", publisher = pub-TECHNICE-NUOVE, address = pub-TECHNICE-NUOVE:adr, pages = "240", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "18 August 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/italian.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "39.000 Lire", URL = "http://www.tecnet.it/; http://www.tecnet.it/libri/VisualizzaLibro.cfm?ISBN=02530", acknowledgement = ack-nhfb, language = "Italian", } @Book{December:1997:PJ, author = "John December", title = "Presenting {Java}", publisher = "Focus-Computers Publishing", address = "P.O. Box 873 Ramat-Gan 52108, Israel", pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 16:26:34 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/hebrew.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Hebrew translation of \cite{December:1995:PJI}. Includes floppy disk.", URL = "http://www.focus.co.il/", acknowledgement = ack-nhfb, language = "Hebrew", } @Book{December:1997:WWW, author = "John December and Neil Randall and others", title = "The {World Wide Web} 1997 Unleashed", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, edition = "Fourth", pages = "xxxv + 1226", month = feb, year = "1997", ISBN = "1-57521-184-X", ISBN-13 = "978-1-57521-184-8", LCCN = "TK5105.888 .D43 1997", bibdate = "Mon Mar 17 18:21:56 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=157521184X/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$49.99", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/157521184X.html", acknowledgement = ack-nhfb, dimensions = "9.45in x 7.69in x 2.36in", } @Article{Deck:1997:IPS, author = "Stewart Deck and Dan Bricklin", title = "Industry pioneer speaks his mind", journal = j-COMPUTERWORLD, volume = "31", number = "22", pages = "28--28", day = "2", month = jun, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Wed Jun 04 15:30:47 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Visicalc inventor Bricklin calls Java a `write once, test many times' language.", fjournal = "ComputerWorld", } @Book{Decker:1997:PJL, author = "Rick Decker and Stuart Hirshfield", title = "programming.java: Lab Manual, Beta edition", publisher = pub-PWS, address = pub-PWS:adr, pages = "viii + 87", year = "1997", ISBN = "0-534-95597-5", ISBN-13 = "978-0-534-95597-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.thomson.com/pws/default.html", price = "US\$18", URL = "http://www.thomson.com/cgi-bin/plweb/hitlist.cgi?isbn-text+0534955975", acknowledgement = ack-nhfb, url-publisher = "http://www.thomson.com/pws/default.html", } @Manual{Deering:1997:JSV, author = "M. Deering and H. Sowizral", title = "{Java3D} Specification, Version 1.0", organization = pub-SUN, address = pub-SUN:adr, month = aug, year = "1997", bibdate = "Sat Jun 06 09:07:36 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://java.sun.com/products/java-media/3D/", acknowledgement = ack-nhfb, } @Book{Deitel:1997:CJTa, author = "Harvey M. Deitel and Paul J. Deitel", title = "A Complete {Java} Training Course: The Ultimate Cyber Classroom", publisher = pub-PH, address = pub-PH:adr, pages = "1056", month = may, year = "1997", ISBN = "0-13-841958-2 (softcover)", ISBN-13 = "978-0-13-841958-5 (softcover)", LCCN = "????", bibdate = "Sat Sep 13 14:36:20 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", note = "Includes CD-ROM.", price = "US\$113", URL = "http://www.prenhall.com/ptrbooks/ptr_0138419582.html", } @Book{Deitel:1997:CJTb, author = "Harvey M. Deitel and Paul J. Deitel", title = "Complete {Java} Training Course", publisher = pub-PH, address = pub-PH:adr, pages = "????", month = jan, year = "1997", ISBN = "0-13-842139-0 (softcover)", ISBN-13 = "978-0-13-842139-7 (softcover)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$75.00; US\$113", acknowledgement = ack-nhfb, } @Book{Deitel:1997:CJTc, author = "{Deitel \& Associates, Inc.}", title = "A Complete {Java} Training Course: The Ultimate Cyberclassroom", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "????", month = nov, year = "1997", ISBN = "0-13-790569-6", ISBN-13 = "978-0-13-790569-0", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$100", URL = "http://www.prenhall.com/ptrbooks/ptr_0137905696.html", acknowledgement = ack-nhfb, url-author = "http://www.deitel.com/principals.html", url-publisher = "http://www.prenhall.com/", } @Book{Deitel:1997:JHPa, author = "Harvey M. Deitel and Paul J. Deitel", title = "{Java}: how to program: with an introduction to {Visual J++}", publisher = pub-PH, address = pub-PH:adr, pages = "liii + 1056", year = "1997", ISBN = "0-13-263401-5, 0-614-20312-0", ISBN-13 = "978-0-13-263401-4, 978-0-614-20312-7", LCCN = "QA76.73.J38D45 1996", bibdate = "Tue May 04 14:36:30 1999", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0132634015/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", note = "See review \cite{Hayes:1996:TBJ}.", price = "US\$45", series = "How to program series", acknowledgement = ack-nhfb, dimensions = "9.11in x 7.03in x 1.63in", keywords = "Java (Computer program language); Microsoft Visual J++", paperback = "yes", } @Book{Deitel:1997:JHPb, author = "Harvey M. Deitel and Paul J. Deitel", title = "{Java}: How to Program: With an Introduction to {Visual J++}", publisher = pub-PH, address = pub-PH:adr, pages = "liii + 1114", month = mar, year = "1997", ISBN = "0-13-632589-0", ISBN-13 = "978-0-13-632589-5", LCCN = "QA 76.73 J38 D45 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$45", URL = "http://www.prenhall.com/ptrbooks/esm_0136325890.html", acknowledgement = ack-nhfb, keywords = "java (computer program language); microsoft visual j++", url-author = "http://www.deitel.com/principals.html", url-publisher = "http://www.prenhall.com/", } @Book{Deitel:1997:JMC, author = "Harvey M. Deitel and Paul J. Deitel", title = "{Java} Multimedia Cyber Classroom", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "????", month = jan, year = "1997", ISBN = "0-13-271974-6", ISBN-13 = "978-0-13-271974-2", LCCN = "????", bibdate = "Thu Apr 29 16:44:56 1999", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0132719746/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "See review \cite{Diehl:1997:JCC}.", price = "US\$69.95", URL = "http://www.deitel.com; http://www.prenhall.com/", acknowledgement = ack-nhfb, dimensions = "9.60in x 7.05in x 2.20in", keywords = "Java (computer program language); technology -- computers and computer technology", } @Book{Deitel:1997:JMCa, author = "Harvey M. Deitel and Paul J. Deitel", title = "{Java} Multimedia Cyber Classroom", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "????", month = jan, year = "1997", ISBN = "0-13-271974-6", ISBN-13 = "978-0-13-271974-2", LCCN = "????", bibdate = "Tue May 04 14:37:48 1999", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0132719746/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", note = "See review in \cite{Diehl:1997:JCC}.", price = "US\$69.95", URL = "http://www.prenhall.com/ptrbooks/ptr_0132719746.html", acknowledgement = ack-nhfb, dimensions = "9.60in x 7.05in x 2.20in", keywords = "Java (computer program language); technology -- computers and computer technology", } @Book{Deitel:1997:JMCb, author = "Harvey M. Deitel and Paul J. Deitel", title = "{Java} Multimedia Cyber Classroom", publisher = pub-PH, address = pub-PH:adr, edition = "Second", month = nov, year = "1997", ISBN = "0-13-905589-4", ISBN-13 = "978-0-13-905589-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "????", URL = "http://www.prenhall.com/books/ptr_0139055894.html", acknowledgement = ack-nhfb, } @Article{Delessio:1997:CWM, author = "Carmen Delessio", title = "Converting {Windows Metafiles} to {Java}", journal = j-DDJ, volume = "22", number = "5", pages = "34, 36, 37, 74, 76", month = may, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Apr 02 07:24:30 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "{Carmen} presents a program that converts {Microsoft Windows Metafile Format} ({WMF}) files into {Java} source code. The generated {Java} code references classes provided with {Sun}'s {JDK}.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Dennis:1997:BCN, author = "T. Dennis", title = "Boxing clever [networking {AS\slash 400}]", journal = "Network News", volume = "????", number = "????", pages = "27--29", day = "5", month = "????", year = "1997", CODEN = "NNEWFL", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D5020 (Computer networks and intercomputer communications)", countrypub = "UK", keywords = "IBM AS/400; IBM computers; Intranet server; Java; minicomputers; network servers; networking", treatment = "P Practical", } @Article{Detar:1997:IGS, author = "Jim Detar", title = "{Intel}'s {Grove} Shows {Java} Development Tool", journal = j-ENEWS, volume = "43", number = "2172", pages = "56--56", day = "16", month = jun, year = "1997", CODEN = "ELNEAU", ISSN = "0013-4937, 1061-6624", bibdate = "Fri Jun 27 09:46:43 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Electronic News", } @Book{Dewolfe:1997:JM, author = "Michele Dewolfe", title = "{Javascript} Mojo", publisher = pub-VENTANA-COMM-GROUP, address = pub-VENTANA-COMM-GROUP:adr, pages = "????", day = "1", month = apr, year = "1997", ISBN = "1-56604-649-1", ISBN-13 = "978-1-56604-649-7", LCCN = "????", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1566046491/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", acknowledgement = ack-nhfb, xxtitle = "{JavaScript} Mojo with {CD}", } @Article{Dichter:1997:AJP, author = "Carl Dichter", title = "Avoiding {Java} Portability Pitfalls", journal = j-UNIX-DEVELOPER, volume = "1", number = "1", pages = "26--28", month = jan # "\slash " # feb, year = "1997", ISSN = "1090-2279", bibdate = "Thu Jan 16 17:23:49 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "UNIX Developer", } @Book{Dicken:1997:WDI, author = "Hans Dicken", title = "{Web-Datenbank-Integration mit Java}", publisher = pub-ITCP, address = pub-ITCP:adr, pages = "377", year = "1997", ISBN = "3-8266-0343-5", ISBN-13 = "978-3-8266-0343-3", LCCN = "????", bibdate = "Mon Mar 02 19:24:30 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "69 DM", URL = "http://www.itp.de/datenbanken/0343/0343.html", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.itp.de/", } @Article{DiDio:1997:IAJ, author = "Laura DiDio", title = "{IBM} adds {Java} support to {OS/2 Warp}", journal = j-COMPUTERWORLD, volume = "31", number = "8", pages = "67--67", day = "24", month = feb, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Mar 03 11:37:16 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", fjournal = "ComputerWorld", } @Article{DiDio:1997:IDB, author = "Laura DiDio", title = "{IBM} division builds {Java} applets for {OS/2}", journal = j-COMPUTERWORLD, volume = "31", number = "8", pages = "32--32", day = "24", month = feb, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Mar 03 11:37:16 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", fjournal = "ComputerWorld", } @Article{DiDio:1997:IIB, author = "Laura DiDio", title = "{IBM} issues beta {Java} kit for {OS/2 Warp 4}", journal = j-COMPUTERWORLD, volume = "31", number = "26", pages = "24--24", day = "30", month = jun, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Wed Jul 02 16:50:38 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.software.ibm.com/os2warp", fjournal = "ComputerWorld", } @Article{DiDio:1997:IWS, author = "Laura DiDio", title = "{IBM OS/2 Warp Server} to get {Java} jolt", journal = j-COMPUTERWORLD, volume = "31", number = "20", pages = "24--24", day = "19", month = may, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Jun 06 08:24:53 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", fjournal = "ComputerWorld", } @Article{Diehl:1997:JCC, author = "Stan Diehl", title = "{Java} Cyber Class: {Java} multimedia study hall", journal = j-BYTE, volume = "22", number = "9", pages = "30--30", month = sep, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Aug 23 07:11:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Review of \cite{Deitel:1997:JMCa}.", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Dincer:1997:UJJ, author = "Kivanc Dincer and Geoffrey C. Fox", title = "Using {Java} and {JavaScript} in the {Virtual Programming Laboratory}: a {Web}-based parallel programming environment", journal = j-CPE, volume = "9", number = "6", pages = "485--508", month = jun, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:32 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13873; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13873&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Doberenz:1997:JPI, author = "Walter Doberenz and Uwe Druckenm{\"u}ller", title = "{Java: Programmierung interaktiver WWW-Seiten}", publisher = pub-CARL-HANSER, address = pub-CARL-HANSER:adr, pages = "494", year = "1997", ISBN = "3-446-18854-1", ISBN-13 = "978-3-446-18854-9", LCCN = "????", bibdate = "Mon Jun 22 10:52:05 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.hanser.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "69 DM", URL = "http://www.hanser.de/computer/buecher/do18854.htm", acknowledgement = ack-nhfb, language = "German", xxauthor = "Walter Doberenz and Johannes Wellesen", } @Article{Doemel:1997:IJT, author = "P. Doemel", title = "Interaction of {Java} and {Telescript} Agents", journal = j-LECT-NOTES-COMP-SCI, volume = "1222", pages = "295--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Fri Aug 22 11:59:49 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Doherty:1997:TYJ, author = "Donald Doherty", title = "Teach Yourself {Java Beans} in 21 Days", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxii + 448", month = jun, year = "1997", ISBN = "1-57521-316-8 (softcover)", ISBN-13 = "978-1-57521-316-3 (softcover)", LCCN = "QA76.73.J38D64 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$35.99", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575213168.html", acknowledgement = ack-nhfb, } @TechReport{Doolin:1997:JCL, author = "David M. Doolin and Jack Dongarra", title = "{JLAPACK} --- Compiling {LAPACK Fortran} to {Java}, Phase 1", type = "Technical report", number = "CS-97-367", institution = inst-UTK, address = inst-UTK:adr, year = "1997", bibdate = "Tue Feb 26 10:10:44 2002", bibsource = "http://www.math.utah.edu/pub/bibnet/authors/d/dongarra-jack-j.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.netlib.org/utk/people/JackDongarra/PAPERS/f2jpaper.ps; http://www.netlib.org/utk/people/JackDongarra/pdf/f2jpaper.pdf", acknowledgement = ack-nhfb, } @Book{Downs:1997:TYJ, author = "Andrew Downs", title = "Teach Yourself {Java} for {Macintosh} in 21 days", publisher = pub-HAYDEN, address = pub-HAYDEN:adr, edition = "Second", pages = "????", month = nov, year = "1997", ISBN = "1-56830-342-4", ISBN-13 = "978-1-56830-342-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/hayden/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "79,00 DM; US\$40", URL = "http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, xxauthor = "Tim Webster", xxtitle = "Teach Yourself {Java} 1.1 for Macintosh in 21 Days", } @Article{Dragan:1997:JFG, author = "Richard V. Dragan and Larry Seltzer", title = "{Java}: {A} Field Guide for Users", journal = j-PC-MAGAZINE, volume = "16", number = "10", pages = "100, 101, 103, 104, 108, 111--113, 115", month = may, year = "1997", CODEN = "PCMGEP", ISSN = "0888-8507", ISSN-L = "0888-8507", bibdate = "Fri May 02 15:38:38 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "PC Magazine", } @Article{Drake:1997:CSP, author = "R. Drake", title = "{CRED}: seven pillars for {Java} development", journal = j-AM-PROG, volume = "10", number = "1", pages = "13--21", month = jan, year = "1997", CODEN = "AMPRFD", ISSN = "1048-5600", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6110F (Formal methods)C6140D (High level languages)", corpsource = "Objective Comput. Syst., London, UK", fjournal = "American Programmer", keywords = "authoring languages; Controlled Rapid Evolutionary; CRED; Delivery; Internet; Java development; language; object oriented; object-oriented languages; object-oriented programming; projects; software development; software development management; software development method; software managers", treatment = "P Practical", } @Article{Driggers:1997:DCE, author = "Brent Driggers and Jay Alameda and Ken Bishop", title = "Distributed collaboration for engineering and scientific applications implemented in {Habanero}, a {Java}-based environment", journal = j-CPE, volume = "9", number = "11", pages = "1269--1277", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13841; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13841&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Drossopoulou:1997:JTS, author = "S. Drossopoulou and S. Eisenbach", title = "{Java} is Type Safe --- Probably", journal = j-LECT-NOTES-COMP-SCI, volume = "1241", pages = "389--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Fri Aug 22 11:59:49 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Dryden:1997:CGJ, author = "Patrick Dryden", title = "{Cabletron} gulps {Java}", journal = j-COMPUTERWORLD, volume = "31", number = "14", pages = "14--14", day = "7", month = apr, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Tue Apr 22 07:48:54 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{DSouza:1997:CF, author = "D. D'Souza and A. Wills", title = "Collaboration frameworks", journal = j-J-OOP, volume = "9", number = "9", pages = "68--71", month = feb, year = "1997", CODEN = "JOOPEC", ISSN = "0896-8438", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6140D (High level languages); C6110F (Formal methods); C6120 (File organisation)", corpsource = "ICON Comput., Austin, TX, USA", fjournal = "Journal of Object Oriented Programming", keywords = "abstract data types; abstract model; actions; behavioral relationships; catalysis method; collaboration frameworks; collaboration refinement; design; family parameterization; generic design; interfaces; interrelated type; Java; joint refinements; models; object-; object-oriented languages; oriented methods; patterns; refined model; relationships; specification models; structural; template mechanism", treatment = "P Practical", } @Article{DSouza:1997:TCL, author = "D. D'Souza", title = "Types and classes: a language-independent view", journal = j-J-OOP, volume = "10", number = "1", pages = "10--13", month = mar # "-" # apr, year = "1997", CODEN = "JOOPEC", ISSN = "0896-8438", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6120 (File organisation); C6110J (Object-oriented programming); C6140D (High level languages)", corpsource = "ICON Comput., Austin, TX, USA", fjournal = "Journal of Object Oriented Programming", keywords = "abstract data types; behavioral; Catalysis method; classes; collaborations; design patterns; frameworks; Java; language-independent view; meta-model; object-oriented languages; refinements; specifications; types; UML 1.0; Unified Modeling Language specification", treatment = "G General Review", } @Book{Duego:1997:JG, editor = "Dwight Duego", title = "{Java} Gems", publisher = pub-PH, address = pub-PH:adr, pages = "????", month = aug, year = "1997", ISBN = "0-13-904863-4", ISBN-13 = "978-0-13-904863-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$29", URL = "http://www.prenhall.com/ptrbooks/ptr_0139048634.html", acknowledgement = ack-nhfb, url-publisher = "http://www.prenhall.com/", } @Book{Duego:1997:JGJ, editor = "Dwight Duego", title = "{Java} Gems: Jewels from {Java Report}", publisher = pub-SIGS, address = pub-SIGS:adr, pages = "????", year = "1997", ISBN = "1-884842-80-1", ISBN-13 = "978-1-884842-80-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sigs.com/books/", price = "US\$", URL = "http://www.sigs.com/books/deugo/", acknowledgement = ack-nhfb, } @Book{Duncan:1997:ONS, author = "Luke Duncan", title = "Official {Netscape} server-side {JavaScript} for database applications: for {Enterprise Server 3}", publisher = pub-VENTANA, address = pub-VENTANA:adr, pages = "????", year = "1997", ISBN = "1-56604-745-5", ISBN-13 = "978-1-56604-745-6", LCCN = "QA76.73.J39 D86 1997", bibdate = "Thu Aug 14 11:37:17 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Dwyer:1997:FPA, author = "Matthew B. Dwyer and Virgil Wallentine", title = "A framework for parallel adaptive grid simulations", journal = j-CPE, volume = "9", number = "11", pages = "1293--1310", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13824; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13824&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Dyson:1997:NPI, author = "Peter Dyson and Pat Coleman", title = "{NetWork Press: Intranets mit Windows NT 4}", publisher = pub-SYBEX-VERLAG, address = pub-SYBEX-VERLAG:adr, pages = "xxx + 809", year = "1997", ISBN = "3-8155-7260-6", ISBN-13 = "978-3-8155-7260-3", LCCN = "????", bibdate = "Mon Mar 02 19:17:38 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "129 DM", URL = "http://www.sybex.de/; http://www.sybex.de/bestell/tp/tp07260.htm", acknowledgement = ack-nhfb, language = "German", } @Article{Eckel:1997:BAT, author = "B. Eckel", title = "The black art of threading [{Java} programming]", journal = j-WEB-TECHNIQUES, volume = "2", number = "1", pages = "34--??, 36--37", month = jan, year = "1997", CODEN = "WETEFA", ISSN = "1086-556X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6140D (High level languages); C6130M (Multimedia)", fjournal = "Web Techniques", keywords = "deadlock situations; hypermedia; Java programming; keyword; language concepts; object-oriented; object-oriented languages; program control structures; programming; resource allocation; run(); scheduler interrupt; sleep(); synchronized; thread scheduling; threading", treatment = "G General Review", } @Article{Eckel:1997:DIAa, author = "B. Eckel", title = "Discovering information at run time", journal = j-WEB-TECHNIQUES, volume = "2", number = "2", pages = "34--??, 36--37", month = feb, year = "1997", CODEN = "WETEFA", ISSN = "1086-556X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210L (Computer communications); C6110J (Object-oriented programming); C6140D (High level languages); C5620W (Other computer networks); C6150N (Distributed systems software); C6120 (File organisation)", fjournal = "Web Techniques", keywords = "abstract data types; base; class information; compile time; complete computer programs; exact type; Internet; Java; object oriented design issues; object type; object-oriented languages; object-oriented programming; program structure; reflection mechanism; RTTI mechanism; run; time type identification; traditional run time type information; type", treatment = "P Practical", } @Article{Eckel:1997:DIAb, author = "B. Eckel", title = "Discovering information at run time: part deux", journal = j-WEB-TECHNIQUES, volume = "2", number = "3", pages = "28--??, 30--31", month = mar, year = "1997", CODEN = "WETEFA", ISSN = "1086-556X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6140D (High level languages); C6120 (File organisation)", fjournal = "Web Techniques", keywords = "abstract data types; authoring languages; class; information; Java 1.1; Java run time-type information; languages; object; object oriented programming; object-oriented; object-oriented programming; oriented language; reflection mechanism; run time information", treatment = "P Practical", } @Article{Eckel:1997:ISJ, author = "B. Eckel", title = "{IO} streams in {Java 1.1}", journal = j-WEB-TECHNIQUES, volume = "2", number = "7", pages = "30, 32--36", month = jul, year = "1997", CODEN = "WETEFA", ISSN = "1086-556X", bibdate = "Fri Apr 24 15:18:27 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classification = "C6110J (Object-oriented programming); C6115 (Programming support); C6120 (File organisation); C6140D (High level languages); C6150J (Operating systems)", fjournal = "Web Techniques", keywords = "16-bit Unicode characters; 8-bit byte streams; abstract data types; backward compatibility; bridge classes; character sets; compression library; data compression; I/O stream library; input-output programs; InputStreamReader; internationalization; Java 1.1; JavaSoft; native character set; object classes; object serialization; object serialization compression library; object-oriented languages; OutputStreamWriter; software libraries", treatment = "P Practical", } @Article{Egan:1997:JST, author = "M. A. Egan and M. Krishnamoorthy and K. Rajan", title = "A {Java} simulation tool for fuzzy clustering", journal = j-CPE, volume = "9", number = "11", pages = "1327--1332", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13837; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13837&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Eisenmenger:1997:J, author = "Richard Eisenmenger", title = "{JavaScript}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, pages = "400", year = "1997", ISBN = "3-8272-5254-7", ISBN-13 = "978-3-8272-5254-8", LCCN = "????", bibdate = "Tue Aug 19 10:43:08 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "39,95 DM", URL = "http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, language = "German", xxauthor = "Josef Steiner and Robert Valentin", xxtitle = "{JavaScript Schnell{\"u}bersicht}", } @Book{Ek:1997:JAT, author = "Jesper Ek", title = "{Java-applets} tips och till{\"a}mpningar", publisher = pub-PAGINA, address = pub-PAGINA:adr, pages = "250", year = "1997", ISBN = "91-636-0427-2 (??Invalid checksum??)", ISBN-13 = "978-91-636-0427-0 (??Invalid checksum??)", LCCN = "????", bibdate = "Thu Aug 14 12:25:59 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/swedish.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "Skr 471", URL = "http://www.pagina.se/butik/product.html?9,20427,-1,cjnblpapne", acknowledgement = ack-nhfb, language = "Swedish", } @Book{Ek:1997:JPa, author = "Jesper Ek", title = "{Java} programmering", publisher = pub-PAGINA, address = pub-PAGINA:adr, pages = "188", year = "1997", ISBN = "91-636-0419-1 (??Invalid checksum??)", ISBN-13 = "978-91-636-0419-5 (??Invalid checksum??)", LCCN = "????", bibdate = "Thu Aug 14 12:25:59 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/swedish.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "SKr 292", URL = "http://www.pagina.se/butik/product.html?9,20419,-1,cjnblpapne", acknowledgement = ack-nhfb, language = "Swedish", } @Book{Ek:1997:JPb, author = "Jesper Ek and Rasmus Ekman", title = "{JavaScript-programmering}", publisher = pub-PAGINA, address = pub-PAGINA:adr, pages = "ca. 250", year = "1997", ISBN = "91-636-0442-6 (??Invalid checksum??)", ISBN-13 = "978-91-636-0442-3 (??Invalid checksum??)", LCCN = "????", bibdate = "Thu Aug 14 12:25:59 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/swedish.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "Skr 312", URL = "http://www.pagina.se/butik/product.html?9,20442,-1,dvrobyaksz", acknowledgement = ack-nhfb, language = "Swedish", } @Book{EMedia:1997:HJP, author = "{EMedia Professional, Inc.}", title = "Hands-on {Java} Programming Using {Microsoft Visual J++}", publisher = pub-MINDQ, address = pub-MINDQ:adr, pages = "????", year = "1997", ISBN = "1-57559-005-0", ISBN-13 = "978-1-57559-005-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mindq.com/", note = "CD ROM.", price = "US\$49.95", URL = "http://www.mindq.com/java/hovisjpp.html", acknowledgement = ack-nhfb, xxauthor = "{Rapid Systems Solutions}", } @Book{Emedia:1997:HVC, author = "{EMedia Professional, Inc.}", title = "Hands On {Visual Caf{\'e}}", publisher = pub-MINDQ, address = pub-MINDQ:adr, pages = "????", year = "1997", ISBN = "1-57559-017-4", ISBN-13 = "978-1-57559-017-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mindq.com/", note = "CD ROM.", price = "US\$49.95", URL = "http://www.mindq.com/java/viscafe.html", acknowledgement = ack-nhfb, } @Book{EMedia:1997:IJ, author = "{EMedia Professional, Inc.}", title = "Inside {JavaBeans}", publisher = pub-MINDQ, address = pub-MINDQ:adr, pages = "????", year = "1997", ISBN = "1-57559-020-4", ISBN-13 = "978-1-57559-020-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mindq.com/", note = "CD ROM.", price = "US\$49.95", URL = "http://www.mindq.com/java/insbeans.html", acknowledgement = ack-nhfb, } @Book{EMedia:1997:IPJa, author = "{EMedia Professional, Inc.}", title = "An Introduction to Programming {Java} Applets: Standard Edition", publisher = pub-MINDQ, address = pub-MINDQ:adr, pages = "????", year = "1997", ISBN = "1-57559-007-1 (??invalid ISBN??)", ISBN-13 = "978-1-57559-007-3 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mindq.com/", note = "CD ROM.", price = "US\$49.95", URL = "http://www.mindq.com/java/standard.html", acknowledgement = ack-nhfb, xxauthor = "{Rapid Systems Solutions}", } @Book{EMedia:1997:IPJb, author = "{EMedia Professional, Inc.}", title = "Introduction To Programming {Java} Applets: {Microsoft Visual J++} Edition", publisher = pub-MINDQ, address = pub-MINDQ:adr, pages = "????", year = "1997", ISBN = "1-57559-003-4", ISBN-13 = "978-1-57559-003-5", LCCN = "????", bibdate = "Fri Mar 14 08:04:53 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "CD ROM.", price = "US\$49.95", URL = "http://www.mindq.com/java/introjpp.html", acknowledgement = ack-nhfb, xxnote = "Duplicate ISBN with \cite{EMedia:1997:IPJc}.", } @Book{EMedia:1997:IPJc, author = "{EMedia Professional, Inc.}", title = "An Introduction to Programming {Java} Applets Using Sun {Java} Workshop", publisher = pub-MINDQ, address = pub-MINDQ:adr, year = "1997", ISBN = "1-57559-003-4", ISBN-13 = "978-1-57559-003-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mindq.com/", price = "US\$50", acknowledgement = ack-nhfb, xxauthor = "{Rapid Systems Solutions}", xxnote = "Duplicate ISBN with \cite{EMedia:1997:IPJa}.", } @Book{EMedia:1997:IPJd, author = "{EMedia Professional, Inc.}", title = "Introduction To Programming {Java} Applets: {Sun Java} Workshop Edition", publisher = pub-MINDQ, address = pub-MINDQ:adr, pages = "????", year = "1997", ISBN = "1-57559-007-7", ISBN-13 = "978-1-57559-007-3", LCCN = "????", bibdate = "Fri Mar 14 08:04:53 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "CD ROM.", price = "US\$49.95", URL = "http://www.mindq.com/java/introsun.html", acknowledgement = ack-nhfb, } @Book{EMedia:1997:JB, author = "{EMedia Professional, Inc.}", title = "{Java Beans}", publisher = pub-MINDQ, address = pub-MINDQ:adr, pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Fri Mar 14 08:04:53 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "CD ROM.", price = "US\$49.95", URL = "http://www.mindq.com/java/javaintro.html", acknowledgement = ack-nhfb, } @Book{EMedia:1997:JPC, author = "{EMedia Professional, Inc.}", title = "{Java} Programming and Core Class Libraries", publisher = pub-MINDQ, address = pub-MINDQ:adr, pages = "????", year = "1997", ISBN = "1-57559-008-5", ISBN-13 = "978-1-57559-008-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mindq.com/", note = "CD ROM.", price = "US\$49.95", URL = "http://www.mindq.com/java/jpaccl.html", acknowledgement = ack-nhfb, xxauthor = "Rapid Systems Solutions", } @Book{Enete:1997:JJB, author = "Noel Enete", title = "{Java} Jumpstart: {A} Beginner's Guide to Internet Programming", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xv + 495", month = mar, year = "1997", ISBN = "0-13-565854-3", ISBN-13 = "978-0-13-565854-3", LCCN = "QA76.73.J38E54 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0135658543/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$29.95", URL = "http://www.prenhall.com/allbooks/ptr_0135658543.html", acknowledgement = ack-nhfb, dimensions = "9.28in x 7.06in x 1.47in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", xxtitle = "{Java} Jump Start: {A} Beginner's Guide to {Internet} Programming", } @MastersThesis{Engberg:1997:MJV, author = "David A. Engberg", title = "Multi-user {Java\slash VRML} performance: research project", type = "Master of Science, Plan II", school = "University of California, Berkeley. Department of Electrical Engineering and Computer Sciences", address = "Berkeley, CA, USA", pages = "10", year = "1997", LCCN = "T7.49.1997 E65", bibdate = "Mon May 11 14:39:14 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Book{Englander:1997:DJB, author = "Robert Englander", title = "Developing {Java Beans}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xvi + 298", year = "1997", ISBN = "1-56592-289-1", ISBN-13 = "978-1-56592-289-1", LCCN = "QA76.73.J38 E64 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", note = "Excerpted in \cite{Englander:1997:JTB}.", price = "US\$29.95", URL = "http://www.ora.com/catalog/javabeans/", acknowledgement = ack-nhfb, xxtitle = "Developing {JavaBeans}", } @Book{Englander:1997:JGD, author = "Robert Englander", title = "{JavaBeans} Guide du Programmeur", publisher = pub-ORA, address = pub-ORA:adr, month = dec, year = "1997", ISBN = "2-84177-038-9", ISBN-13 = "978-2-84177-038-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.editions-oreilly.fr/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "220 FF", URL = "http://www.editions-oreilly.fr/international/france/prog/java-beans.html", acknowledgement = ack-nhfb, language = "French", } @Article{Englander:1997:JTB, author = "Rob Englander", title = "{Java} Talk: The {BeanBox} Tool", journal = j-SILICON-GRAPHICS-WORLD, volume = "7", number = "8", pages = "18--19", month = aug, year = "1997", ISSN = "1057-7041", bibdate = "Mon Aug 11 09:00:08 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Excerpted from \cite{Englander:1997:DJB}.", fjournal = "Silicon Graphics World", } @Book{Entsminger:1997:WJ, author = "Gary Entsminger", title = "The Way of {Java}", publisher = pub-PH, address = pub-PH:adr, pages = "xix + 392", year = "1997", ISBN = "0-13-491978-5", ISBN-13 = "978-0-13-491978-2", LCCN = "QA76.73.J38E58 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0134919785/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$34.95", URL = "http://www.prenhall.com/allbooks/ptr_0134919785.html", acknowledgement = ack-nhfb, dimensions = "9.24in x 7.03in x 1.35in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Book{Erlenkotter:1997:JHS, author = "Helmut Erlenk{\"o}tter and Volker Reher", title = "{Java. HTML, Scripts, Applets und Anwendungen}", publisher = "Rowohlt Taschenbuch", address = "Reinbek bei Hamburg, Germany", pages = "320", year = "1997", ISBN = "3-499-19872-X", ISBN-13 = "978-3-499-19872-4", LCCN = "????", bibdate = "Sat May 15 16:55:42 1999", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.abc.de/rowohlt.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "20 DM", URL = "http://www.abc.de/rowohlt.html; http://www.rowohlt.de/rowohlt/rororo/klappen/2-97comp.htm; http://www.rowohlt.de/rowohlt/rororo/klappen/2-97comp.htm#Erlenkö tter2", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.abc.de/rowohlt.html", } @Article{Etiel:1997:WDJ, author = "Yoav Etiel", title = "What does {Java} bring to engineering?", journal = j-SUNSERVER, volume = "11", number = "10", pages = "22--22", month = oct, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Book{Eudida:1997:PGJ, author = "{Eudida S.a.s.}", title = "{PC} Guide {Java}", publisher = pub-JACKSON-LIBRI, address = pub-JACKSON-LIBRI:adr, pages = "????", month = nov, year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "49,000 L.", acknowledgement = ack-nhfb, language = "Italian", url-publisher = "http://www.jacksonlibri.it/", } @Article{Farrow:1997:UJa, author = "Rik Farrow", title = "Using {Java}", journal = j-LOGIN, volume = "22", number = "2", pages = "19--23", month = apr, year = "1997", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Fri May 30 17:44:50 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/java/javaindex.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{Farrow:1997:UJb, author = "Rik Farrow", title = "Using {Java}", journal = j-LOGIN, volume = "22", number = "4", pages = "33--36", month = may, year = "1997", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Aug 12 14:32:13 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/java/javaindex.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{Farrow:1997:UJc, author = "Rik Farrow", title = "Using {Java}", journal = j-LOGIN, volume = "22", number = "5", pages = "32--35", month = jun, year = "1997", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Wed Aug 13 10:48:45 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/cgi-bin/sortbib.pl?-sA", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{Farrow:1997:UJd, author = "Rik Farrow", title = "Using {Java}", journal = j-LOGIN, volume = "22", number = "4", pages = "33--36", month = aug, year = "1997", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Wed Aug 13 10:48:45 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/cgi-bin/sortbib.pl?-sA", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Book{Fawcett:1997:JPP, author = "Neil Fawcett and Terry Ridge", title = "{Java} Programming: {A} Practical Guide", publisher = "Butterworth-Heinemann", address = "Oxford, England", pages = "x + 434", month = jul, year = "1997", ISBN = "0-7506-3344-1 (softcover)", ISBN-13 = "978-0-7506-3344-4 (softcover)", LCCN = "QA76.73.J38F39 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.butterworth.heinemann.co.uk/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$26.95", acknowledgement = ack-nhfb, } @Book{Feather:1997:J, author = "Stephen Feather", title = "{JavaScript}", publisher = pub-SOFTBANK, address = pub-SOFTBANK:adr, pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "3300 yen", URL = "http://www.softbank.co.jp/sbnet/books/editer/4th/jsp/; http://www.softbank.co.jp/softbank/publishing/", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Feather:1997:UJ, author = "Stephen Feather and Luke Cassady-Dorion", title = "Usare {JavaScript}", publisher = pub-JACKSON-LIBRI, address = pub-JACKSON-LIBRI:adr, pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 16:39:50 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Italian translation of \cite{Feather:1996:JE}. Includes CD-ROM.", price = "65000 Lire", URL = "http://pallade.iol.it/cgi-bin/cmsearch.pl; http://pallade.iol.it/cgi-bin/mercator2/mallurl/AMARCRUDSFAMBATTCORSa001EH/bookstore/jackson/001886.html; http://www.jacksonlibri.it/", acknowledgement = ack-nhfb, language = "Italian", } @Article{Fedyk:1997:LEJ, author = "Roger Fedyk", title = "Letter to the Editor: {Java} Unveiled", journal = j-BYTE, volume = "22", number = "6", pages = "19--19", month = jun, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Fri May 23 12:32:31 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Feghhi:1997:WDG, author = "Jalal Feghhi", title = "{Web} Developer's Guide to {Java Beans}", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "xvii + 398", year = "1997", ISBN = "1-57610-121-5", ISBN-13 = "978-1-57610-121-6", LCCN = "QA76.73.J38F44 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1576101215/wholesaleproductA/; http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99; CDN\$55.99", URL = "http://www.coriolis.com/cgi-win/KBSearch.exe; http://www.coriolis.com/Site/MSIE/Books/Ind/wdgjb.htm", acknowledgement = ack-nhfb, dimensions = "9.24in x 7.41in x 1.13in", paperback = "yes", } @Article{Felten:1997:IRW, author = "Edward W. Felten", title = "Inside Risks: {Webware} Security", journal = j-CACM, volume = "40", number = "4", pages = "130--130", month = apr, year = "1997", CODEN = "CACMA2", ISSN = "0001-0782 (print), 1557-7317 (electronic)", ISSN-L = "0001-0782", bibdate = "Fri Oct 10 18:17:54 MDT 1997", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/citations/journals/cacm/1997-40-4/p130-felten/", acknowledgement = ack-nhfb, fjournal = "Communications of the ACM", keywords = "human factors; security", subject = "{\bf C.2.0} Computer Systems Organization, COMPUTER-COMMUNICATION NETWORKS, General, Security and protection. {\bf H.3.4} Information Systems, INFORMATION STORAGE AND RETRIEVAL, Systems and Software, World Wide Web (WWW). {\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Java.", } @Article{Fetik:1997:JWS, author = "Richard Fetik", title = "{JavaScript Web} Site Overview: {JavaScript} makes it easy to create dynamic sites that customize pages to the current user's interaction with the site", journal = j-WEB-APPS, volume = "1", number = "1", pages = "35--43", month = jan # "\slash " # feb, year = "1997", ISSN = "1090-2287", bibdate = "Sat Jun 28 10:34:20 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Web Apps magazine", } @Book{Fiorentino:1997:CJL, author = "Giuseppe Fiorentino and Maria Rita Lagan{\`a} and Francesco Romani and Franco Turini", title = "{C E Java} Laboratorio di Programmazione", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, month = sep, year = "1997", ISBN = "88-386-0739-7", ISBN-13 = "978-88-386-0739-4", LCCN = "????", bibdate = "Fri Nov 01 05:04:42 2002", bibsource = "http://pallade.iol.it/cgi-bin/mercator2/mallurl/CESSECCOCEDRBILEDOMAa000eC/mcghill/index.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "37000 L.", acknowledgement = ack-nhfb, language = "Italian", } @Book{Flanagan:1997:JDG, author = "David Flanagan", title = "{JavaScript}: The Definitive Guide", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xiv + 647", month = feb, year = "1997", ISBN = "1-56592-234-4", ISBN-13 = "978-1-56592-234-1", LCCN = "QA76.73.V38 F53 1997", bibdate = "Tue Aug 19 12:02:00 1997", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.amazon.com/exec/obidos/ISBN=1565922344/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$32.95", acknowledgement = ack-nhfb, dimensions = "9.23in x 7.04in x 1.38in", keywords = "(computer program language); Java (Computer program language); JavaScript; Object-oriented programming (Computer science); technology -- computers and computer technology; World Wide Web servers", paperback = "yes", } @Book{Flanagan:1997:JEN, author = "David Flanagan", title = "{Java} Examples in a Nutshell: {A} Companion Volume to {Java} in a Nutshell", publisher = pub-ORA, address = pub-ORA:adr, pages = "xiv + 397", year = "1997", ISBN = "1-56592-371-5", ISBN-13 = "978-1-56592-371-3", LCCN = "QA76.73.J38F552 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", price = "US\$19.95", URL = "http://www.ora.com/catalog/jenut/", acknowledgement = ack-nhfb, url-author = "http://www.ora.com/catalog/jenut/author.html", url-publisher = "http://www.ora.com/", } @Book{Flanagan:1997:JN, author = "David Flanagan and others", title = "{Java} in a Nutshell", publisher = pub-ORA, address = pub-ORA:adr, edition = "Deluxe", pages = "xvi + 610", year = "1997", ISBN = "1-56592-304-9", ISBN-13 = "978-1-56592-304-1", LCCN = "QA76.73.J38 J38 1997", bibdate = "Mon May 11 10:27:40 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$69.95", URL = "http://www.ora.com/catalog/javadeluxe/; http://www.oreilly.com/catalog/9781565923041; http://www.oreilly.com/catalog/javadeluxe", acknowledgement = ack-nhfb, } @Book{Flanagan:1997:JNa, author = "David Flanagan", title = "{Java in a Nutshell}", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", month = oct, year = "1997", ISBN = "3-89721-100-9 (??invalid ISBN??)", ISBN-13 = "978-3-89721-100-1 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.de/", note = "Deutsche Ausgabe.", price = "49 DM", URL = "http://www.oreilly.de/german/java/javanut2/", acknowledgement = ack-nhfb, language = "German", } @Book{Flanagan:1997:JNb, author = "David Flanagan", title = "{Java} in a Nutshell", publisher = pub-ORA, address = pub-ORA:adr, pages = "????", year = "1997", ISBN = "4-900900-08-7", ISBN-13 = "978-4-900900-08-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.oreilly.co.jp/", note = "Japanese translation.", price = "3900 yen", URL = "http://www.ora.com/catalog/jscriptbeta/author.html; http://www.ora.com/international/catalog/japanese/inet/java.html; http://www.ora.com/international/japan/; http://www.oreilly.co.jp/BOOK/java.htm", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Flanagan:1997:JND, author = "David Flanagan", title = "{Java} in a Nutshell: a desktop quick reference", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xvi + 610", year = "1997", ISBN = "1-56592-262-X", ISBN-13 = "978-1-56592-262-4", LCCN = "QA76.73.J38 F553 1997", bibdate = "Mon Apr 18 14:53:07 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; z3950.loc.gov:7090/Voyager", price = "US\$24.95", series = "The Java series", URL = "http://www.oreilly.com/catalog/9781565922624; http://www.oreilly.com/catalog/doctor; http://www.oreilly.com/catalog/javanut2", acknowledgement = ack-nhfb, keywords = "Java (computer program language); technology -- computers and computer technology", remark = "``Covers Java 1.0'' --- cover p. [1]. Contains an accelerated introduction to Java for C and C++ programmers who want to learn the language fast.", subject = "Java (Computer program language); Web servers; Object-oriented programming (Computer science)", } @Book{Flanagan:1997:JNDa, author = "David Flanagan and others", title = "{Java} in a Nutshell, Deluxe Edition", publisher = pub-ORA, address = pub-ORA:adr, edition = "Deluxe", pages = "xvi + 610", year = "1997", ISBN = "1-56592-304-9", ISBN-13 = "978-1-56592-304-1", LCCN = "QA76.73.J38 J38 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", price = "US\$69.95", URL = "http://www.ora.com/catalog/javadeluxe/; http://www.ora.com/catalog/{javadeluxe}/; http://www.oreilly.com/catalog/javadeluxe", acknowledgement = ack-nhfb, } @Book{Flanagan:1997:JNDb, author = "David Flanagan", title = "{Java} in a Nutshell: a desktop quick reference", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xvi + 610", year = "1997", ISBN = "1-56592-262-X, 1-56592-273-5", ISBN-13 = "978-1-56592-262-4, 978-1-56592-273-0", LCCN = "QA76.73.J38F553 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", price = "US\$20", series = "Java Ser", URL = "http://www.ora.com/catalog/javanut2/noframes.html", acknowledgement = ack-nhfb, keywords = "Java (computer program language); technology -- computers and computer technology", } @Book{Flanagan:1997:JRL, author = "David Flanagan and Mark Grand and Pat Niemeyer and Josh Peck and John Zukowski", title = "{Java} Reference Library on the {Web}", publisher = pub-ORA, address = pub-ORA:adr, pages = "4000 (est.)", month = nov, year = "1997", ISBN = "1-56592-359-6", ISBN-13 = "978-1-56592-359-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", price = "US\$59.95", URL = "http://www.ora.com/catalog/javarlw/", acknowledgement = ack-nhfb, } @Book{Flanagan:1997:JTO, author = "David Flanagan", title = "{Java} tehok{\'o}ytt{\'o}j{\'o}n opas", publisher = "Suomen Atk-kustannus Oy", address = "????", month = dec, year = "1997", ISBN = "951-762-494-8", ISBN-13 = "978-951-762-494-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.satku.fi/", price = "????", URL = "http://www.satku.fi/kirjat/4javateho.htm", acknowledgement = ack-nhfb, language = "Finnish", } @Article{Flanagan:1997:RJD, author = "David Flanagan", title = "Review: {JavaScript}, The Definitive Guide (Beta Edition)", journal = j-LOGIN, volume = "22", number = "1", pages = "60--61", month = feb, year = "1997", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue May 05 08:09:38 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/cgi-bin/sortbib.pl?-sA", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{Flohr:1997:IIS, author = "Udo Flohr", title = "Intelligent Intranets --- Some tips and products that will help you avoid anarchy", journal = j-BYTE, volume = "22", number = "8", pages = "69--??", month = aug, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Aug 23 06:59:32 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Foster:1997:TUS, author = "Ian Foster and George K. Thiruvathukal and Steven Tuecke", title = "Technologies for ubiquitous supercomputing: a {Java} interface to the {Nexus} communication system", journal = j-CPE, volume = "9", number = "6", pages = "465--475", month = jun, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:32 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13871; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13871&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Fox:1997:EJC, author = "Geoffrey Fox", title = "Editorial: {Java} for computational science and engineering --- simulation and modeling", journal = j-CPE, volume = "9", number = "6", pages = "413--414", month = jun, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:32 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13882; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13882&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Fox:1997:JCS, author = "Geoffrey Fox", title = "{Java} for computational science and engineering --- simulation and modeling {II}", journal = j-CPE, volume = "9", number = "11", pages = "1001--1002", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13845; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13845&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Fox:1997:JKW, author = "Jim Fox", title = "Is {Java} the Key to {Web} Animation?", journal = j-SUNEXPERT, volume = "8", number = "6", pages = "72, 75, 76, 78, 80", month = jun, year = "1997", ISSN = "1053-9239", bibdate = "Thu Jun 26 09:50:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Fox:1997:JPC, author = "Geoffrey C. Fox and Wojtek Furmanski", title = "{Java} for parallel computing and as a general language for scientific and engineering simulation and modeling", journal = j-CPE, volume = "9", number = "6", pages = "415--425", month = jun, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:32 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13868; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13868&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Fox:1997:PFJ, author = "Geoffrey Fox and Xiaoming Li and Zheng Qiang and Wu Zhigang", title = "A prototype of {Fortran}-to-{Java} converter", journal = j-CPE, volume = "9", number = "11", pages = "1047--1061", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.interscience.wiley.com/jpages/1040-3108/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13832; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13832&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{FraminanTorres:1997:JAD, author = "Jos{\'e} Manuel {Frami{\~n}{\'a}n Torres}", title = "{Java}: Al {D}{\'\i}a en una Hora", publisher = pub-ANAYA-MULTIMEDIA, address = pub-ANAYA-MULTIMEDIA:adr, pages = "128", year = "1997", ISBN = "84-415-0061-4", ISBN-13 = "978-84-415-0061-7", LCCN = "????", bibdate = "Sat May 15 17:01:24 1999", bibsource = "http://www.anaya.es/multimedia/; http://www.edera.es/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", price = "495 Ptas.", URL = "http://www.anaya.es/Catalogo/CGA?act=L&art=2316035&ed=2300; http://www.anaya.es/multimedia/; http://www.anayamultimedia.es/cgi-multi/notas_prensa.pl?2316035&*2&torres&1", acknowledgement = ack-nhfb, language = "Catalan", } @Article{Frenger:1997:RRL, author = "Paul Frenger", title = "A Review of Robotics Languages", journal = j-SIGPLAN, volume = "32", number = "4", pages = "27--31", month = apr, year = "1997", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Wed Jun 4 13:20:36 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses PostScript, Ghostscript, Tps (transportable PostScript), Java, and others.", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Book{Frentzen:1997:JPA, author = "Jeff Frentzen", title = "{JavaScript} Programmer's Annotated Archives", publisher = pub-OSBORNE, address = pub-OSBORNE:adr, pages = "????", month = nov, year = "1997", ISBN = "0-07-882364-1 (softcover)", ISBN-13 = "978-0-07-882364-0 (softcover)", LCCN = "????", bibdate = "Sat Sep 13 14:36:20 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$39.99", } @InProceedings{Freytag:1997:JIAa, author = "Asmus Freytag", title = "{Java} Internationalization Architecture", crossref = "UC:1997:ESI", pages = "??--??", year = "1997", bibdate = "Thu Aug 20 21:00:11 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc10/program.html", acknowledgement = ack-nhfb, } @InProceedings{Freytag:1997:JIAb, author = "Asmus Freytag", title = "{Java} Internationalization Architecture --- Continued", crossref = "UC:1997:ESI", pages = "??--??", year = "1997", bibdate = "Thu Aug 20 21:00:11 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc10/program.html", acknowledgement = ack-nhfb, } @Book{Friedel:1997:JPC, author = "David H. Friedel and Joshua Kerievsky and Anthony Potts", title = "{Java-Programmierung mit Caf{\'e}}", publisher = pub-ITCP, address = pub-ITCP:adr, pages = "461", year = "1997", ISBN = "3-8266-0315-X (??invalid ISBN??)", ISBN-13 = "978-3-8266-0315-0 (??invalid ISBN??)", LCCN = "????", bibdate = "Thu Aug 14 17:40:22 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "50 DM", URL = "http://www.itp.de/; http://www.thomson.com/intluk.html", acknowledgement = ack-nhfb, language = "German", } @Book{Froherz:1997:TPJ, author = "Michael Froherz and Peter Toenne", title = "{T{\"o}nne: Projekte mit Java}", publisher = pub-ITCP, address = pub-ITCP:adr, pages = "450", year = "1997", ISBN = "3-8266-0316-8 (??invalid ISBN??)", ISBN-13 = "978-3-8266-0316-7 (??invalid ISBN??)", LCCN = "????", bibdate = "Tue Mar 03 10:22:15 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "69 DM", URL = "http://www.itp.de/", acknowledgement = ack-nhfb, language = "German", } @Book{Fronckowiak:1997:TYD, author = "John Fronckowiak and Gordon B. McMillan", title = "Teach Yourself Database Programming With {Visual J++} In 21 Days", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxiii + 774", year = "1997", ISBN = "1-57521-262-5", ISBN-13 = "978-1-57521-262-3", LCCN = "QA76.73.J38F76 1997", bibdate = "Mon Jun 22 09:25:09 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575212625.html", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/", } @Book{Gaither:1997:MGJ, author = "Mark Gaither", title = "60 Minute Guide to {Java}", publisher = pub-SOFTBANK, address = pub-SOFTBANK:adr, pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.lanw.com/mgbio.htm; http://www.softbank.co.jp/publishing/osbooks/java/java60.html; http://www.softbank.co.jp/softbank/publishing/", acknowledgement = ack-nhfb, language = "Japanese", } @Article{Gall:1997:PJB, author = "Ulrich Gall and Franz J. Hauck", title = "{Promondia}: {A} {Java}-based framework for real-time group communication in the {Web}", journal = j-COMP-NET-ISDN, volume = "29", number = "8--13", pages = "917--926", day = "30", month = sep, year = "1997", CODEN = "CNISE9", ISSN = "0169-7552", ISSN-L = "0169-7552", bibdate = "Sat Sep 25 15:30:03 1999", bibsource = "ftp://ftp.ira.uka.de/pub/bibliography/Misc/Ciancarini.bib; http://www.elsevier.com/cgi-bin/cas/tree/store/cna/cas_free/browse/browse.cgi?year=1997&volume=29&issue=08-13; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.elsevier.com/cgi-bin/cas/tree/store/comnet/cas_sub/browse/browse.cgi?year=1997&volume=29&issue=08-13&aid=1682", acknowledgement = ack-nhfb, annote = "Proc. 6th Int. WWW Conference, Paris", fjournal = "Computer Networks and ISDN Systems", keyword = "groupware, WWW", } @Article{Gantz:1997:JCB, author = "John Gantz", title = "Has the {Java} crusaded been infiltrated?", journal = j-COMPUTERWORLD, volume = "31", number = "24", pages = "33--33", day = "16", month = jun, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Thu Jul 03 17:01:19 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Argues that 100\% Pure Java will be unattainable, as vendors promote proprietary changes to the language and environment.", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Garber:1997:NBAa, author = "Lee Garber", title = "News Briefs: Agency: Net Use Hasn't Hurt {US} Phone System; {Apple} Unveils Turnaround Strategy; {JTC} Rejects {Java} Standards Plan; Vendors Plan 300-nm Wafers; Battle Brews Over Smart Card Encryption; Countries Lift {Internet} Telephone Ban; {Motorola} Proposes Satellite System; Vendors Agree on High-Capacity Disks; ``Wrapping'' Software Sales; {Tonga} Offers Domain Name Alternative", journal = j-COMPUTER, volume = "30", number = "9", pages = "19--22", month = sep, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Tue Apr 14 08:05:54 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://neumann.computer.org/co/books/co1997/pdf/r9019.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Garber:1997:NBAb, author = "Lee Garber", title = "News Briefs: Appliance War Could Make {Web} Less Open; {Microsoft}, {Netscape} Agree of {VRML}; {CORBA} to Stay Independent of {Java}; {US} Runs out of Visas for Foreign Computer Workers; New {Year 2000} Problems Emerge", journal = j-COMPUTER, volume = "30", number = "10", pages = "20, 23--25", month = oct, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Tue Apr 14 08:05:58 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://pdf.computer.org/co/books/co1997/pdf/rx020.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Garber:1997:NBB, author = "Lee Garber", title = "News Briefs: Binary Version Could Bring {VRML} into the Mainstream. {FCC} Jumps Into {Internet} Fray. {Java} and Floating-Point Math. {Intel} to Design {NDRAM}. Battle over Net Telephony. Vendors Seek Fast Modems. {US} Permits Export of Strong Encryption. {E}-commerce Nears \$1 Billion. Chasing the Blue Light. Personal {E}-mail Use Will Soar", journal = j-COMPUTER, volume = "30", number = "4", pages = "25--27", month = apr, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Tue May 06 16:51:53 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Garber:1997:NBJ, author = "Lee Garber and David Clark", title = "News Briefs: Judge Rejects {US} Restrictions on Export of Encryption; {Intel}, {HP} Unveil {Merced} Chip; {Java} Wars Heat Up; {AOL} Acquires {CompuServe} Subscribers; Confusion in the {DVD} Marketplace; `Amazing Grace' Heads to Sea; {PC} Firms Back Down on Convergence; Business Use Will Drive {Internet} Growth; Company Offers \$1-Million Prize for Hackers", journal = j-COMPUTER, volume = "30", number = "11", pages = "22--25", month = nov, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Mon Dec 8 20:53:24 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/computer1990.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://pdf.computer.org/co/books/co1997/pdf/ry022.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Garber:1997:NBP, author = "Lee Garber", title = "News Briefs: Plans for {Java} Standards Draws Fire", journal = j-COMPUTER, volume = "30", number = "7", pages = "17--17", month = jul, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Fri Jul 11 09:20:43 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses the pending request by Sun to the Joint Technical Committee of the International Organization for Standardization and the International Electrotechnical Commission to standardize Java, and the opposition that has been raised by Sun's competitors.", fjournal = "Computer", } @Book{Garcia:1997:HCJ, author = "Alonso Alvarez Garcia", title = "{HTML CGI Java} Servidores Tecnologia {WWW}", publisher = pub-ANAYA-MULTIMEDIA, address = pub-ANAYA-MULTIMEDIA:adr, pages = "????", year = "1997", ISBN = "84-7614-959-X", ISBN-13 = "978-84-7614-959-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/spanish.html; http://www.anaya.es/multimedia/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "3250 Ptas.", URL = "http://www.anaya.es/Catalogo/CGA?act=L&art=2321005&ed=2300; http://www.anaya.es/multimedia/", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Garfinkel:1997:WSC, author = "Simson Garfinkel and Gene Spafford", title = "{Web} Security \& Commerce", publisher = pub-ORA, address = pub-ORA:adr, pages = "xx + 483", year = "1997", ISBN = "1-56592-269-7", ISBN-13 = "978-1-56592-269-3", LCCN = "TK5105.59 .G385 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", note = "Covers Java, JavaScript, and ActiveX.", price = "US\$32.95", URL = "http://www.ora.com/catalog/websec/", acknowledgement = ack-nhfb, } @InProceedings{Gargaro:1997:ACA, author = "A. Gargaro and G. Smith and R. J. Theriault and R. A. Volz", title = "{Aria-Java} Communication in {ADEPT}", crossref = "ACM:1997:PTA", pages = "231--246", year = "1997", bibdate = "Tue Apr 20 13:43:51 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Book{Garrett:1997:VCP, author = "Doug Garrett and Anthony Potts and David H. {Friedel, Jr.}", title = "{Visual Caf{\'e}} Programming {FrontRunner}: The Hands-on Guide to Mastering {Java} Development with {Visual Caf{\'e}}", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "xx + 417", year = "1997", ISBN = "1-57610-160-6", ISBN-13 = "978-1-57610-160-5", LCCN = "QA76.73.J38 G36 1997", bibdate = "Wed Dec 31 14:34:22 1997", bibsource = "http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.99, CDN\$41.99", URL = "http://www.coriolis.com/; http://www.coriolis.com/Site/MSIE/Books/Ind/cprfrmac.htm; http://www.coriolis.com/site/msie/books/ind/cprfrmac.htm", acknowledgement = ack-nhfb, } @Book{Garside:1997:JFC, author = "Roger Garside and John A. Mariani", title = "{Java} First Contact", publisher = pub-ITCP, address = pub-ITCP:adr, pages = "xxvi + 660", year = "1997", ISBN = "1-85032-316-X", ISBN-13 = "978-1-85032-316-7", LCCN = "QA76.73.J38G37 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.thomson.com/intlitcp.html", price = "US\$40", acknowledgement = ack-nhfb, annote = "Also published by Course Technology, Cambridge, MA, USA.", url-publisher = "http://www.thomson.com/intlitcp.html", } @Article{Gathman:1997:TUJ, author = "Stuart D. Gathman", title = "A Text {UI} for the {Java AWT}", journal = j-DDJ, volume = "22", number = "9", pages = "38, 40--42, 45, 84, 86", month = sep, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Mon Aug 11 12:53:44 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Gaudin:1997:DAP, author = "Sharon Gaudin", title = "Developers await prime-time {Java}", journal = j-COMPUTERWORLD, volume = "31", number = "16", pages = "47--48", day = "21", month = apr, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Wed Apr 30 12:14:50 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1997:IGJ, author = "Sharon Gaudin", title = "{IBM} to give {Java} cross-platform company: {Smalltalk}, {Basic} go platform-independent", journal = j-COMPUTERWORLD, volume = "31", number = "24", pages = "1, 12", day = "16", month = jun, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Thu Jul 03 16:56:20 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1997:IPB, author = "Sharon Gaudin", title = "{IBM} plan builds on {Java}", journal = j-COMPUTERWORLD, volume = "31", number = "25", pages = "61--62", day = "23", month = jun, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Jun 27 09:54:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IBM's Universal Virtual Machine (UVM) will support Java, Smalltalk, Basic, and possibly Cobol and C++.", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1997:JBM, author = "Sharon Gaudin", title = "{Java} becomes more consumer-friendly", journal = j-COMPUTERWORLD, volume = "31", number = "27", pages = "64--64", day = "7", month = jul, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Thu Jul 10 13:55:30 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", fjournal = "ComputerWorld", } @Article{Gaudin:1997:JCL, author = "Sharon Gaudin", title = "{Java}, {CORBA} to link up: {Sun's} cross-platform plan targets {Web} access", journal = j-COMPUTERWORLD, volume = "31", number = "12", pages = "1, 121", day = "24", month = mar, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Wed Apr 02 07:15:51 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1997:JSC, author = "Sharon Gaudin", title = "{Java}'s speed, cross-platform issues targeted", journal = j-COMPUTERWORLD, volume = "31", number = "14", pages = "1, 113", day = "7", month = apr, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Tue Apr 22 07:48:54 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1997:MTR, author = "Sharon Gaudin", title = "{Microsoft} tries to reel in {Java} jumpers: {Redmond} to {C++} developers: Write {Java} for {Windows}", journal = j-COMPUTERWORLD, volume = "31", number = "27", pages = "20--20", day = "7", month = jul, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Thu Jul 10 13:55:30 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", fjournal = "ComputerWorld", } @Article{Gaudin:1997:NUO, author = "Sharon Gaudin and April Jacobs", title = "{NC} users overcome early {Java} glitches", journal = j-COMPUTERWORLD, volume = "31", number = "27", pages = "1, 107", day = "7", month = jul, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Thu Jul 10 13:55:30 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", fjournal = "ComputerWorld", } @Article{Gaudin:1997:OAS, author = "Sharon Gaudin", title = "Online Access: Scientists use {Java}, {CORBA} to study {DNA}", journal = j-COMPUTERWORLD, volume = "31", number = "31", pages = "55, 57", day = "4", month = aug, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Aug 11 08:48:32 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", annote = "Discusses the DNA database at the European BioInformatics Institute in Cambridge, England, which is soon to be accessible via the World-Wide Web.", fjournal = "ComputerWorld", } @Article{Gaudin:1997:OJL, author = "Sharon Gaudin", title = "{OpenDoc\slash Java} link touted", journal = j-COMPUTERWORLD, volume = "31", number = "4", pages = "49--49", day = "27", month = jan, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Thu Jan 30 07:55:52 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1997:OTG, author = "Sharon Gaudin", title = "{Oracle} tools to get {Java}, {C++} technology", journal = j-COMPUTERWORLD, volume = "31", number = "6", pages = "16--16", day = "10", month = feb, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Feb 24 10:50:16 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1997:RJT, author = "Sharon Gaudin", title = "{RAD Java} tools lure business users", journal = j-COMPUTERWORLD, volume = "31", number = "24", pages = "57, 60", day = "16", month = jun, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Thu Jul 03 17:05:29 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1997:SAP, author = "Sharon Gaudin", title = "Sun adds on to 100\% {Pure Java}", journal = j-COMPUTERWORLD, volume = "31", number = "23", pages = "12--12", day = "9", month = jun, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Jun 27 08:25:01 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1997:SHJ, author = "Sharon Gaudin", title = "{Sun} hits {Java} punch list, but users crave speed", journal = j-COMPUTERWORLD, volume = "31", number = "29", pages = "10--10", day = "21", month = jul, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Aug 11 08:34:14 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, annote = "From the article: ``Java is about to gain drag-and-drop capabilities, a way to turn ActiveX controls into Java applets, and a way to run Java applets inside an ActiveX container, such as Microsoft Corp.'s Office or Excel\ldots{}. JavaSoft says that it will be answering those pleas [for more speed] with its upcoming HotSpot Java Virtual Machine, which is slated to go into beta testing this fall. \ldots{} HotSpot was designed to run Java code faster by compiling it --- maybe even faster than native C++ code, \ldots{}''.", fjournal = "ComputerWorld", } @Article{Gaudin:1997:SLF, author = "Sharon Gaudin", title = "{Sun} loses first battle in {Java} standard quest: Key issue: Who will control changes to platform?", journal = j-COMPUTERWORLD, volume = "31", number = "23", pages = "3--3", day = "9", month = jun, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Jun 27 08:25:01 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1997:SSJ, author = "Sharon Gaudin", title = "{Sun} to spread {Java} beyond computers", journal = j-COMPUTERWORLD, volume = "31", number = "13", pages = "16--16", day = "31", month = mar, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Sat Apr 05 11:50:32 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1997:STJ, author = "Sharon Gaudin", title = "{Sun} tweaks {Java}, but faster version in works", journal = j-COMPUTERWORLD, volume = "31", number = "8", pages = "14--14", day = "24", month = feb, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Mar 03 11:35:45 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gaudin:1997:VBJ, author = "Sharon Gaudin", title = "{Visa} boosts {Java}'s credit line: smart cards will redefine how plastic is used", journal = j-COMPUTERWORLD, volume = "31", number = "31", pages = "1, 16", day = "4", month = aug, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Aug 11 08:34:14 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, annote = "From the article: ``In the biggest Java win to date, credit-card giant Visa International, Inc{.} early next year will begin replacing the magnetic strips on its cards with Java-based computer chips. \ldots{} By the end of next year [1998], Visa expects to have 2 million to 3 million Java-based smart cards in use in the U.S. \ldots{} By 2001, the goals is to have 200 million chip cards circulating worldwide.''", fjournal = "ComputerWorld", } @Article{Gaudin:1997:YTC, author = "Sharon Gaudin", title = "You, too, can search for life on {Mars}: {Java} applet lets public take a closer look at planet", journal = j-COMPUTERWORLD, volume = "31", number = "28", pages = "53--54", day = "14", month = jul, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Jul 18 10:02:51 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://mars.graham.com/wits", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Geary:1997:GJA, author = "David M. Geary and Alan L. McClellan", title = "{Graphic {Java}. Das AWT beherrschen}", publisher = pub-HEINZ-HEISE, address = pub-HEINZ-HEISE:adr, pages = "607", year = "1997", ISBN = "3-88229-089-7", ISBN-13 = "978-3-88229-089-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.heise.de/buch/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "German translation of \cite{Geary:1997:GJMa}.", price = "88,00 DM", URL = "http://www.emedia.de/bin/bookshop?show=4864&id=", acknowledgement = ack-nhfb, keywords = "Computer graphics -- Computer programs; Java (Computer program language); object-oriented databases", language = "German", } @Book{Geary:1997:GJMa, author = "David M. Geary and Alan L. McClellan", title = "Graphic {Java}: Mastering the {AWT}", publisher = pub-SUNSOFT, address = pub-SUNSOFT:adr, pages = "xl + 600", year = "1997", ISBN = "0-13-565847-0", ISBN-13 = "978-0-13-565847-5", LCCN = "QA76.73.J38G43 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0135658470/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", note = "Available in German translation \cite{Geary:1997:GJA}.", price = "US\$39.95", series = "SunSoft Press Java series Java series (Mountain View, CA)", URL = "http://www.sun.com/smi/ssoftpress/books/Geary/Geary.html", acknowledgement = ack-nhfb, dimensions = "9.25in x 7.05in x 1.80in", keywords = "Computer graphics -- Computer programs; Java (Computer program language); object-oriented databases", paperback = "yes", } @Book{Geary:1997:GJMb, author = "David M. Geary and Alan L. McClellan", title = "Graphic {Java}: Mastering the {AWT}", publisher = pub-SUNSOFT, address = pub-SUNSOFT:adr, edition = "Second", pages = "900", month = jul, year = "1997", ISBN = "0-13-863077-1", ISBN-13 = "978-0-13-863077-5", LCCN = "QA76.73.J38G43 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$49.95", series = "SunSoft Press Java series Java series (Mountain View, CA)", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/01386/bud/0138630771.html; http://www.sun.com/smi/ssoftpress/books/Geary/Geary.html", acknowledgement = ack-nhfb, keywords = "Computer graphics -- Computer programs; Java (Computer program language); object-oriented databases", } @Book{Gieseke:1997:PPH, author = "Wolfram Gieseke and Michael Knapp", title = "{PC Praxisbuch Homepage-Design mit HTML \& Java}", publisher = pub-DATA-BECKER, address = pub-DATA-BECKER:adr, pages = "357", year = "1997", ISBN = "3-8158-1309-3", ISBN-13 = "978-3-8158-1309-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.data-becker.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "49 DM", URL = "http://www.data-becker.de/buecher/buchinfos/1309.htm; http://www.data-becker.de/buecher/buecher.htm#pcp homepage", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.data-becker.de/", xxtitle = "{Homepage-Design mit HTML und Java}", } @Article{Giguere:1997:JBN, author = "Eric Gigu{\`e}re", title = "{Java Beans} and the New Event Model", journal = j-DDJ, volume = "22", number = "4", pages = "50, 52, 53, 79, 80", month = apr, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat May 31 09:24:26 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Java Beans is a component model for building and using Java-based components. Eric examines the Java Beans specification and describes the event model that lets you glue components together.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Gilbert:1997:OOP, author = "Stephen Gilbert and Bill McCarty", title = "Object Oriented Programming In {Java}", publisher = pub-WAITE-GROUP, address = pub-WAITE-GROUP:adr, pages = "xxii + 953", year = "1997", ISBN = "1-57169-086-7", ISBN-13 = "978-1-57169-086-9", LCCN = "QA76.64.G55 1997", bibdate = "Mon Jun 22 09:26:18 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/waite/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "118,00 DM; US\$60", series = "Mitchell Waite Signature Series", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15716/bud/1571690867.html; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, xxtitle = "Object Oriented Programming In {Java} 1.1", } @Article{Gill:1997:ORD, author = "Philip Gill", title = "Object\slash Relational Databases: The Key to Mainstream Acceptance? {ORDBMS} may be as important as {Java} in bringing objects in from the code", journal = j-OBJECT-MAG, volume = "7", number = "2", pages = "14--15", month = apr, year = "1997", CODEN = "OBMAFO", ISSN = "1055-3614", bibdate = "Thu Apr 24 07:59:31 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Object Magazine", } @Article{Gillin:1997:FJP, author = "Paul Gillin", title = "Up Front: {Java} Politics", journal = j-COMPUTERWORLD, volume = "31", number = "19", pages = "2--2", day = "12", month = may, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri May 16 09:46:12 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Gillmor:1997:DDA, author = "Steve Gillmor", title = "Dial 411 for Directory Assistance --- {Novell}'s latest {NetWare} release bets big on {Java} and the intranet", journal = j-BYTE, volume = "22", number = "1", pages = "137--??", month = jan, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Jan 25 14:42:08 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Glahn:1997:FJ, author = "Kay Glahn", title = "{Free 4 Java}", publisher = pub-CARL-HANSER, address = pub-CARL-HANSER:adr, pages = "????", year = "1997", ISBN = "3-446-31130-0", ISBN-13 = "978-3-446-31130-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.hanser.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "40 DM", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.hanser.de/", } @Book{Glahn:1997:FJT, author = "Kay Glahn", title = "{Free 4 {Java}: Tools f{\"u}r das Internet. JDKs f{\"u}r Windows, Mac und UNIX}", publisher = "Computer und Literaturverlag", address = "????", pages = "????", month = jul, year = "1997", ISBN = "3-932311-30-2 (??invalid ISBN??)", ISBN-13 = "978-3-932311-30-7 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.emedia.de/bin/bookshop?verlag=Computer+und+Literaturverlag&id=; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "39 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Glahn:1997:JM, author = "Kay Glahn", title = "{Java mit Methode}", publisher = pub-CARL-HANSER, address = pub-CARL-HANSER:adr, pages = "1000", year = "1997", ISBN = "3-446-31103-3", ISBN-13 = "978-3-446-31103-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.hanser.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "98 DM", URL = "http://www.hanser.de/", acknowledgement = ack-nhfb, language = "German", } @Book{Glahn:1997:JMA, author = "Kay Glahn and others", title = "{Java 1.1 mit Methode: Applikationen und Applets im Internet und Intranet}", publisher = "Computer und Literaturverlag", address = "????", pages = "????", month = nov, year = "1997", ISBN = "3-9823110-3-5 (??Invalid checksum??)", ISBN-13 = "978-3-9823110-3-6 (??Invalid checksum??)", LCCN = "????", bibdate = "Mon May 11 09:42:00 1998", bibsource = "http://www.emedia.de/bin/bookshop?verlag=Computer+und+Literaturverlag&id=; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "98 DM", acknowledgement = ack-nhfb, language = "German", } @Article{Glass:1997:JGL, author = "G. Glass", title = "The {Java Generic Library}", journal = j-C-PLUS-PLUS-REPORT, volume = "9", number = "1", pages = "70--74", month = jan, year = "1997", CODEN = "CRPTE7", ISSN = "1040-6042", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6115 (Programming support); C6110J (Object-oriented programming); C6140D (High level languages)", fjournal = "C++ Report", keywords = "containers; design goals; development systems; Internet; Internet distribution; Java Development Kit; Java Generic Library; JGL; object-oriented languages; reusable; reusable algorithms; software libraries; software tools; Standard Template Library; STL design philosophy", treatment = "P Practical", } @Article{Glossner:1997:DE, author = "C. J. Glossner and S. Vassiliadis", title = "The {Delft-Java} Engine", journal = j-LECT-NOTES-COMP-SCI, volume = "1300", pages = "766--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1997b.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Glossner:1997:DJE, author = "C. J. Glossner and S. Vassiliadis", title = "The {Delft-Java} Engine", journal = j-LECT-NOTES-COMP-SCI, volume = "1300", pages = "766--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Goff:1997:SRJ, author = "Leslie Goff", title = "Special Report: {Java}: Do It Yourself: {Java} pros tell how to give your career the {Java} jolt", journal = j-COMPUTERWORLD, volume = "31", number = "19", pages = "88--89", day = "12", month = may, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri May 16 09:46:12 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Goldstein:1997:GSM, author = "T. Goldstein", title = "The Gateway Security Model in the {Java} Electronic Commerce Framework", journal = j-LECT-NOTES-COMP-SCI, volume = "1318", pages = "340--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @InProceedings{Gong:1997:GBS, author = "Li Gong and Marianne Mueller and Hemma Prafullchandra and Roland Schemers", title = "Going Beyond the Sandbox: An Overview of the New Security Architecture in the {Java Development Kit 1.2}", crossref = "USENIX:1997:USI", pages = "103--112", year = "1997", bibdate = "Tue Oct 22 15:30:32 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/usits97/gong.html", acknowledgement = ack-nhfb, } @Article{Gong:1997:JSP, author = "Li Gong", title = "{Java} Security: Present and Near Future: Coping with the rapidly evolving security issues of cross-platform computing", journal = j-IEEE-MICRO, volume = "17", number = "3", pages = "14--19", month = may # "\slash " # jun, year = "1997", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/40.591650", ISSN = "0272-1732 (print), 1937-4143 (electronic)", ISSN-L = "0272-1732", bibdate = "Tue Aug 12 12:35:06 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://pascal.computer.org/mi/books/mi1997/pdf/m3014.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Micro", } @Book{Goodman:1997:OMGa, author = "Danny Goodman", title = "Official {Marimba} Guide to {Bongo}", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxxi + 511", year = "1997", ISBN = "1-57521-254-4", ISBN-13 = "978-1-57521-254-8", LCCN = "QA76.9.U83G66 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$40", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575212544.html", acknowledgement = ack-nhfb, url-author = "http://www.dannyg.com/", url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/", } @Book{Goodman:1997:OMGb, author = "Danny Goodman", title = "Official {Marimba} Guide to {Bongo}", publisher = pub-PH, address = pub-PH:adr, pages = "????", month = aug, year = "1997", ISBN = "4-88735-072-4", ISBN-13 = "978-4-88735-072-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mmjp.or.jp/prentice/", price = "4,300 yen", URL = "http://www.mmjp.or.jp/prentice/wa_int15-j.html", acknowledgement = ack-nhfb, language = "Japanese", url-publisher = "http://www.mmjp.or.jp/prentice/", xxtitle = "{Marimba Bongo}", } @Book{Goodman:1997:PJ, author = "Danny Goodman", title = "Programaci{\'o}n en {JavaScript}", publisher = pub-ANAYA-MULTIMEDIA, address = pub-ANAYA-MULTIMEDIA:adr, pages = "????", year = "1997", ISBN = "84-415-0080-0", ISBN-13 = "978-84-415-0080-8", LCCN = "????", bibdate = "Mon Aug 18 17:28:52 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", price = "4495 Ptas.", URL = "http://www.anayamultimedia.es/cgi-multi/notas_prensa.pl?2321010&*2&goodman&1", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Goralski:1997:VEV, author = "Walter Goralski and Matthew Poli and Peter Vogel", title = "{VRML}: exploring virtual worlds on the {Internet}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xi + 481", year = "1997", ISBN = "0-13-486960-5, 0-614-14500-7", ISBN-13 = "978-0-13-486960-5, 978-0-614-14500-7", LCCN = "QA76.76.H94G67 1997", bibdate = "Wed Jun 17 08:55:24 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes some discussion of Java.", price = "US\$39.95", acknowledgement = ack-nhfb, keywords = "Internet (Computer network); VRML (Document markup language)", } @Book{Gosling:1997:AJVa, author = "James Gosling and Frank Yellin and {The Java Team}", title = "Les {API} de {Java}, Volume 1: Le noyau", publisher = pub-ITP-FRANCE, address = pub-ITP-FRANCE:adr, pages = "xxxi + 438", year = "1997", ISBN = "2-84180-998-6", ISBN-13 = "978-2-84180-998-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.thomson.com/intluk.html", note = "French translation of \cite{Gosling:1996:JAPa}. Includes CD-ROM.", price = "328 FF", URL = "http://www.awl.com/cseng/javaseries/international/france.htm; http://www.thomson.com/intluk.html", acknowledgement = ack-nhfb, language = "French", } @Book{Gosling:1997:AJVb, author = "James Gosling and Frank Yellin and {The Java Team}", title = "Les {API} de {Java}, Volume 2: Applets et l'{AWT}", publisher = pub-ITCP, address = pub-ITCP:adr, pages = "xxix + 349", year = "1997", ISBN = "2-84180-999-4", ISBN-13 = "978-2-84180-999-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.thomson.com/intluk.html", note = "French translation of \cite{Gosling:1996:JAPb}. Includes CD-ROM.", price = "318 FF", URL = "http://www.awl.com/cseng/javaseries/international/france.htm; http://www.thomson.com/intluk.html", acknowledgement = ack-nhfb, language = "French", } @Misc{Gosling:1997:ENC, author = "James A. Gosling", title = "The Evolution of Numerical Computing in {Java}", howpublished = "World Wide Web document.", year = "1997", bibdate = "Mon May 06 17:11:19 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://java.sun.com/people/jag/FP.html", acknowledgement = ack-nhfb, } @Article{Gosling:1997:FJ, author = "James Gosling", title = "The Feel of {Java}", journal = j-COMPUTER, volume = "30", number = "6", pages = "53--57", month = jun, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Wed Jun 04 08:59:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computer", } @Book{Gosling:1997:JS, author = "James Gosling and Bill Joy and Guy L. {Steele, Jr.}", title = "{Java: Die Sprachspezifikation: Die offizielle Dokumentation von JavaSoft}", publisher = pub-AW, address = pub-AW:adr, pages = "xxi + 758", year = "1997", ISBN = "3-8273-1038-5", ISBN-13 = "978-3-8273-1038-5", LCCN = "????", bibdate = "Tue Mar 03 08:24:46 1998", bibsource = "http://www.addison-wesley.de/katalog; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "German translation of \cite{Gosling:1996:JLS}.", price = "89,90 DM", URL = "http://www.addison-wesley.de/katalog/item.ppml?textexpr=Java&id=00113", acknowledgement = ack-nhfb, language = "German", url-author = "http://java.sun.com/people/jag/", url-publisher = "http://www.addison-wesley.de/", } @Book{Grand:1997:JFC, author = "Mark Grand and Jonathan Knudsen", title = "{Java} Fundamental Classes Reference", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxi + 1090", month = may, year = "1997", ISBN = "1-56592-241-7", ISBN-13 = "978-1-56592-241-9", LCCN = "QA76.73.J38 G728 1997", bibdate = "Mon May 11 10:29:37 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1565922417/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", price = "US\$34.95", URL = "http://www.ora.com/catalog/javafund/; http://www.oreilly.com/catalog/javafund", acknowledgement = ack-nhfb, dimensions = "9.19in x 7.03in x 2.12in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Book{Grand:1997:JLRa, author = "Mark Grand", title = "{Java} Language Reference", publisher = pub-ORA, address = pub-ORA:adr, pages = "xiv + 448", month = jan, year = "1997", ISBN = "1-56592-204-2", ISBN-13 = "978-1-56592-204-4", LCCN = "QA76.73.J38 G73 1997", bibdate = "Mon May 11 10:32:14 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1565922042/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", price = "US\$24.95", URL = "http://www.ora.com/catalog/javalang/noframes.html", acknowledgement = ack-nhfb, dimensions = "9.13in x 6.99in x 1.02in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Book{Grand:1997:JLRb, author = "Mark Grand", title = "{Java} Language Reference", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xiv + 475", year = "1997", ISBN = "1-56592-326-X", ISBN-13 = "978-1-56592-326-3", LCCN = "QA76.73.J38 G73 1997b", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", price = "US\$32.95", URL = "http://www.ora.com/catalog/javalang2/; http://www.ora.com/catalog/{javalang}2/; http://www.oreilly.com/catalog/javalang2", acknowledgement = ack-nhfb, } @Article{Gray:1997:IDC, author = "Paul A. Gray and Vaidy S. Sunderam", title = "{IceT}: distributed computing and {Java}", journal = j-CPE, volume = "9", number = "11", pages = "1161--1167", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13820; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13820&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Grehan:1997:JCV, author = "Rich Grehan", title = "Javatalk: Convert {Visual Basic} to {Java}", journal = j-BYTE, volume = "22", number = "3", pages = "188--188", month = mar, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon Feb 24 10:54:23 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Grehan:1997:JJA, author = "Rich Grehan", title = "{Javatalk}: Jet-assisted {Java}: {Optima++} developers will feel at home in {Powersoft}'s {PowerJ} for {Java}", journal = j-BYTE, volume = "22", number = "5", pages = "103--104", month = may, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Apr 19 09:18:24 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Grehan:1997:JRP, author = "Rich Grehan", title = "{Javatalk}: Rebuilt Parts: {Parts for Java} delivers an excellent visual programming environment for {Java}", journal = j-BYTE, volume = "22", number = "10", pages = "117--118", month = oct, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon Oct 13 10:09:41 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Grehan:1997:JRR, author = "Rick Grehan", title = "{Java}'s {RAD} Route to Data Access", journal = j-BYTE, volume = "22", number = "2", pages = "192--192", month = feb, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Jan 25 14:37:35 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Grehan:1997:JSL, author = "Rick Grehan", title = "{Javatalk}: {SuperCede} Lives Up to Its Names", journal = j-BYTE, volume = "22", number = "4", pages = "125--126", month = apr, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Fri Mar 14 07:40:50 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Grehan:1997:JVA, author = "Rick Grehan", title = "{Javatalk}: {Visual Age for Java}: {IBM's Visual Age for Java} isn't just beans", journal = j-BYTE, volume = "22", number = "7", pages = "101--102", month = jul, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Fri Jun 27 08:37:54 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Grehan:1997:JVJ, author = "Rick Grehan", title = "{Javatalk}: {Vibe Java}: Feel that cross-platform {Vibe} is one thing; deploying it is something else", journal = j-BYTE, volume = "22", number = "9", pages = "89--90", month = sep, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Aug 23 07:11:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Praises Visix's \cite{Nance:1995:WOG} Vibe springs-and-strut geometry management, but is severely critical of its non-standardness and lack of security.", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Grehan:1997:JWC, author = "Rick Grehan", title = "{Javatalk}: Write Cosmic Code: {Cosmo Code}, soon to be combined with {SGI}'s {Cosmo Worlds 3-D} development system, is a worthy {Java IDE} on its own", journal = j-BYTE, volume = "22", number = "8", pages = "113--114", month = aug, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon Jul 21 10:22:57 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Grehan:1997:PGJ, author = "Rick Grehan", title = "{Poet} Goes {Java} --- An {OODBMS} takes the plunge into {Java}", journal = j-BYTE, volume = "22", number = "12", pages = "113--??", month = dec, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Wed Dec 24 17:26:39 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Grehan:1997:RDS, author = "Rick Grehan", title = "Review: Development Software: {Java Development Kit}, Take Two", journal = j-BYTE, volume = "22", number = "4", pages = "145--146", month = apr, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Fri Mar 14 07:40:50 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Grehan:1997:UDM, author = "Rick Grehan", title = "An Uncertain Discovery --- {Metrowerks}' {Discover Programming} will give you a decent introduction to {Java}, but it can be annoying", journal = j-BYTE, volume = "22", number = "11", pages = "101--??", month = nov, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon Nov 24 17:12:05 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Griffith:1997:JMR, author = "Arthur Griffith", title = "The {Java} Master Reference", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xv + 1615", month = may, year = "1997", ISBN = "0-7645-3084-4 (softcover)", ISBN-13 = "978-0-7645-3084-5 (softcover)", LCCN = "QA76.73.J38G75 1998", bibdate = "Wed Jun 17 09:10:27 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$59.99", URL = "http://www.idgbooks.com/database/book_result.msql?uid=uidg81&isbn=0-7645-3084-4", acknowledgement = ack-nhfb, } @Article{Grinzo:1997:EPN, author = "Lou Grinzo", title = "Extended Precision Native Integers for {Java}: When performance counts", journal = j-DDJ, volume = "22", number = "11", pages = "42, 44--45, 91--92", month = nov, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Nov 28 17:28:03 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "To address performance problems in the JDK 1.1 BigInteger class Lou implemented mlnts his own monster integer library. The main difference between Lou's mlnts and BigInteger is that BigInteger offers arbitrary precision while Lou's library provides signed integers fixed at 256 bits.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Groner:1997:JAS, author = "Daniel Groner and Todd Sundsted and K. C. Hopson and Harish Prabandham", title = "{Java API Superbible}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, pages = "????", year = "1997", ISBN = "3-8272-4507-9 (??invalid ISBN??)", ISBN-13 = "978-3-8272-4507-6 (??invalid ISBN??)", LCCN = "????", bibdate = "Thu Aug 14 17:40:22 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "German translation of \cite{Groner:1996:JLS}. Includes CD-ROM.", price = "119 DM", URL = "http://www.mut.ch/html/buchinfo.htx?&x_pp=dJgxRqA9wlAYNijX&x_az=10&x_pk=VpLvjnsx7b5V&x_pa=B&x_pr=oS&x_bestell=24507&x_stichwort=Groner&x_sprache=A&x_start=1&x_gefunden=2&x_query=&x_lastpage=buchfund&x_soft=&x_suchewo=A; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm; http://www.mut.com/", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.mut.ch/", } @Book{Gulbransen:1997:CSA, author = "David Gulbransen and Kenrick Rawlings", title = "Cree Sus Applets por {Web} con {Java}", publisher = pub-PH-HISPANOAMERICANA, address = pub-PH-HISPANOAMERICANA:adr, pages = "xi + 307 (or 328??)", year = "1997", ISBN = "968-880-782-6", ISBN-13 = "978-968-880-782-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/spanish.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prentice.com.mx/", note = "Spanish translation of \cite{Gulbransen:1996:CWA}. Includes CD-ROM.", price = "3120 Ptas.", URL = "http://prentice.com.mx/; http://prentice.com.mx/libros/cree_applets.html; http://www.mcl.com.mx/sotano/prentice.fm$Retrive?RecID=2641&html=HTMLRecord1", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Gurewich:1997:JMS, author = "Nathan Gurewich and Ori Gurewich", title = "{Java} Manual of Style", publisher = pub-IMPRESS, address = pub-IMPRESS:adr, pages = "????", year = "1997", ISBN = "4-8443-4763-X (??Invalid checksum??)", ISBN-13 = "978-4-8443-4763-7 (??Invalid checksum??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.ips.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Japanese translation.", price = "1631 yen", URL = "http://www.ips.co.jp/; http://www.ips.co.jp/book/4763/4763.htm", acknowledgement = ack-nhfb, language = "Japanese", } @Article{Halfhill:1997:TWT, author = "Tom H. Halfhill", title = "Today the {Web}, Tomorrow the World. Is {Java} a serious programming language? Yes. Will it become a {Windows} killer? Maybe", journal = j-BYTE, volume = "22", number = "1", pages = "68--71, 74, 76, 78, 80", month = jan, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Dec 28 07:00:20 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Hall:1997:CWP, author = "Marty Hall", title = "Core {Web} Programming: {HTML}, {Java}, {CGI}, \& {Javascript}", publisher = pub-PH, address = pub-PH:adr, pages = "????", month = dec, year = "1997", ISBN = "0-13-625666-X", ISBN-13 = "978-0-13-625666-3", LCCN = "QA76.625.H35 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", URL = "http://www.prenhall.com/ptrbooks/ptr_013625666x.html", acknowledgement = ack-nhfb, url-author = "http://www.apl.jhu.edu/~hall/", url-publisher = "http://www.prenhalll.com/", } @Article{Hamblin:1997:AEJ, author = "Matt Hamblin", title = "All eyes on {Java}'s purity, speed: Language poky, but users say they still love it", journal = j-COMPUTERWORLD, volume = "31", number = "23", pages = "12--12", day = "9", month = jun, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Jun 27 08:25:01 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Hamilton:1997:JDA, author = "Graham Hamilton and Rick Cattell and Maydene Fisher", title = "{JDBC} Database Access With {Java}: {A} Tutorial and Annotated Reference", publisher = pub-AW, address = pub-AW:adr, pages = "xvi + 462", year = "1997", ISBN = "0-201-30995-5", ISBN-13 = "978-0-201-30995-9", LCCN = "QA76.73.J38H35 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$37.61", URL = "http://cseng.aw.com/bookdetail.qry?ISBN=0-201-30995-5&ptype=0", acknowledgement = ack-nhfb, url-author = "http://cseng.aw.com/authordetail.qry?AuthorID=1083", url-publisher = "http://www.aw.com/", } @Book{Hamilton:1997:JDJ, author = "Graham Hamilton and Rick Cattell and Maydene Fisher", title = "{JDBC Datenbankzugriff mit Java}", publisher = pub-AW, address = pub-AW:adr, pages = "500", month = nov, year = "1997", ISBN = "3-8273-1306-6", ISBN-13 = "978-3-8273-1306-5", LCCN = "????", bibdate = "Tue Mar 03 08:36:51 1998", bibsource = "http://www.addison-wesley.de/katalog; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "German translation of \cite{Hamilton:1997:JDA}.", price = "79,90 DM", URL = "http://www.addison-wesley.de/katalog/item.ppml?id=00269; http://www.addison-wesley.de/katalog/item.ppml?textexpr=Java&id=00265", acknowledgement = ack-nhfb, language = "German", url-author = "http://cseng.aw.com/authordetail.qry?AuthorID=1083", url-publisher = "http://www.addison-wesley.de/", } @Article{Hamilton:1997:NPA, author = "Scott Hamilton", title = "New Products: Agent-Based Distributed Computing in {Java}: Voyager Agents. {E}-Commerce Solutions for the {Web}: Concinity and {Web Speed}. Software Development: {HiProf} Code Profiler, Distributed Applications, Client-Server to the {Web}. Stuff", journal = j-COMPUTER, volume = "30", number = "5", pages = "97--98", month = may, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Tue May 06 16:45:13 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Hamilton:1997:NPE, author = "Scott Hamilton", title = "New Products: Embedded Systems Software: Real-Time {Java}. Embedded {OADD}. Entrus for {PCs}. {Privasuite}", journal = j-COMPUTER, volume = "30", number = "4", pages = "107--107", month = apr, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Tue May 06 16:51:53 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computer", } @Book{Han:1997:JMW, author = "Sangbeom Han", title = "{Java} Mastering on which {C} Expert Gives a Lecture", publisher = "Cyber Publishing", address = "??, Korea", pages = "????", year = "1997", ISBN = "89-7636-027-3 (??Invalid checksum??)", ISBN-13 = "978-89-7636-027-4 (??Invalid checksum??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/korean.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "10,000 won", URL = "http://www.chomdan.com/sister.html", acknowledgement = ack-nhfb, language = "Korean", } @Article{Hardwick:1997:ISW, author = "Jonathan C. Hardwick and Girija Narlikar and Jay Sipelstein", title = "Interactive simulations on the {Web}: compiling {N ESL} into {Java}", journal = j-CPE, volume = "9", number = "11", pages = "1075--1089", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13829; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13829&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Harmon:1997:UUD, author = "Paul Harmon and Mark Watson", title = "Understanding {UML}: the developer's guide: with a {Web}-based application in {Java}", publisher = pub-MORGAN-KAUFMANN, address = pub-MORGAN-KAUFMANN:adr, pages = "xvi + 367", month = nov, year = "1997", ISBN = "1-55860-465-0", ISBN-13 = "978-1-55860-465-0", LCCN = "QA76.9.O35H36 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mkp.com/", price = "US\$30", acknowledgement = ack-nhfb, url-author = "http://www.markwatson.com/", url-publisher = "http://www.mkp.com/", xxtitle = "Introduction to the New Unified Modeling Language: Including an {Internet} Application in {Java}", } @Book{Harold:1997:JNP, author = "Elliotte Rusty Harold", title = "{Java} Network Programming Guide", publisher = pub-ORA, address = pub-ORA:adr, pages = "xvii + 422", year = "1997", ISBN = "1-56592-227-1", ISBN-13 = "978-1-56592-227-3", LCCN = "QA76.73.J38 H37 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", price = "US\$29.95", URL = "http://www.ora.com/catalog/javanetwk/noframes.html; http://www.oreilly.com/catalog/javanetwk", acknowledgement = ack-nhfb, keywords = "computer; Java (computer program language); networks; technology -- computers and computer technology", } @Article{Harold:1997:JWS, author = "Elliotte Rusty Harold", title = "{JavaTalk}: Writing Servlets with {Jeeves}", journal = j-HP-CHRONICLE, volume = "14", number = "11", pages = "14, 16", month = oct, year = "1997", ISSN = "0892-2829", bibdate = "Mon Jan 12 07:18:40 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "HP Chronicle", } @Book{Harold:1997:PRA, author = "Elliotte Rusty Harold", title = "Programmation {R}{\'e}seau avec {Java}", publisher = pub-ORA, address = pub-ORA:adr, month = oct, year = "1997", ISBN = "2-84177-034-6", ISBN-13 = "978-2-84177-034-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.editions-oreilly.fr/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "220 FF", URL = "http://www.editions-oreilly.fr/international/france/prog/javanet.html", acknowledgement = ack-nhfb, language = "French", } @Book{Hatton:1997:APP, author = "Tim Hatton", title = "The Awesome Power of {PowerJ}", publisher = pub-MANNING, address = pub-MANNING:adr, pages = "????", month = nov, year = "1997", ISBN = "1-884777-53-8", ISBN-13 = "978-1-884777-53-0", LCCN = "QA76.73.J38H377 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$44", URL = "http://www.manning.com/Hatton2/index.html", acknowledgement = ack-nhfb, url-publisher = "http://www.manning.com/", } @Article{Hayes:1997:DLS, author = "Frank Hayes", title = "Dirty little secrets of {Java}, {ActiveX}", journal = j-COMPUTERWORLD, volume = "31", number = "24", pages = "127--127", day = "16", month = jun, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Thu Jul 03 17:07:35 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Criticizes Sun's Java Development Kit for not yet having a just-in-time compiler, and browsers for not caching applets, and Microsoft for not addressing the severe security problems of ActiveX.", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1997:JPM, author = "Frank Hayes", title = "{Java} packages make coding easier but miss opportunities", journal = j-COMPUTERWORLD, volume = "31", number = "11", pages = "51, 56", day = "17", month = mar, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Mar 24 21:07:14 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1997:PMO, author = "Frank Hayes", title = "Prediction: {Microsoft Office for Java}", journal = j-COMPUTERWORLD, volume = "31", number = "18", pages = "127--127", day = "5", month = may, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri May 16 09:43:51 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Has Microsoft given up on ActiveX? It sure looks like it from the way Microsoft's top people have clammed up about it. \ldots{}", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Hayes:1997:SRJ, author = "Frank Hayes", title = "Special Report: {Java}: Product Review: {Corel Office for Java} is a tantalizing but frustrating first draft: Baby Steps", journal = j-COMPUTERWORLD, volume = "31", number = "19", pages = "85, 87", day = "12", month = may, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri May 16 09:46:12 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Heinle:1997:DJC, author = "Nick Heinle", title = "Designing with {JavaScript}: creating dynamic {Web} pages", publisher = pub-ORA, address = pub-ORA:adr, pages = "xii + 241", year = "1997", ISBN = "1-56592-300-6", ISBN-13 = "978-1-56592-300-3", LCCN = "QA76.73.J39 H45 1997", bibdate = "Wed Dec 31 14:36:22 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$29.95", URL = "http://www.ora.com/catalog/designjs/", acknowledgement = ack-nhfb, } @Book{Heller:1997:JDHa, author = "Philip Heller and Simon Roberts and Peter Seymour and Tom McGinn", title = "{Java} 1.1 Developer's Handbook", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xxvii + 1172", month = may, year = "1997", ISBN = "0-7821-1919-0", ISBN-13 = "978-0-7821-1919-0", LCCN = "QA76.73.J38 J359 1997", bibdate = "Mon Jun 22 09:29:11 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0782119190/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.com/", price = "US\$59.99", URL = "http://www.sybex.com/cgi-bin/bookpg.pl?1919back.html", acknowledgement = ack-nhfb, dimensions = "9.22in x 7.79in x 2.30in", } @Book{Heller:1997:JTGa, author = "Steve Heller", title = "{Java} Training Guide", publisher = pub-AP-PROFESSIONAL, address = pub-AP-PROFESSIONAL:adr, pages = "350", month = aug, year = "1997", ISBN = "0-12-339106-7", ISBN-13 = "978-0-12-339106-3", LCCN = "QA76.73.J38H45 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.apnet.com/approfessional/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$49.95", URL = "http://www.apcatalog.com/cgi-bin/AP?ISBN=0123391067&LOCATION=US&FORM=FORM2", acknowledgement = ack-nhfb, } @Book{Heller:1997:JTGb, author = "Steve Heller", title = "{Java} Training Guide", publisher = pub-AP-PROFESSIONAL, address = pub-AP-PROFESSIONAL:adr, pages = "????", month = sep, year = "1997", ISBN = "0-12-339107-5", ISBN-13 = "978-0-12-339107-0", LCCN = "QA76.73.J38H45 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$10", acknowledgement = ack-nhfb, url-publisher = "http://www.apnet.com/approfessional/", } @Book{Heller:1997:WAJ, author = "Steve Heller", title = "Who's Afraid Of {Java}?", publisher = pub-AP-PROFESSIONAL, address = pub-AP-PROFESSIONAL:adr, pages = "xxx + 372", year = "1997", ISBN = "0-12-339101-6", ISBN-13 = "978-0-12-339101-8", LCCN = "QA76.73.J38H454 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.apnet.com/approfessional/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$39.95", URL = "http://www.apcatalog.com/cgi-bin/AP?ISBN=0123391016&LOCATION=US&FORM=FORM2", acknowledgement = ack-nhfb, } @Book{Hendrich:1997:JF, author = "Norman Hendrich", title = "{Java f{\"u}r Fortgeschrittene}", publisher = pub-SV, address = pub-SV:adr, pages = "viii + 596", year = "1997", ISBN = "3-540-61531-8", ISBN-13 = "978-3-540-61531-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.springer.de/", note = "Includes CD-ROM.", price = "48 DM", URL = "http://www.springer.de/", acknowledgement = ack-nhfb, language = "German", } @Article{Henson:1997:LEJ, author = "Scott G. Henson", title = "Letter to the Editor: {Java} and {CRC} Feedback", journal = j-DDJ, volume = "22", number = "6", pages = "10--10", month = jun, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Apr 30 07:02:17 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Hermelink:1997:JKJ, author = "Jan Hermelink", title = "{Java --- Das Kompendium: Java-Tutorial, Programmierung von Applikationen, die Schnittstelle zu C und C++, Datenbankzugriff, ausf{\"u}hrliche Referenz}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, pages = "????", year = "1997", ISBN = "3-8272-5195-8", ISBN-13 = "978-3-8272-5195-4", LCCN = "????", bibdate = "Tue Mar 03 10:27:42 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "90 DM", URL = "http://www.mut.com/", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.mut.ch/", } @Book{Hertel:1997:LND, author = "Matthias Hertel and others", title = "{Lotus Notes\slash Domino 4.6-Anwendungsentwicklung: Notes- und Internet-Applikationen mit LotusScript, Java und Visual Basic}", publisher = pub-AWV, address = pub-AWV:adr, pages = "????", month = dec, year = "1997", ISBN = "3-8273-1320-1", ISBN-13 = "978-3-8273-1320-1", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.addison-wesley.de/katalog/item.ppml?id=00272", acknowledgement = ack-nhfb, language = "German", url-author = "http://www.addison-wesley.de/katalog/author.ppml?author=Matthias+Hertel", url-publisher = "http://www.addison-wesley.de/", } @Article{Hess:1997:DRN, author = "Deborah Hess", title = "{Datapro} Report: New {Java} Tools Cozy Up to Servers", journal = j-BYTE, volume = "22", number = "7", pages = "28--28", month = jul, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Fri Jun 27 08:35:31 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Heuring:1997:BRE, author = "Vincent P. Heuring", title = "Book Review: {{\em Essential Java Fast}, John Cowell}", journal = j-OPER-SYS-REV, volume = "31", number = "4", pages = "2--2", month = oct, year = "1997", CODEN = "OSRED8", ISSN = "0163-5980", ISSN-L = "0163-5980", bibdate = "Sat Aug 26 08:55:52 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Operating Systems Review", } @Article{Hibbard:1997:SJM, author = "Justin Hibbard", title = "Speeding up {Java}\slash mainframe links", journal = j-COMPUTERWORLD, volume = "31", number = "9", pages = "28--28", day = "3", month = mar, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Mar 07 12:10:56 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Hierle:1997:HJI, author = "Alexander Hierle", title = "{HTML und Java: Internet-Software kreativ nutzen}", publisher = pub-SYBEX-VERLAG, address = pub-SYBEX-VERLAG:adr, pages = "????", year = "1997", ISBN = "3-8155-7509-5", ISBN-13 = "978-3-8155-7509-3", LCCN = "????", bibdate = "Thu Aug 14 17:40:22 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes two CD-ROMs.", price = "20 DM", URL = "http://www.sybex.de/", acknowledgement = ack-nhfb, language = "German", xxauthor = "Raymond Wiseman", } @Article{Hirano:1997:HDE, author = "S. Hirano", title = "{HORB}: Distributed Execution of {Java} Programs", journal = j-LECT-NOTES-COMP-SCI, volume = "1274", pages = "29--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @InProceedings{Hiura:1997:PII, author = "H. Hiura", title = "Platform Independent Input Method Protocol for {Internet}, {NC}, and {Java}", crossref = "UC:1997:SDI", pages = "A14--??", year = "1997", bibdate = "Fri Apr 24 09:14:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "internet; software development; Unicode", } @InProceedings{Hiura:1997:PIIa, author = "Hideki Hiura", title = "Platform Independent Input Method Protocol for the {Internet}, Network Computer ({NC}) and {Java}", crossref = "UC:1997:ESI", pages = "??--??", year = "1997", bibdate = "Thu Aug 20 21:00:11 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc10/program.html", acknowledgement = ack-nhfb, } @InProceedings{Hiura:1997:PIIb, author = "H. Hiura", title = "Platform Independent Input Method Protocol for {Internet}, {NC}, and {Java}", crossref = "UC:1997:SDI", pages = "A14--??", year = "1997", bibdate = "Thu Aug 20 07:03:28 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc11/program.html", acknowledgement = ack-nhfb, keywords = "internet; software development; Unicode", } @Book{Hobbs:1997:DJT, author = "Ashton Hobbs", title = "{Datenbankprogrammierung mit JDBC in 21 Tagen}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, pages = "579", year = "1997", ISBN = "3-8272-2005-X (??invalid ISBN??)", ISBN-13 = "978-3-8272-2005-9 (??invalid ISBN??)", LCCN = "????", bibdate = "Tue Mar 03 08:38:54 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "99,95 DM", URL = "http://www.mut.ch/html/buchtext.htx?&x_pp=STb4XDV284xv2gpf&x_pk=Direkt&x_pa=&x_pr=Fr&x_artikelnr=22005; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm; http://www.mut.com/", acknowledgement = ack-nhfb, language = "German", } @Book{Hobbs:1997:PCJ, author = "Ashton Hobbs", title = "Programmare con {JDBC}", publisher = pub-JACKSON-LIBRI, address = pub-JACKSON-LIBRI:adr, month = nov, year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.jacksonlibri.it/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "65,000 L.", acknowledgement = ack-nhfb, language = "Italian", url-publisher = "http://www.jacksonlibri.it/", } @Book{Hobbs:1997:TYD, author = "Ashton Hobbs", title = "Teach Yourself Database Programming with {JDBC} in 21 Days", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxvii + 524", day = "1", month = apr, year = "1997", ISBN = "1-57521-123-8", ISBN-13 = "978-1-57521-123-7", LCCN = "QA76.625.H63 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.amazon.com/exec/obidos/ISBN=1575211238/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575211238.html", acknowledgement = ack-nhfb, alttitle = "Database programming with JDBC in 21 days", dimensions = "9.07in x 7.40in x 1.33in", keywords = "Database management; Internet programming; Java (Computer program language)", paperback = "yes", } @Article{Hoffman:1997:SLB, author = "Thomas Hoffman", title = "{Sun} to link banks via {Java}", journal = j-COMPUTERWORLD, volume = "31", number = "25", pages = "1, 16", day = "23", month = jun, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Jun 27 09:54:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Holman:1997:IJ, author = "Brian Holman and William Lund", title = "Instant {JavaScript}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xx + 399", year = "1997", ISBN = "0-13-268434-9, 0-614-20316-3", ISBN-13 = "978-0-13-268434-7, 978-0-614-20316-5", LCCN = "QA76.73.J39 H64 1996", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0132684349/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.95", acknowledgement = ack-nhfb, dimensions = "9.19in x 7.07in x 1.23in", keywords = "computer systems; interactive; internet (computer network); Java (computer program language); JavaScript (computer program language); technology -- computers and computer technology", paperback = "yes", } @Book{Holub:1997:JUH, author = "Allen I. Holub", title = "{Java} Under the Hood", publisher = pub-MORGAN-KAUFMANN, address = pub-MORGAN-KAUFMANN:adr, pages = "450 (est.)", year = "1997", ISBN = "1-55860-457-X", ISBN-13 = "978-1-55860-457-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mkp.com/", price = "US\$40", acknowledgement = ack-nhfb, url-publisher = "http://www.mkp.com/", } @InProceedings{Holzle:1997:JSS, author = "Urs H{\"o}lzle and Lars Bak and Steffen Grarup and Robert Griesemer and Srdjan Mitrovic", title = "{Java} On Steroids: {Sun}'s High-Performance {Java} Implementation", crossref = "IEEE:1997:HCI", pages = "??--??", year = "1997", bibdate = "Mon Jan 08 16:33:30 2001", bibsource = "ftp://www.hotchips.org/pub/hotc7to11cd/hc97/pdf_images/hc97_4c_hoelzle_2up.txt; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Book{Holzner:1997:JNEa, author = "Steven Holzner", title = "{Java} 1.1: no experience required, will train", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "521", month = mar, year = "1997", ISBN = "0-7821-2083-0", ISBN-13 = "978-0-7821-2083-7", LCCN = "QA76.73.J38 H64 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.com/", price = "US\$34.99", URL = "http://www.sybex.com/cgi-bin/bookpg.pl?2083back.html", acknowledgement = ack-nhfb, xxtitle = "{Java} 1.1: No Experience Required", } @Book{Holzner:1997:JNEb, author = "Steven Holzner", title = "{Java} 1.2: No Experience Required", publisher = pub-SYBEX, address = pub-SYBEX:adr, edition = "Second", pages = "????", month = dec, year = "1997", ISBN = "0-7821-2171-3 (softcover)", ISBN-13 = "978-0-7821-2171-1 (softcover)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.com/", note = "Includes CD-ROM.", price = "US\$19.99", acknowledgement = ack-nhfb, } @Book{Holzner:1997:JPJ, author = "Steven Holzner", title = "{Java} Programming With {JBuilder}", publisher = pub-MIS # " and " # pub-MT, address = pub-MIS:adr # " and " # pub-MT:adr, pages = "xvii + 477", year = "1997", ISBN = "1-55851-507-0", ISBN-13 = "978-1-55851-507-9", LCCN = "QA76.73.J39H65 1997", bibdate = "Mon Jun 22 09:30:33 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1558515070/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mispress.com/", note = "Includes CD-ROM.", price = "US\$39.95", URL = "http://www.mandt.com/javaprogjbuilder.htm", acknowledgement = ack-nhfb, keywords = "Java (computer program language); technology -- computers and computer technology", } @Book{Holzner:1997:JT, author = "Steven Holzner", title = "{Java 1.1, Das Trainingsbuch}", publisher = pub-SYBEX-VERLAG, address = pub-SYBEX-VERLAG:adr, pages = "x + 559", year = "1997", ISBN = "3-8155-2061-4", ISBN-13 = "978-3-8155-2061-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.de/", note = "Includes CD-ROM.", price = "50 DM", URL = "http://www.sybex.de/bestell/tp/tp02061.htm", acknowledgement = ack-nhfb, language = "German", } @Book{Holzner:1997:MJW, author = "Steven Holzner", title = "Il Manuale di {Java} Workshop", publisher = pub-JACKSON-LIBRI, address = pub-JACKSON-LIBRI:adr, month = may, year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.jacksonlibri.it/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "55,000 L.", acknowledgement = ack-nhfb, language = "Italian", } @Book{Holzner:1997:MNI, author = "Steven Holzner", title = "Mastering Netscape {IFC}", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xviii + 816", month = may, year = "1997", ISBN = "0-7821-2116-0", ISBN-13 = "978-0-7821-2116-2", LCCN = "QA76.73.J38H653 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.com/", price = "US\$40", URL = "http://www.sybex.com/cgi-bin/bookpg.pl?2116back.html", acknowledgement = ack-nhfb, url-publisher = "http://www.sybex.com/", } @Book{Holzner:1997:MVJ, author = "Steven Holzner", title = "Mastering {Visual J++}", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xxi + 681", month = feb, year = "1997", ISBN = "0-7821-2041-5", ISBN-13 = "978-0-7821-2041-7", LCCN = "QA76.73.J38 H654 1997 Interactive Learning Center", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.com/", price = "US\$40", URL = "http://www.sybex.com/cgi-bin/bookpg.pl?2041back.html", acknowledgement = ack-nhfb, keywords = "ActiveX; Java (computer program language); Microsoft Internet Explorer; Microsoft Visual J++; Web sites -- software; World Wide Web retrieval system -- software", } @Book{Holzner:1997:VJN, author = "Steven Holzner", title = "{Visual J++}: No Experience Required", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xvii + 524", month = mar, year = "1997", ISBN = "0-7821-2078-4", ISBN-13 = "978-0-7821-2078-3", LCCN = "QA76.73.J38H654 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.com/", price = "US\$30", URL = "http://www.sybex.com/cgi-bin/bookpg.pl?2078back.html", acknowledgement = ack-nhfb, url-publisher = "http://www.sybex.com/", xxtitle = "{Visual J++ 1.1}", } @Book{Hoque:1997:PJP, author = "Reaz Hoque", title = "Practical {Javascript} Programming", publisher = pub-MT, address = pub-MT:adr, pages = "xiii + 496", year = "1997", ISBN = "1-55851-513-5", ISBN-13 = "978-1-55851-513-0", LCCN = "QA76.73.J38H67 1997", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1558515135/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.95", acknowledgement = ack-nhfb, dimensions = "9.27in x 7.17in x 1.38in", keywords = "JavaScript (computer program language); technology -- computers and computer technology", paperback = "yes", } @Book{Horstmann:1997:CJV, author = "Cay S. Horstmann and Gary Cornell", title = "Core {Java} 1.1: Volume 1: Fundamentals", publisher = pub-SUNSOFT, address = pub-SUNSOFT:adr, edition = "Third", pages = "????", year = "1997", ISBN = "0-13-766957-7", ISBN-13 = "978-0-13-766957-8", LCCN = "QA76.73.J38C67 1997", bibdate = "Tue Nov 03 11:33:35 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.phptr.com/ptrbooks/ptr_0137669577.html; http://www.prenhall.com/", note = "Includes CD-ROM.", price = "US\$40", series = "SunSoft Press Java series", URL = "http://www.horstmann.com/corejava.html; http://www.sun.com/books/books/Horstmann/Horstmann.html", acknowledgement = ack-nhfb, keywords = "Java (computer program language); technology -- data processing", } @Book{Horstmann:1997:POO, author = "Cay S. Horstmann", title = "Practical {Object-Oriented} Development in {C++} and {Java}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xiii + 562", month = apr, year = "1997", ISBN = "0-471-14767-2", ISBN-13 = "978-0-471-14767-1", LCCN = "QA76.64.H675 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0471147672/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$29.95", URL = "http://www.wiley.com/compbooks/catalog/14767-2.htm", acknowledgement = ack-nhfb, dimensions = "9.18in x 7.49in x 1.29in", keywords = "c plus; Java; plus (computer program language); technology -- computers and computer technology", } @Book{Horton:1997:BJ, author = "Ivor Horton", title = "Beginning {Java}", publisher = pub-WROX, address = pub-WROX:adr, pages = "600", year = "1997", ISBN = "1-86100-027-8", ISBN-13 = "978-1-86100-027-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1861000278/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wrox.com/", price = "US\$35.00", URL = "http://www.wrox.com/scripts/bookdetail.idc?Code=0278", acknowledgement = ack-nhfb, dimensions = "9.26in x 7.21in x 2.28in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Article{Hsieh:1997:ONC, author = "Cheng-Hsueh A. Hsieh and Marie T. Conte and Teresa L. Johnson and John C. Gyllenhaal and Wen-mei W. Hwu", title = "Optimizing {NET} Compilers for Improved {Java} Performance", journal = j-COMPUTER, volume = "30", number = "6", pages = "67--75", month = jun, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Wed Jun 04 08:59:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computer", } @Book{Huber:1997:JR, author = "Gerald Huber", title = "{JAVA --- Die Referenz}", publisher = pub-HEINZ-HEISE, address = pub-HEINZ-HEISE:adr, pages = "490", year = "1997", ISBN = "3-88229-078-1", ISBN-13 = "978-3-88229-078-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.heise.de/buch/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "89,90 DM", URL = "http://www.emedia.de/bin/bookshop?show=4551&id=; http://www.heise.de/buch/", acknowledgement = ack-nhfb, language = "German", xxtitle = "{Die Java-Referenz}", } @Book{Hughes:1997:JNP, editor = "Merlin Hughes and Conrad Hughes and Michael Shoffner and Maria Winslow", title = "{Java} Network Programming", publisher = pub-PH # " and " # pub-MANNING, address = pub-PH:adr # " and " # pub-MANNING:adr, pages = "xxiv + 519", month = jan, year = "1997", ISBN = "1-884777-34-1 (Manning), 0-13-841206-5 (Prentice-Hall)", ISBN-13 = "978-1-884777-34-9 (Manning), 978-0-13-841206-7 (Prentice-Hall)", LCCN = "QA76.73.J38J377 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0138412065/wholesaleproductA/; http://www.amazon.com/exec/obidos/ISBN=1884777341/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.manning.com/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", note = "Includes CD-ROM.", price = "US\$44.95", URL = "http://www.prenhall.com/ptrbooks/ptr_0138412065.html", acknowledgement = ack-nhfb, deweyno = "005.2/762", dimensions = "9.17in x 7.06in x 1.18in", keywords = "computer networks; Java (computer program language)", paperback = "yes", } @Book{Hughes:1997:JNPa, editor = "Merlin Hughes and Conrad Hughes and Michael Shoffner and Maria Winslow", title = "{Java} Network Programming", publisher = pub-PH # " and " # pub-MANNING, address = pub-PH:adr # " and " # pub-MANNING:adr, pages = "xxiv + 519", month = jan, year = "1997", ISBN = "1-884777-34-1 (Manning), 0-13-841206-5 (Prentice-Hall)", ISBN-13 = "978-1-884777-34-9 (Manning), 978-0-13-841206-7 (Prentice-Hall)", LCCN = "QA76.73.J38J377 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0138412065/wholesaleproductA/; http://www.amazon.com/exec/obidos/ISBN=1884777341/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.manning.com/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", note = "Includes CD-ROM.", price = "US\$44.95", URL = "http://www.prenhall.com/ptrbooks/ptr_0138412065.html", acknowledgement = ack-nhfb, deweyno = "005.2/762", dimensions = "9.17in x 7.06in x 1.18in", keywords = "computer networks; Java (computer program language)", paperback = "yes", } @Book{Hughes:1997:JNPb, author = "Merlin Hughes and Conrad Hughes and Maria Winslow", title = "{Java} Network Programming", publisher = pub-MANNING, address = pub-MANNING:adr, edition = "Second", pages = "????", month = sep, year = "1997", ISBN = "1-884777-49-X (softcover)", ISBN-13 = "978-1-884777-49-3 (softcover)", LCCN = "QA76.73.J38J377 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.manning.com/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$38.65", acknowledgement = ack-nhfb, } @Unpublished{Hugunin:1997:PJB, author = "Jim Hugunin", title = "{Python} and {Java}: The Best of Both Worlds", year = "1997", bibdate = "Tue Jan 06 09:29:45 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses an implementation of the Python scripting language in Java. The article and the code are available electronically.", URL = "http://www.python.org/jpython/", acknowledgement = ack-nhfb, } @Article{Hummel:1997:AJB, author = "Joseph Hummel and Ana Azevedo and David Kolson and Alexandru Nicolau", title = "Annotating the {Java} bytecodes in support of optimization", journal = j-CPE, volume = "9", number = "11", pages = "1003--1016", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13830; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13830&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Hummel:1997:SPJ, author = "Susan Flynn Hummel and Ton Ngo and Harini Srinivasan", title = "{SPMD} programming in {Java}", journal = j-CPE, volume = "9", number = "6", pages = "621--631", month = jun, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:32 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13879; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13879&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Hunt:1997:DCM, author = "J. J. Hunt and F. Lamers and J. Reuter and W. F. Tichy", title = "Distributed Configuration Management via {Java} and the {World Wide Web}", journal = j-LECT-NOTES-COMP-SCI, volume = "1235", pages = "161--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Fri Aug 22 11:59:49 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Hunt:1997:JOO, author = "John Hunt", title = "{Java} and Object Orientation: An Introduction (Applied Computing)", publisher = pub-SV, address = pub-SV:adr, pages = "xxii + 473", year = "1997", ISBN = "3-540-76201-9", ISBN-13 = "978-3-540-76201-0", LCCN = "QA76.73.J38H86 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.springer-ny.com/", price = "US\$29", acknowledgement = ack-nhfb, url-publisher = "http://www.springer-ny.com/", } @Book{Husain:1997:ADR, author = "Kamran Husain", title = "{ActiveX} Developer's Resource: {Server-Side} Programming", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxi + 457", month = jul, year = "1997", ISBN = "0-13-270786-1", ISBN-13 = "978-0-13-270786-2", LCCN = "QA76.76.D47H88 1997", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0132707861/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.95", acknowledgement = ack-nhfb, dimensions = "9.26in x 7.05in x 1.42in", paperback = "yes", xxnote = "Duplicate ISBN in \cite{Husain:1997:ADR,Husain:1997:JDRb}.", } @Book{Husain:1997:JDR, author = "Kamran Husain and Jason Levitt", title = "{JavaScript} developer's resource: client-side programming using {HTML}, {Netscape} plug-ins and {Java} applets", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxiv + 568", year = "1997", ISBN = "0-13-267923-X", ISBN-13 = "978-0-13-267923-7", LCCN = "QA76.73.J39 H87 1997", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0-13-267923-X/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.95", acknowledgement = ack-nhfb, annote = "System requirements: computer running either Windows, Macintosh, or UNIX; Netscape Navigator version 2.x or 3.0, or, Microsoft Internet Explorer 3.0; CD-ROM drive.", dimensions = "9.33in x 7.05in x 1.69in", keywords = "Client/server computing; JavaScript (Computer program language); Utilities (Computer programs)", paperback = "yes", } @Book{Husain:1997:JDRa, author = "Kamran Husain and Jason Levitt", title = "{JavaScript} developer's resource: client-side programming using {HTML}, {Netscape} plug-ins and {Java} applets", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxiv + 568", year = "1997", ISBN = "0-13-267923-X", ISBN-13 = "978-0-13-267923-7", LCCN = "QA76.73.J39 H87 1997", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=013267923X/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.95", acknowledgement = ack-nhfb, annote = "System requirements: computer running either Windows, Macintosh, or UNIX; Netscape Navigator version 2.x or 3.0, or, Microsoft Internet Explorer 3.0; CD-ROM drive.", dimensions = "9.33in x 7.05in x 1.69in", keywords = "Client/server computing; JavaScript (Computer program language); Utilities (Computer programs)", paperback = "yes", } @Book{Husain:1997:JDRb, author = "Kamran Husain and Jason Levitt", title = "{JavaScript} developer's resource: server-side programming", publisher = pub-PH, address = pub-PH:adr, pages = "300", year = "1997", ISBN = "0-13-270786-1", ISBN-13 = "978-0-13-270786-2", LCCN = "QA76.73.J39 H87 1997", bibdate = "Thu Sep 12 07:25:01 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.95", acknowledgement = ack-nhfb, keywords = "(computer program language); JavaScript; technology -- computers and computer technology", xxnote = "Duplicate ISBN in \cite{Husain:1997:ADR,Husain:1997:JDRb}.", } @InProceedings{Hylands:1997:TUI, author = "Christopher Hylands and Edward A. Lee and H. John Reekie", title = "The {Tycho} User Interface System", crossref = "USENIX:1997:ATT", institution = "University of California, Berkeley (authors 1-3)", pages = "149--??", day = "14--17", month = jul, year = "1997", bibdate = "Wed Aug 20 10:15:08 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/cgi-bin/sortbib.pl?-sA", acknowledgement = ack-nhfb, annote = "The system includes a semiliterate programming system that allows embedded documentation to be converted automatically to HTML.", } @Book{Hyman:1997:VJD, author = "Michael I. Hyman", title = "{Visual J++} For Dummies", publisher = pub-IDG, address = pub-IDG:adr, pages = "xx + 330", year = "1997", ISBN = "0-7645-0079-1 (paperback)", ISBN-13 = "978-0-7645-0079-4 (paperback)", LCCN = "QA 76.73 J38 H96 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$24.99", series = "--For dummies", URL = "http://www.idgbooks.com/database/book_result.msql?uid=uidg81&isbn=0-7645-0079-1", acknowledgement = ack-nhfb, keywords = "Java (computer program language); Microsoft Visual J++", url-publisher = "http://www.idgbooks.com/", } @Manual{IBM:1997:CJA, author = "{IBM}", title = "Creating {Java} Applications Using {NetRexx}", organization = "IBM Technical Support Organization", address = "San Jose, CA, USA", pages = "xx + 287", month = sep, year = "1997", bibdate = "Tue Jul 26 10:25:57 2005", bibsource = "ftp://www.redbooks.ibm.com/pubs/pdfs/redbooks/SG242216; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "SG24-2216-00.", URL = "http://www.redbooks.ibm.com/pubs/pdfs/redbooks/sg242216.pdf", acknowledgement = ack-nhfb, } @Article{Ichisugi:1997:EJP, author = "Y. Ichisugi and Y. Roudier", title = "The Extensible {Java} Preprocessor Kit and a Tiny Data-Parallel {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1343", pages = "153--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Imasaki:1997:JJP, author = "K. Imasaki", title = "{JAPE}: The {Java} Parallel Environment", journal = j-LECT-NOTES-COMP-SCI, volume = "1343", pages = "137--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Ince:1997:PIJ, author = "Darrel Ince and Adam Freeman", title = "Programming the {Internet} With {Java}", publisher = pub-AW, address = pub-AW:adr, pages = "xiv + 440", year = "1997", ISBN = "0-201-17549-5 (softcover)", ISBN-13 = "978-0-201-17549-3 (softcover)", LCCN = "QA76.73.J38I52 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.aw.com/cseng/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$37.95", URL = "http://cseng.aw.com/bookdetail.qry?ISBN=0-201-17549-5", acknowledgement = ack-nhfb, xxtitle = "{Internet} Programming: An Introduction to Object Oriented Programming With {Java}", } @Article{Islam:1997:FSS, author = "Nayeem Islam and Rangachari Anand and Trent Jaeger and Josyula R. Rao", title = "A Flexible Security System for Using {Internet} Content", journal = j-IEEE-SOFTWARE, volume = "14", number = "5", pages = "52--59", month = sep # "\slash " # oct, year = "1997", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/52.605931", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Mon Sep 15 22:21:26 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses the FlexxGuard security system built using the Java Development Kit 1.1.", URL = "http://neumann.computer.org/so/books/so1997/pdf/s5052.pdf; http://www.computer.org/software/so1997/s5052abs.htm", acknowledgement = ack-nhfb, fjournal = "IEEE Software", } @Book{Jackson:1997:JBS, author = "Jerry R. Jackson and Alan L. McClellan", title = "{Java an Beispielen --- Sprach- und Applet-Struktur}", publisher = pub-HEINZ-HEISE, address = pub-HEINZ-HEISE:adr, pages = "336", year = "1997", ISBN = "3-88229-085-4", ISBN-13 = "978-3-88229-085-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.heise.de/buch/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "German translation of \cite{Jackson:1997:JE}. Includes CD-ROM.", price = "84,80 DM", URL = "http://www.emedia.de/bin/bookshop?show=4562&id=; http://www.heise.de/buch/", acknowledgement = ack-nhfb, language = "German", } @Book{Jackson:1997:JE, author = "Jerry Jackson and Alan McClellan", title = "{Java} by Example", publisher = pub-ASCII, address = pub-ASCII:adr, edition = "Second", pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ascii.co.jp/; http://www.sun.com/smi/ssoftpress/books/Jackson/Jackson.html", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Jackson:1997:JES, author = "Jerry R. Jackson and Alan L. McClellan", title = "{Java} by Example: Signature Edition", publisher = pub-SUNSOFT # " and " # pub-PH, address = pub-SUNSOFT:adr # " and " # pub-PH:adr, edition = "Second", pages = "xl + 386", month = jan, year = "1997", ISBN = "0-13-272295-X", ISBN-13 = "978-0-13-272295-7", LCCN = "QA76.73.J38J33 1997", bibdate = "Thu Aug 14 10:59:24 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=013272295X/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.phptr.com/ptrbooks/ptr_013272295x.html; http://www.prenhall.com/", note = "Available in German translation \cite{Jackson:1997:JBS}. Includes CD-ROM.", price = "US\$34.95", series = "Java series", URL = "http://www.prenhall.com/ptrbooks/ptr_013272295x.html; http://www.sun.com/books/books/Jackson/Jackson.html", acknowledgement = ack-nhfb, dimensions = "9.14in x 6.89in x 1.26in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Book{Jackson:1997:JPE, author = "Jerry Jackson and Alan McClellan", title = "{Java} Per Esempi", publisher = pub-MONDADORI-INFORMATICA, address = pub-MONDADORI-INFORMATICA:adr, pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 15:17:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Italian translation of \cite{Jackson:1997:JE}. Includes CD-ROM.", URL = "http://www.mondadori.com/; http://www.sun.com/smi/ssoftpress/books/Jackson/Jackson.html", acknowledgement = ack-nhfb, language = "Italian", } @Article{Jain:1997:ECC, author = "P. Jain and D. C. Schmidt", title = "Experiences converting a {C++} communication software framework to {Java}", journal = j-C-PLUS-PLUS-REPORT, volume = "9", number = "1", pages = "50--66", month = jan, year = "1997", CODEN = "CRPTE7", ISSN = "1040-6042", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110B (Software engineering techniques); C6155 (Computer communications software); C6140D (High level languages); C6110J (Object-oriented programming)", corpsource = "Washington Univ., St. Louis, MO, USA", fjournal = "C++ Report", keywords = "C language; C++ communication software framework; computer communications software; engineering; features; flexibility; Java programming; language; language constructs; language features; object-; object-oriented programming; object-oriented programming language; oriented languages; portability; reverse; run-time; semantics; simplicity; software conversion; software libraries; software portability; standard library components", treatment = "A Application", } @Book{Jamsa:1997:ESJ, author = "Kris Jamsa", title = "Ed {\`e} subito {Java}!", publisher = pub-TECHNICE-NUOVE, address = pub-TECHNICE-NUOVE:adr, pages = "242", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 12:20:17 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/italian.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "39000 Lire", URL = "http://www.tecnet.it/cgi-shl/dbml.exe?Action=3DQuery&Template=3D/LibriQueryDueLibro.dbm&ISBN=3D03863; http://www.tecnet.it/libri/VisualizzaLibro.cfm?ISBN=03863", acknowledgement = ack-nhfb, language = "Italian", } @Book{Jamsa:1997:JA, author = "Kris Jamsa", title = "{Java} Ahora!", publisher = pub-MCGRAW-HILL-SPAIN, address = pub-MCGRAW-HILL-SPAIN:adr, pages = "????", year = "1997", ISBN = "958-600-624-7", ISBN-13 = "978-958-600-624-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.es/", price = "3365 Ptas.", URL = "http://www.mcgraw-hill.es/McGrawHill/catalogo.nsf/b013777771f7e01bc125647a00607b0e/94973e13fcf9c5e6c12564d60040555c?OpenDocument", acknowledgement = ack-nhfb, language = "Spanish", url-author = "http://www.jamsa.com/authors/bio.htm\#kjamsa", url-publisher = "http://mexplaza.udg.mx/McGraw/", } @Book{Jamsa:1997:JOP, author = "Kris Jamsa", title = "{Java} --- ohjelmoinnin perusteet", publisher = "Teknolit", address = "Helsinki, Finland", pages = "233", month = sep, year = "1997", ISBN = "952-9823-77-0", ISBN-13 = "978-952-9823-77-2", LCCN = "????", bibdate = "Mon Aug 18 16:29:33 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Finnish translation of \cite{Jamsa:1996:JNE}.", price = "230 Markka", URL = "http://www.jamsa.com/authors/bio.htm#kjamsa; http://www.teknolit.co.jyu.fi/books/muut/java.htm; http://www.teknolit.fi/", acknowledgement = ack-nhfb, language = "Finnish", } @Book{Jang:1997:FJP, author = "Kyuo Jang", title = "The Foundation of the {Java} Programming", publisher = "Seongandang", address = "??, Korea", pages = "????", year = "1997", ISBN = "89-315-4381-6 (??Invalid checksum??)", ISBN-13 = "978-89-315-4381-0 (??Invalid checksum??)", LCCN = "????", bibdate = "Thu Aug 14 13:00:33 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/korean.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "3,500 won", URL = "????", acknowledgement = ack-nhfb, language = "Korean", } @Book{Jardin:1997:JEC, author = "Cary A. Jardin", title = "{Java} Electronic Commerce Sourcebook: All the Software and Expert Advice You Need to Open Your Own Virtual Store", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "473", day = "1", month = feb, year = "1997", ISBN = "0-471-17611-7", ISBN-13 = "978-0-471-17611-4", LCCN = "96-049117", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0471176117/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$39.95", URL = "http://www.wiley.com/compbooks/catalog/17611-7.htm", acknowledgement = ack-nhfb, dimensions = "9.19in x 7.48in x 1.11in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Book{Jardin:1997:SVC, author = "Cary A. Jardin and Pam Dixon", title = "{Symantec Visual Caf{\'e}} Sourcebook", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xv + 395", month = jun, year = "1997", ISBN = "0-471-17804-7", ISBN-13 = "978-0-471-17804-0", LCCN = "QA76.76.D47J366 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0471178047/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$39.99", URL = "http://www.wiley.com/compbooks/catalog/17804-7.htm", acknowledgement = ack-nhfb, dimensions = "9.24in x 7.50in x 1.05in", paperback = "yes", } @Book{Jaworski:1997:JDG, author = "Jamie Jaworski", title = "{Java} 1.1 Developers Guide", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, edition = "Second", pages = "xxxvii + 1100", year = "1997", ISBN = "1-57521-283-8", ISBN-13 = "978-1-57521-283-8", LCCN = "QA76.73.J38J389 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "99,00 DM; US\$50", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575212838.html; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, } @Book{Jaworski:1997:JGA, author = "Jamie Jaworski", title = "{Java} --- Guida alla programmazione", publisher = pub-TECHNICE-NUOVE, address = pub-TECHNICE-NUOVE:adr, pages = "704", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 12:19:22 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/italian.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "89000 Lire", URL = "http://www.tecnet.it/cgi-shl/dbml.exe?Action=3DQuery&Template=3D/LibriQueryDueLibro.dbm&ISBN=3D03804; http://www.tecnet.it/libri/VisualizzaLibro.cfm?ISBN=03804", acknowledgement = ack-nhfb, language = "Italian", url-publisher = "http://www.tecnet.it/", } @Book{Jaworski:1997:MJ, author = "James Jaworski", title = "Mastering {JavaScript}", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xxxv + 1085", year = "1997", ISBN = "0-7821-2014-8", ISBN-13 = "978-0-7821-2014-1", LCCN = "QA76.73.J38J393 1997", bibdate = "Mon Jun 22 09:31:13 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0782120148/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99", acknowledgement = ack-nhfb, dimensions = "8.95in x 7.46in x 2.20in", keywords = "(computer program language); JavaScript; technology -- computers and computer technology", paperback = "yes", } @Article{Jenkins:1997:AAH, author = "Gregory V. Wilson", title = "Programmer's Bookshelf: From {ActiveX} to Cargo-Cult Science", journal = j-DDJ, volume = "22", number = "9", pages = "117--119", month = sep, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Mon Aug 11 12:53:44 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Contains reviews of Java books \cite{Appel:1997:MCI,Coad:1997:JDBa}.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Jepson:1997:JDP, author = "Brian Jepson", title = "{Java} Database Programming", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "x + 485", year = "1997", ISBN = "0-471-16518-2", ISBN-13 = "978-0-471-16518-7", LCCN = "QA76.73.J38J47 1997", bibdate = "Sat Oct 09 08:13:10 1999", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0471165182/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/compbooks/", price = "US\$29.95", URL = "http://www.wiley.com/compbooks/catalog/16518-2.htm", acknowledgement = ack-nhfb, dimensions = "9.22in x 7.49in x 1.12in", keywords = "Java (computer program language); technology -- computers and computer technology", lccnalt = "96-36120", paperback = "yes", } @Book{Jimenez:1997:PJP, author = "Pedro Manuel Cuenca Jim{\'e}nez", title = "Programaci{\'o}n en {Java} para Internet", publisher = pub-ANAYA-MULTIMEDIA, address = pub-ANAYA-MULTIMEDIA:adr, pages = "352", month = may, year = "1997", ISBN = "84-415-0174-2, 84-7614-958-1", ISBN-13 = "978-84-415-0174-4, 978-84-7614-958-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/spanish.html; http://www.anaya.es/multimedia/; http://www.anayamultimedia.es/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "1,695 Ptas. (or 3750 Pesatas??)", series = "Guias Practicas", URL = "http://www.anaya.es/Catalogo/CGA?act=3DL&art=3D2321006&ed=3D2300; http://www.anaya.es/Catalogo/CGA?act=L&art=2321006&ed=2300; http://www.anayamultimedia.es/; http://www.anayamultimedia.es/cgi-multi/notas_prensa.pl?2335127&3&0&1", acknowledgement = ack-nhfb, language = "Spanish", xxtitle-1 = "Programaci{\'o}n en {Java}", xxtitle-2 = "Programaci{\'o}n en {Java} para {Internet}", } @Article{Johnson:1997:OAR, author = "Maryfran Johnson", title = "Opinion: Alternate realities: Our front-page story last week jangled a lot of readers' nerves", journal = j-COMPUTERWORLD, volume = "31", number = "31", pages = "32--32", day = "4", month = aug, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Aug 11 08:32:50 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "See \cite{Sliwa:1997:MDW} for original story, and \cite{Sliwa:1997:MSR} for further comments.", fjournal = "ComputerWorld", } @Article{Johnson:1997:OJB, author = "Maryfran Johnson", title = "Opinion: {Java} blend", journal = j-COMPUTERWORLD, volume = "31", number = "15", pages = "34--34", day = "14", month = apr, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Tue Apr 22 07:48:54 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Joshi:1997:CGJ, author = "Daniel I. Joshi and Rodney Runolfson and Ramesh Chandak", title = "The Comprehensive Guide to the {JDBC SQL API}", publisher = pub-VENTANA, address = pub-VENTANA:adr, pages = "xxiv + 422", year = "1997", ISBN = "1-56604-637-8", ISBN-13 = "978-1-56604-637-4", LCCN = "QA76.625.J67 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.vmedia.com/", note = "Includes CD-ROM.", price = "US\$50", URL = "http://www.vmedia.com/bookshop/book.html?isbn=1566046378", acknowledgement = ack-nhfb, keywords = "Database management.; Internet programming.; Java (Computer program language); SQL (Computer program language)", } @Book{Joshi:1997:CGV, author = "Daniel Joshi and Ramesh Chandak", title = "The comprehensive guide to {Visual J++}: the ultimate reference for {Java}, {Visual J++} \& {Active X}: {Windows 95} \& {Windows NT 4}", publisher = pub-VENTANA, address = pub-VENTANA:adr, pages = "xxiv + 750", year = "1997", ISBN = "1-56604-533-9", ISBN-13 = "978-1-56604-533-9", LCCN = "QA76.73.J38 J67 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.vmedia.com/", price = "US\$50", URL = "http://www.joshipublishing.com/visj.htm", acknowledgement = ack-nhfb, keywords = "Java (Computer program language); Microsoft Visual J++", } @Book{Joshi:1997:JPR, author = "Daniel Joshi", title = "The {Java} 1.1 Programmer's Reference", publisher = pub-VENTANA, address = pub-VENTANA:adr, pages = "????", year = "1997", ISBN = "1-56604-687-4", ISBN-13 = "978-1-56604-687-9", LCCN = "QA76.73.J38 J672 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$60", URL = "http://www.joshipublishing.com/jpref.htm", acknowledgement = ack-nhfb, } @Book{Joshi:1997:MJJ, author = "Daniel I. Joshi", title = "Migrating from {Java} 1.0 to {Java} 1.1", publisher = pub-VENTANA, address = pub-VENTANA:adr, pages = "????", month = jun, year = "1997", ISBN = "1-56604-686-6 (softcover)", ISBN-13 = "978-1-56604-686-2 (softcover)", LCCN = "QA76.73.J674 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.vmedia.com/", price = "US\$35.99", URL = "http://www.vmedia.com/bookshop/book.html?isbn=1566046866", acknowledgement = ack-nhfb, } @Book{Joshi:1997:ONP, author = "Daniel J. Joshi and Pavel A. Vorobiev", title = "Official {Netscape} Programming {Java} 1.1 With {JFC}", publisher = pub-VENTANA, address = pub-VENTANA:adr, pages = "????", month = oct, year = "1997", ISBN = "1-56604-766-8 (softcover)", ISBN-13 = "978-1-56604-766-1 (softcover)", LCCN = "QA76.73.J38J675 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.netscapepress.com/", price = "US\$49.99", URL = "http://www.vmedia.com/bookshop/book.html?isbn=1566047668", acknowledgement = ack-nhfb, } @Book{Jubin:1997:JEC, author = "Henry Jubin and {The Jalape{\~n}o Team}", title = "{JavaBeans} by Example: Cooking Beans in the Enterprise", publisher = pub-PH, address = pub-PH:adr, pages = "????", month = dec, year = "1997", ISBN = "0-13-790338-3", ISBN-13 = "978-0-13-790338-2", LCCN = "QA76.73.J38J83 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$45", URL = "http://www.prenhall.com/ptrbooks/ptr_0137903383.html", acknowledgement = ack-nhfb, url-publisher = "http://www.prenhall.com/", } @Article{Kanada:1997:WPR, author = "Yasusi Kanada", title = "{Web} Pages that Reproduce Themselves by {JavaScript}", journal = j-SIGPLAN, volume = "32", number = "11", pages = "49--56", month = nov, year = "1997", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:41 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Book{Kang:1997:PJ, author = "Hee-Chun Kang and Bok-Sik Kim", title = "Programming with {Java}!", publisher = "CA Books c/o DRT International", address = "??, Korea", pages = "????", year = "1997", ISBN = "89-86604-08-6", ISBN-13 = "978-89-86604-08-5", LCCN = "????", bibdate = "Thu Aug 14 13:00:33 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/korean.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "15,000 Won", URL = "????", acknowledgement = ack-nhfb, language = "Korean", } @Article{Kann:1997:EPA, author = "Charles W. Kann and Michael B. Feldman and John Sibert", title = "Experience Programming Applets with {Ada95}", journal = j-SIGADA-LETTERS, volume = "17", number = "3", pages = "17--29", month = may # "\slash " # jun, year = "1997", CODEN = "AALEE5", ISSN = "0736-721X", ISSN-L = "0736-721X", bibdate = "Fri Apr 18 08:39:28 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Uses an early beta release of AppletMagic for compiling Ada95 programs into code for the Java Virtual Machine.", acknowledgement = ack-nhfb, fjournal = "ACM SIGADA Ada Letters", } @Article{Kaplan:1997:DJ, author = "Philippe Kaplan", title = "Debugging in {Java}", journal = j-LOGIN, volume = "22", number = "7", pages = "??--??", month = dec, year = "1997", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:27 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/contents/contents.dec97.html", URL = "http://www.usenix.org/publications/java/javaindex.html; http://www.usenix.org/publications/java/usingjava8.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{Kaplan:1997:IMW, author = "H. Kaplan", title = "Interactive multimedia and the {World Wide Web}", journal = j-EDUCOM-REV, volume = "32", number = "1", pages = "48--51", month = jan # "-" # feb, year = "1997", CODEN = "EDREEW", ISSN = "1045-9146", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7810C (Computer-aided instruction); C6130M (Multimedia); C5620W (Other computer networks)", corpsource = "Internet Inst., Massachusetts Univ., Lowell, MA, USA", fjournal = "Educom review", keywords = "computer aided instruction; course delivery; distance learning; educational courses; interactive; interactive multimedia; Internet; Java; multimedia systems; Shockwave; systems; VRML; World Wide Web", treatment = "P Practical", } @Book{Kassabgi:1997:PDG, author = "George Kassabgi", title = "The Professional Developer's Guide to {JavaBeans}", publisher = pub-QUE, address = pub-QUE:adr, year = "1997", ISBN = "0-7897-1168-0", ISBN-13 = "978-0-7897-1168-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", acknowledgement = ack-nhfb, xxnote = "Duplicate ISBN with \cite{Walnum:1997:PDG}. Library of Congress has: Working with JavaBeans / Roger Jennings for this ISBN.", } @Book{Kassenaar:1997:BJV, author = "Peter Kassenaar", title = "Basiscursus {JavaScript}: versie 1.1", publisher = pub-ACADEMIC-SERVICE, address = pub-ACADEMIC-SERVICE:adr, pages = "250", month = oct, year = "1997", ISBN = "90-395-0781-3", ISBN-13 = "978-90-395-0781-0", LCCN = "????", bibdate = "Tue Aug 19 18:31:47 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "fl. 29,50", URL = "http://acaserv.nl/bestel/5_0781.htm", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Kaster:1997:DID, author = "John Kaster and Loren Scott and Ted Blue", title = "{Delphi Internet} Development: Utilizing {ActiveX}, {ISAPI}, {Java} and {VRML} for {Internet} Solutions", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "????", month = jul, year = "1997", ISBN = "0-07-913254-5 (softcover)", ISBN-13 = "978-0-07-913254-3 (softcover)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", note = "Includes CD-ROM.", price = "US\$50; US\$44.95", acknowledgement = ack-nhfb, url-publisher = "http://www.mcgraw-hill.com/", } @Article{Kay:1997:CRR, author = "Russell Kay", title = "{CD-ROM} Review: Prevent {Java} Attacks: Good explanations but lame advice", journal = j-BYTE, volume = "22", number = "4", pages = "38--38", month = apr, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Fri May 23 12:53:09 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Brief review of \cite{McGraw:1997:JSM}. See rebuttal in \cite{McGraw:1997:LEL}.", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Kent:1997:ONJ, author = "Peter Kent and John Kent", title = "Official {Netscape JavaScript 1.2} book: the nonprogrammer's guide to creating interactive {Web} pages", publisher = pub-VENTANA, address = pub-VENTANA:adr, edition = "Second", pages = "xxx + 550", year = "1997", ISBN = "1-56604-675-0", ISBN-13 = "978-1-56604-675-6", LCCN = "QA76.73.J39 K459 1997", bibdate = "Wed Dec 31 14:42:59 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.99", acknowledgement = ack-nhfb, } @Book{Kerievsky:1997:OJP, author = "Joshua Kerievsky and Terence Goggin and Matt Telles and Steven Fraser", title = "{Open JBuilder} Programming Frontrunner: The {Hands-On} Guide to Mastering {Cross-Platform} Development With {Open JBuilder}", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "????", month = aug, year = "1997", ISBN = "1-57610-004-9", ISBN-13 = "978-1-57610-004-2", LCCN = "????", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1576100049/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Duplicate ISBN with \cite{Duntemann:1996:JPF,Goggin:19xx:JPF,Kerievsky:1997:OJP}.", price = "US\$29.99", acknowledgement = ack-nhfb, } @Article{Ki:1997:CSD, author = "Byeongseob Ki and Scott Klasky", title = "Collaborative scientific data visualization", journal = j-CPE, volume = "9", number = "11", pages = "1249--1259", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13822; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13822&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Kim:1997:DDG, editor = "Eugene Eric Kim", title = "{Dr. Dobb}'s Guide to {Java} Programming", publisher = "R\&D Publications", address = "????", pages = "????", year = "1997", ISBN = "0-87930-499-5 (softcover)", ISBN-13 = "978-0-87930-499-7 (softcover)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.rdbooks.com/", price = "US\$19.95", URL = "http://www.rdbooks.com/scripts/store/vsc/store/products/rd2830.htm?L+/htdocs/rdbooks/config/store+aotp4118", acknowledgement = ack-nhfb, xxpublisher = "R\&D Books", xxtitle = "{Dr. Dobbs Java} Developer's Tools \& Techniques", } @Book{Kim:1997:FLJ, author = "Seokjoo Kim", title = "First Love with {Java} [{Jaba} wa ui chotsarang: {Intonet} eso jaba aepullit mandulgi]", publisher = "Kanam Press", address = "Seoul, Korea", pages = "311", year = "1997", ISBN = "89-7354-144-7 (??Invalid checksum??)", ISBN-13 = "978-89-7354-144-7 (??Invalid checksum??)", LCCN = "????", bibdate = "Thu Aug 14 13:00:33 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/korean.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "11,000 won", URL = "????", acknowledgement = ack-nhfb, language = "Korean", } @Book{Kim:1997:JP, author = "Hyongchol Kim", title = "The {Java} Programming", publisher = "Game Pub.", address = "??, Korea", pages = "????", year = "1997", ISBN = "89-8078-035-4 (??Invalid checksum??)", ISBN-13 = "978-89-8078-035-8 (??Invalid checksum??)", LCCN = "????", bibdate = "Thu Aug 14 13:00:33 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/korean.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "12,000 won", URL = "????", acknowledgement = ack-nhfb, language = "Korean", } @Article{Kim:1997:LED, author = "Jihong Kim and Ted Lewis", title = "Letter to the Editor: Deadlocking Embrace", journal = j-COMPUTER, volume = "30", number = "4", pages = "7--7", month = apr, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Fri Apr 18 08:20:13 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computer", } @Book{Kim:1997:LJ, author = "Taehyon Kim", title = "{I} Love {Java}!", publisher = "Crown Publishing", address = "??, Korea", pages = "????", year = "1997", ISBN = "89-406-3014-X (??Invalid checksum??)", ISBN-13 = "978-89-406-3014-3 (??Invalid checksum??)", LCCN = "????", bibdate = "Thu Aug 14 13:00:33 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/korean.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "12,000 won", URL = "????", acknowledgement = ack-nhfb, language = "Korean", } @Book{Kim:1997:LJP, author = "Chungho Kim", title = "Learning {Java} Properly", publisher = "Moonyeimadang", address = "??, Korea", pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 13:00:33 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/korean.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "15,000 won", URL = "????", acknowledgement = ack-nhfb, language = "Korean", } @Book{Kim:1997:TJ, author = "Seokjoo Kim", title = "Temptation to {JavaScript}", publisher = "Kanam Press", address = "Seoul, Korea", pages = "????", year = "1997", ISBN = "89-7354-157-9 (??Invalid checksum??)", ISBN-13 = "978-89-7354-157-7 (??Invalid checksum??)", LCCN = "????", bibdate = "Thu Aug 14 13:00:33 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/korean.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "13,000 won", URL = "????", acknowledgement = ack-nhfb, language = "Korean", } @Article{Kindlund:1997:INA, author = "Erika Kindlund", title = "Interface: Navigating The Applet-Browser Divide", journal = j-IEEE-SOFTWARE, volume = "14", number = "5", pages = "22--25", month = sep # "\slash " # oct, year = "1997", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/52.605926", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Mon Sep 15 22:29:50 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses design issues for Java applets.", URL = "http://neumann.computer.org/so/books/so1997/pdf/s5022.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Software", } @Book{King:1997:EJ, author = "K. N. King", title = "Essence of {Java}", publisher = pub-NORTON, address = pub-NORTON:adr, pages = "300", month = jun, year = "1997", ISBN = "0-393-31661-0", ISBN-13 = "978-0-393-31661-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wwnorton.com/", price = "US\$24.95", URL = "http://norton3.wwnorton.com/catnos/tl031661.htm", acknowledgement = ack-nhfb, } @Article{King:1997:TTR, author = "Julia King", title = "Tough test reveals real {Java} pros", journal = j-COMPUTERWORLD, volume = "31", number = "5", pages = "61--62", day = "3", month = feb, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Feb 10 08:53:06 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Klute:1997:JPD, author = "Rainer Klute", title = "{JDBC in der Praxis: Datenbankanwendungen in Intra- und Internet}", publisher = pub-AWV, address = pub-AWV:adr, pages = "300", year = "1997", ISBN = "3-8273-1301-5", ISBN-13 = "978-3-8273-1301-0", LCCN = "????", bibdate = "Tue Mar 03 08:44:45 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "60 DM", URL = "http://www.addison-wesley.de/katalog/item.ppml?id=00264", acknowledgement = ack-nhfb, language = "German", url-author = "http://www.addison-wesley.de/katalog/author.ppml?author=Rainer+Klute", url-publisher = "http://www.addison-wesley.de/", } @Book{Knapp:1997:HJE, author = "Michael Knapp and Wolfram Gieseke", title = "{HTML} and {JAVA} 100\% efficace", publisher = "Ed. Micro application", address = "Paris, France", pages = "364", year = "1997", ISBN = "2-7429-0924-9", ISBN-13 = "978-2-7429-0924-7", LCCN = "????", bibdate = "Fri Sep 11 08:29:11 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, alttitle = "HTML et JAVA [cent pour cent] efficace", annote = "Creation et enrichissement de homepages -- couv. Glossaire et index.", keywords = "HTML (langage de balisage); Java (langage de programmation)", } @Book{Knobloch:1997:EJ, author = "Frank Knobloch and M. Seeboerger-Weichselbaum", title = "{Das Einsteigerseminar Java}", publisher = pub-BHV, address = pub-BHV:adr, pages = "350", year = "1997", ISBN = "3-89360-925-3", ISBN-13 = "978-3-89360-925-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.ctn-service.com/b-treff/bookshop/bhv/index.htm; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "20 DM", URL = "http://www.ctn-service.com/b-treff/bookshop/bhv/buch/deinst.htm#Java", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.ctn-service.com/bhv/inhalt.html", } @Article{Knudsen:1997:JMMa, author = "Jonathan Knudsen", title = "{JavaTalk}: Mirror, mirror on the {Java}", journal = j-SUNSERVER, volume = "11", number = "10", pages = "19, 25, 27--28", month = oct, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Knudsen:1997:JMMb, author = "Jonathan Knudsen", title = "{JavaTalk}: Mirror, mirror, on the {Java}\ldots{}", journal = j-HP-CHRONICLE, volume = "14", number = "10", pages = "10, 22", month = sep, year = "1997", ISSN = "0892-2829", bibdate = "Mon Jan 12 07:20:38 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses the Java Reflection API, a set of classes that allows finding out information about Java classes at runtime.", acknowledgement = ack-nhfb, fjournal = "HP Chronicle", } @Article{Knudsen:1997:JTM, author = "Jonathan Knudsen", title = "{Java} Talk: Mirror, mirror, on the {Java} \ldots{}", journal = j-SILICON-GRAPHICS-WORLD, volume = "7", number = "11", pages = "12, 17, 27", month = nov, year = "1997", ISSN = "1057-7041", bibdate = "Mon Nov 24 16:17:12 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Silicon Graphics World", } @Article{Knudsen:1997:JTT, author = "Jonathan Knudsen", title = "{JavaTalk}: Telling Time in {Java 1.1}", journal = j-SILICON-GRAPHICS-WORLD, volume = "7", number = "9", pages = "12, 18", month = sep, year = "1997", ISSN = "1057-7041", bibdate = "Mon Jan 12 07:34:00 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Silicon Graphics World", } @Article{Knudsen:1997:JUPa, author = "Jonathan Knudsen", title = "{JavaTalk}: Using a passphrase to protected data", journal = j-HP-CHRONICLE, volume = "14", number = "12", pages = "20--21, 23", month = nov, year = "1997", ISSN = "0892-2829", bibdate = "Mon Nov 24 17:25:18 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Contains brief comparison of Java and Limbo.", acknowledgement = ack-nhfb, fjournal = "HP Chronicle", } @Article{Knudsen:1997:JUPb, author = "Jonathan Knudsen", title = "{JavaTalk}; Using a passphrase to protect data", journal = j-SUNSERVER, volume = "11", number = "11", pages = "18, 20", month = nov, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Knudsen:1997:TTJ, author = "Jonathan Knudsen", title = "Telling time in {Java} 1.1", journal = j-HP-CHRONICLE, volume = "14", number = "9", pages = "20, 25", month = aug, year = "1997", ISSN = "0892-2829", bibdate = "Fri Aug 22 19:19:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "HP Chronicle", } @Book{Knut:1997:NIX, author = "Detlef Knut", title = "{Novell IntranetWare 4.x Referenz}", publisher = pub-SYBEX-VERLAG, address = pub-SYBEX-VERLAG:adr, pages = "xviii + 842", year = "1997", ISBN = "3-8155-7262-2", ISBN-13 = "978-3-8155-7262-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.de/", price = "89 DM", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.sybex.de/", } @Book{Koch-Steinheimer:1997:JPA, author = "Peter Koch-Steinheimer", title = "{Java: Das Programmieren von Agenten und Kaffeemaschinen}", publisher = "Harri Deutsch Verlag", address = "Thun, Switzerland", pages = "xix + 397", year = "1997", ISBN = "3-8171-1500-8", ISBN-13 = "978-3-8171-1500-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.germany.eu.net/shop/HD/verlag/index.htm; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "68 DM", URL = "http://www.germany.eu.net/shop/HD/verlag/index.htm", acknowledgement = ack-nhfb, language = "German", } @Book{Koch:1997:JEP, author = "Stefan Koch", title = "{JavaScript. Einfuehrung, Programmierung und Referenz}", publisher = pub-DPUNKT-VERLAG, address = pub-DPUNKT-VERLAG:adr, pages = "494", day = "15", month = feb, year = "1997", ISBN = "3-920993-64-0", ISBN-13 = "978-3-920993-64-5", LCCN = "????", bibdate = "Thu Aug 14 17:40:22 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "78,00 DM", URL = "http://www.dpunkt.de/javascript; http://www.dpunkt.de/welcome.html; http://www.dpunkt.de:80/produkte/JavaScript.html; http://www.emedia.de/bin/bookshop?show=4873&id=", acknowledgement = ack-nhfb, language = "German", } @Book{Koosis:1997:JPDa, author = "Donald Koosis and David Koosis", title = "{Java} Programming for Dummies", publisher = pub-IDG, address = pub-IDG:adr, edition = "Second", pages = "xxvi + 382", year = "1997", ISBN = "0-7645-0141-0 (softcover)", ISBN-13 = "978-0-7645-0141-8 (softcover)", LCCN = "QA76.73.J38K66 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$25", URL = "http://www.idgbooks.com/database/book_result.msql?uid=uidg323&isbn=0-7645-0141-0", acknowledgement = ack-nhfb, } @Book{Koosis:1997:JPDb, author = "Donald J. Koosis and David Koosis", title = "{Java-Programmierung f{\"u}r Dummies}", publisher = pub-ITCP, address = pub-ITCP:adr, pages = "372", year = "1997", ISBN = "3-8266-2732-6 (??invalid ISBN??)", ISBN-13 = "978-3-8266-2732-3 (??invalid ISBN??)", LCCN = "????", bibdate = "Tue Mar 03 08:54:13 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "50 DM", URL = "http://www.itp.de/; http://www.itp.de/dummies/2732/2732.html", acknowledgement = ack-nhfb, language = "German", } @Book{Koosis:1997:PJV, author = "Donald Koosis and David Koosis", title = "Programmeren in {Java} voor Dummies", publisher = pub-AW-NL, address = pub-AW-NL:adr, edition = "Second", pages = "????", month = dec, year = "1997", ISBN = "90-6789-898-8", ISBN-13 = "978-90-6789-898-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.adweslo.nl/explorer.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "fl. 70", acknowledgement = ack-nhfb, language = "Dutch", } @Article{Krall:1997:CBJ, author = "Andreas Krall and Reinhard Grafl", title = "{CACAO} --- {A} 64-bit {JavaVM} just-in-time compiler", journal = j-CPE, volume = "9", number = "11", pages = "1017--1030", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13831; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13831&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Kroeker:1997:NPJ, author = "Kirk L. Kroeker", title = "New Products: {Java} and {Internet} Development Tools: {Borland}'s {Internet Solutions Program}, {Magic Software Enterprise}'s {RADD for Enterprise} and {Internet} Apps, {Symantec}'s {Visual Caf{\'e}} for {Java} 2.0 Professional Development Edition, {Ahpah Software}'s {SourceAgain} {Java} Decompiler, {KL Group}'s {JClass Chart} 2.0 {JavaBean}", journal = j-COMPUTER, volume = "30", number = "11", pages = "128--129", month = nov, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", ISSN-L = "0018-9162", bibdate = "Wed Dec 24 13:07:39 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://pdf.computer.org/co/books/co1997/pdf/ry125.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Book{Kruger:1997:JLA, author = "Guido Kr{\"u}ger", title = "{Java 1.1 lernen: Anfangen, anwenden, verstehen}", publisher = pub-AWV, address = pub-AWV:adr, pages = "595", year = "1997", ISBN = "3-8273-1299-X", ISBN-13 = "978-3-8273-1299-0", LCCN = "????", bibdate = "Tue Mar 03 08:54:45 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "60 DM", URL = "http://www.addison-wesley.de/katalog/item.ppml?id=00251", acknowledgement = ack-nhfb, language = "German", url-author = "http://itzehoe.netsurf.de/~guido.krueger", url-publisher = "http://www.addison-wesley.de/", } @Book{Kruger:1997:JPS, author = "Guido Kr{\"u}ger", title = "{Java-Programmierung mit Symantec Visual Caf{\'e}}", publisher = pub-AW, address = pub-AW:adr, pages = "556", year = "1997", ISBN = "3-8273-1141-1 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1141-2 (??invalid ISBN??)", LCCN = "????", bibdate = "Tue Mar 03 08:55:23 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "70 DM", URL = "http://www.addison-wesley.de/", acknowledgement = ack-nhfb, language = "German", } @Book{Kuhnel:1997:JFP, author = "Ralf K{\"u}hnel", title = "{Die Java 1.1 Fibel: Programmierung von Threads und Applets, mit den neuen Bibliotheken: Beans, Security, RMI, IDL, SQL}", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "352 (or 333??)", year = "1997", ISBN = "3-8273-1233-7", ISBN-13 = "978-3-8273-1233-4", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "49,90 DM", URL = "http://www.addison-wesley.de/; http://www.addison-wesley.de/katalog/item.ppml?textexpr=Java&id=00212; http://www.addison-wesley.de/KD/NE/1024.html", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.addison-wesley.de/", } @Book{Ladd:1997:AVJ, author = "Scott Robert Ladd", title = "Active {Visual J++} --- Application Development with {Java}, {ActiveX} \& Components", publisher = pub-MICROSOFT, address = pub-MICROSOFT:adr, pages = "vii + 331", month = aug, year = "1997", ISBN = "1-57231-609-8", ISBN-13 = "978-1-57231-609-6", LCCN = "QA76.76.J38L33 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://mspress.microsoft.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", URL = "http://mspress.microsoft.com/mspress/Books/Des/1368.HTM", acknowledgement = ack-nhfb, url-publisher = "http://mspress.microsoft.com/", } @Book{Ladd:1997:PEU, author = "Eric Ladd and Jim O'Donnell", title = "Platinum Edition Using {HTML} 3.2, {Java} 1.2 and {Javascript}", publisher = pub-QUE, address = pub-QUE:adr, edition = "Second", pages = "????", month = dec, year = "1997", ISBN = "0-7897-1477-9", ISBN-13 = "978-0-7897-1477-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$60; 138,00 DM", URL = "http://merchant.superlibrary.com:8000/catalog/mcp/PRODUCT/PAGE/07897/bud/0789714779.html; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, xxtitle = "Professional Edition Using {HTML 3.2}, {Java 1.2} and {Java}", } @Book{Ladd:1997:UHJ, editor = "Eric Ladd and Jim O'Donnell and others", title = "Using {HTML 4.0}, {Java 1.1}, and {JavaScript 1.2}", publisher = pub-QUE, address = pub-QUE:adr, pages = "xxix + 1395", year = "1997", ISBN = "0-7897-1477-9", ISBN-13 = "978-0-7897-1477-0", LCCN = "QA76.76.H94L333 1998", bibdate = "Tue Aug 19 11:02:22 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "138,00 DM", URL = "http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, oldtitle = "Professional Edition Using {HTML 3.2}, {Java 1.2} and {Java}", } @Book{Lalani:1997:JBD, author = "Suleiman Lalani and Kris Jamsa", title = "{Java} Biblioteca del Programador", publisher = pub-MCGRAW-HILL-SPAIN, address = pub-MCGRAW-HILL-SPAIN:adr, pages = "????", month = nov, year = "1997", ISBN = "970-10-1350-6", ISBN-13 = "978-970-10-1350-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.es/", price = "6500 Ptas.", URL = "http://www.mcgraw-hill.es/McGrawHill/catalogo.nsf/b013777771f7e01bc125647a00607b0e/2ed8c207cc71905dc125651c00399d6b?OpenDocument", acknowledgement = ack-nhfb, language = "Spanish", url-author = "http://www.wizard.com/~slalani", url-publisher = "http://mexplaza.udg.mx/McGraw/", } @InProceedings{Lam:1997:JTI, author = "Ioi K. Lam and Brian C. Smith", title = "Jacl: {A} {Tcl} Implementation in {Java}", crossref = "USENIX:1997:ATT", institution = "Cornell University (authors 1-2)", pages = "31--??", day = "14--17", month = jul, year = "1997", bibdate = "Wed Aug 13 10:48:45 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/cgi-bin/sortbib.pl?-sA", URL = "http://www.cs.cornell.edu/home/ioi/Jacl", acknowledgement = ack-nhfb, } @Article{Lange:1997:APM, author = "D. B. Lange and M. Oshima and G. Kargoth and K. Kosaka", title = "Aglets: Programming Mobile Agents in Java", journal = j-LECT-NOTES-COMP-SCI, volume = "1274", pages = "253--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Lazarro:1997:UHD, author = "Joseph J. Lazarro", title = "{Unix} Helps the Disabled", journal = j-BYTE, volume = "22", number = "4", pages = "51--52", month = apr, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Fri Mar 14 07:40:50 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses speech output, Braille output, screen readers, and voice recognition tools for UNIX, some of them freely available.", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Lea:1997:CPJb, author = "Doug Lea", title = "Concurrent Programming in {Java}. Entwurfsprinzipien und Muster", publisher = pub-AWV, address = pub-AWV:adr, month = jul, year = "1997", ISBN = "3-8273-1243-4 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1243-3 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "70 DM", URL = "http://www.addison-wesley.de/katalog/item.ppml?id=00219", acknowledgement = ack-nhfb, language = "German", } @Article{Lea:1997:DOS, author = "D. Lea", title = "Design for open systems in Java", journal = j-LECT-NOTES-COMP-SCI, volume = "1282", pages = "32--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Unpublished{Lea:1997:DPC, author = "Doug Lea and David Holmes", title = "Design Patterns for Concurrent Programming: {A} {Java} Example", year = "1997", bibdate = "Wed Aug 13 09:18:33 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Tutorial session at \cite{USENIX:1997:TUC}.", URL = "http://dxsting.cern.ch/sting/COOTS97.html", acknowledgement = ack-nhfb, } @Article{Leach:1997:BRJ, author = "George W. Leach", title = "Book Review: {{\em Java Security: Hostile Applets, Holes, and Antidotes}}", journal = j-LOGIN, volume = "22", number = "5", pages = "??--??", month = oct, year = "1997", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:35:55 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/contents/contents.oct97.html", URL = "http://www.usenix.org/publications/login/1997-10/mcgraw.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{Lechner:1997:JER, author = "E. Lechner and S. A. Guccione", title = "The {Java} environment for reconfigurable computing", journal = j-LECT-NOTES-COMP-SCI, volume = "1304", pages = "284--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Lecomte:1997:PJ, author = "Cyrille Lecomte and Thomas Leduc", title = "Programmation {JavaScript}", publisher = pub-EYROLLES, address = pub-EYROLLES:adr, pages = "viii + 318", year = "1997", ISBN = "2-212-08937-6", ISBN-13 = "978-2-212-08937-0", LCCN = "????", bibdate = "Thu Aug 14 18:51:01 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", URL = "http://www.estp.fr/eyrolles", acknowledgement = ack-nhfb, language = "French", } @Article{Ledru:1997:APE, author = "Pascal Ledru", title = "Adaptive parallelism: an early experiment with {Java} remote method invocation", journal = j-OPER-SYS-REV, volume = "31", number = "4", pages = "24--29", month = oct, year = "1997", CODEN = "OSRED8", ISSN = "0163-5980", ISSN-L = "0163-5980", bibdate = "Sat Aug 26 08:55:52 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Operating Systems Review", } @InProceedings{Lee:1997:BTI, author = "Han Bok Lee and Benjamin G. Zorn", title = "{BIT}: {A} Tool for Instrumenting {Java} Bytecodes", crossref = "USENIX:1997:USI", pages = "73--82", year = "1997", bibdate = "Mon Mar 02 12:22:06 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/usits97/lee.html", acknowledgement = ack-nhfb, } @Book{Leinecker:1997:VJBa, author = "Richard C. Leinecker and Tom Archer", title = "{Visual J++} Bible", publisher = pub-IDG, address = pub-IDG:adr, pages = "xxix + 896", year = "1997", ISBN = "0-7645-8021-3 (paperback)", ISBN-13 = "978-0-7645-8021-5 (paperback)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", URL = "http://www.idgbooks.com/database/book_result.msql?uid=uidg323&isbn=0-7645-8021-3", acknowledgement = ack-nhfb, keywords = "Java (computer program language); Microsoft Visual J++", } @Book{Leinecker:1997:VJBb, author = "Richard C. Leinecker and Tom Archer", title = "{Visual J++} Bible", publisher = pub-FLAG, address = pub-FLAG:adr, month = feb, year = "1997", ISBN = "0-7645-8021-3", ISBN-13 = "978-0-7645-8021-5", LCCN = "QA76.73.J38 L434 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.flag.com.tw/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "With Michael Farmer and Jerry Muelver. Includes CD-ROM.", URL = "http://www.flag.com.tw/new_book/book/F8908.htm", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Leininger:1997:JDT, author = "Kevin E. Leininger", title = "{Java} Developer's Toolkit", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xv + 201", year = "1997", ISBN = "0-07-913106-9", ISBN-13 = "978-0-07-913106-5", LCCN = "QA76.73.J38L43 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0079131069/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$40", URL = "http://mcgraw-hill.inforonics.com/cgi/getarec?mgh30378%comp; http://www.mcgraw-hill.com/", acknowledgement = ack-nhfb, dimensions = "9.20in x 7.35in x 0.72in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Article{LeJacq:1997:RM, author = "J. P. LeJacq and D. M. Papurt", title = "Resource management", journal = j-J-OOP, volume = "9", number = "9", pages = "13--17", month = feb, year = "1997", CODEN = "JOOPEC", ISSN = "0896-8438", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6140D (High level languages); C6120 (File organisation)", fjournal = "Journal of Object Oriented Programming", keywords = "C; C++; CPU time; database locks; errors; files; garbage collection; hardware ports; Java; memory management systems; network sockets; object-oriented languages; object-oriented programming; program testing; resource allocation; resource management; storage management", treatment = "P Practical", } @Book{Lemay:1997:AED, author = "Laura Lemay", title = "Aprenda em 21 dias {Java}", publisher = pub-EDITORE-CAMPUS, address = pub-EDITORE-CAMPUS:adr, pages = "676", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 12:44:14 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/portuguese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "R\$ 79", URL = "http://www.campus.com.br/about-us.htm; http://www.campus.com.br/catalogo/livro.cfm?cod_livro=20104", acknowledgement = ack-nhfb, language = "Portuguese", } @Book{Lemay:1997:AJD, author = "Laura Lemay", title = "Aprendiendo {Java} En 21 Dias", publisher = pub-PH, address = pub-PH:adr, pages = "????", year = "1997", ISBN = "968-880-741-9", ISBN-13 = "978-968-880-741-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/spanish.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prentice.com.mx/", price = "\$199.00 pesos nuevos; 5616 Ptas.", acknowledgement = ack-nhfb, language = "Spanish", } @Article{Lemay:1997:AYW, author = "L. Lemay", title = "Animating your {Web} page", journal = j-WEB-TECHNIQUES, volume = "2", number = "2", pages = "18--??, 20--22", month = feb, year = "1997", CODEN = "WETEFA", ISSN = "1086-556X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210L (Computer communications); C6130B (Graphics techniques); C5620W (Other computer networks); C6150N (Distributed systems software); C6110J (Object-oriented programming); C6130M (Multimedia); C6140D (High level languages)", fjournal = "Web Techniques", keywords = "animated GIFs; browser; computer animation; description languages; HTML; hypermedia; Internet; Java animations; macros; object-; object-oriented programming; oriented languages; page; photographs; plug-in software; running horse; Shockwave; special tools; Web page design", treatment = "P Practical", } @Book{Lemay:1997:JGCa, author = "Laura Lemay and Charles L. Perkins", title = "{Java} --- Guida Completa", publisher = pub-APOGEO, address = pub-APOGEO:adr, pages = "544", year = "1997", ISBN = "88-7303-189-7", ISBN-13 = "978-88-7303-189-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/italian.html; http://www.apogeonline.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "64.000 Lire", URL = "http://www.apogeonline.com/catalogo/278.html; http://www.urra.it/278.html; http://www.urra.it/apocat.html", acknowledgement = ack-nhfb, language = "Italian", xxnote = "Check year: 1996 or 1997??", } @Book{Lemay:1997:JGCb, author = "Laura Lemay and Charles Perlins", title = "{Java} 1.1 Guida Completa", publisher = pub-APOGEO, address = pub-APOGEO:adr, pages = "????", year = "1997", ISBN = "88-7303-351-2", ISBN-13 = "978-88-7303-351-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.apogeonline.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "69,000 L.", URL = "http://www.apogeonline.com/catalogo/351.html; http://www.urra.it/351.html", acknowledgement = ack-nhfb, language = "Italian", url-author = "http://slack.lne.com/lemay/index.html", url-publisher = "http://www.urra.it/apocat.html", } @Book{Lemay:1997:JLL, author = "Laura Lemay and Michael Moncur", title = "{JavaScript: Laura Lemays Web Workshop}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, pages = "470", year = "1997", ISBN = "3-8272-5204-0 (??invalid ISBN??)", ISBN-13 = "978-3-8272-5204-3 (??invalid ISBN??)", LCCN = "????", bibdate = "Thu Aug 14 17:40:22 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "German translation of \cite{Lemay:1996:LLW}.", price = "59,95 DM", URL = "http://www.emedia.de/bin/bookshop?show=4938&id=; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm; http://www.mut.com/; http://www.mut.com/listen/fmonatb.htm", acknowledgement = ack-nhfb, language = "German", xxtitle = "{JavaScript: Interaktive Web Seiten mit JavaScript}", } @Book{Lemay:1997:JT, author = "Laura Lemay and Charles L. Perkins", title = "{Java 1.1 in 21 Tagen}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, pages = "840", year = "1997", ISBN = "3-8272-2009-2", ISBN-13 = "978-3-8272-2009-7", LCCN = "????", bibdate = "Tue Mar 03 09:04:26 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "German translation of \cite{Lemay:1996:TYJa}. Includes CD-ROM.", price = "79,95 DM", URL = "http://rendezvous.com/java/book.html; http://slack.lne.com/lemay/index.html; http://www.mut.ch/html/buchtext.htx?&x_pp=STb4XDV284xv2gpf&x_pk=Direkt&x_pa=&x_pr=Fr&x_artikelnr=22009; http://www.mut.com/", acknowledgement = ack-nhfb, language = "German", url-author = "http://slack.lne.com/lemay/index.html", url-publisher = "http://www.mut.ch/", } @Book{Lemay:1997:LJ, author = "Laura Lemay and Michael Moncur", title = "{Lemay JavaScript}", publisher = pub-ACADEMIC-SERVICE, address = pub-ACADEMIC-SERVICE:adr, pages = "387", year = "1997", ISBN = "90-395-0695-7", ISBN-13 = "978-90-395-0695-0", LCCN = "????", bibdate = "Mon Aug 18 07:31:30 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/dutch.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Dutch translation of \cite{Lemay:1996:LLW}. Includes CD-ROM.", price = "fl. 58", URL = "http://slack.lne.com/lemay/index.html; http://www.acaserv.nl; http://www.acaserv.nl/5_0695.htm", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Lemay:1997:LLJ, author = "Laura Lemay and Charles Perkins and Michael Morrison and Daniel Groner", title = "{Laura Lemay}'s {Java} 1.1 Interactive Course", publisher = pub-WAITE-GROUP, address = pub-WAITE-GROUP:adr, pages = "xl + 1194", year = "1997", ISBN = "1-57169-083-2", ISBN-13 = "978-1-57169-083-8", LCCN = "QA76.73.J38 L447 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/waite/; http://www.amazon.com/exec/obidos/ISBN=1571690832/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$45", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15716/bud/1571690832.html", acknowledgement = ack-nhfb, dimensions = "9.07in x 7.31in x 2.05in", keywords = "Java (computer program language); technology -- computers and computer technology", } @Book{Lemay:1997:OMGa, author = "Laura Lemay", title = "Official {Marimba} Guide to {Castanet}", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xx + 354", year = "1997", ISBN = "1-57521-255-2", ISBN-13 = "978-1-57521-255-5", LCCN = "TK5105.887.L46 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575212552.html", acknowledgement = ack-nhfb, url-author = "http://slack.lne.com/lemay/index.html", url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/", } @Book{Lemay:1997:OMGb, author = "Laura Lemay", title = "Official {Marimba} Guide to {Castanet}", publisher = pub-PH, address = pub-PH:adr, pages = "????", month = aug, year = "1997", ISBN = "4-88735-073-2", ISBN-13 = "978-4-88735-073-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mmjp.or.jp/prentice/", price = "3,200 yen", URL = "http://www.mmjp.or.jp/prentice/wa_int14-j.html", acknowledgement = ack-nhfb, language = "Japanese", url-publisher = "http://www.mmjp.or.jp/prentice/", xxtitle = "{Marimba Castanet}", } @Book{Lemay:1997:PJ, author = "Laura Lemay", title = "Programmeren in {Java} 1.1", publisher = pub-ACADEMIC-SERVICE, address = pub-ACADEMIC-SERVICE:adr, pages = "ca. 500", month = oct, year = "1997", ISBN = "90-395-0837-2", ISBN-13 = "978-90-395-0837-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.acaserv.nl; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Dutch translation of \cite{Lemay:1997:LLJ}.", price = "fl. 68,00", URL = "http://acaserv.nl/bestel/5_0837.htm", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Lemay:1997:TYJ, author = "Laura Lemay and Charles L. Perkins", title = "Teach Yourself {Java} 1.1 in 21 Days", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, edition = "Second", pages = "xxxi + 775", day = "1", month = apr, year = "1997", ISBN = "1-57521-142-4", ISBN-13 = "978-1-57521-142-8", LCCN = "QA76.73.J38 L449 1997", bibdate = "Mon Jun 22 09:37:12 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.amazon.com/exec/obidos/ISBN=1575211424/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575211424.html; http://www.mcp.com/samsnet/", acknowledgement = ack-nhfb, dimensions = "9.01in x 7.28in x 1.97in", keywords = "Java (Computer program language) -- Handbooks, manuals, etc.", paperback = "yes", url-author = "http://slack.lne.com/lemay/index.html", url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/", } @Article{Leppinen:1997:JCB, author = "Mika Leppinen and Pekka Pulkkinen and Aapo Rautiainen", title = "{Java}- and {CORBA}-Based Network Management", journal = j-COMPUTER, volume = "30", number = "6", pages = "83--87", month = jun, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Wed Jun 04 08:59:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computer", } @Book{Lester:1997:DPV, author = "Christopher S. Lester", title = "Database Programming with {Visual J++}", publisher = pub-QUE, address = pub-QUE:adr, pages = "xxii + 688", year = "1997", ISBN = "0-7897-1015-3", ISBN-13 = "978-0-7897-1015-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", URL = "http://dev.mcp.com:8001/about/coinfo/imprints/que/books/descriptions/10153d.html", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/que/", } @Article{Lewis:1997:BCI, author = "Ted Lewis", title = "Binary Critic: If {Java} Is the Answer, What Was the Question?", journal = j-COMPUTER, volume = "30", number = "3", pages = "136, 133--135", month = mar, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Fri Jul 11 09:45:31 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "See responses \cite{Olsen:1997:LWJ,Welch:1997:LEI}.", acknowledgement = ack-nhfb, classification = "C5620W (Other computer networks); C6110J (Object-oriented programming); C6140D (High level languages); C6150N (Distributed systems software)", corpsource = "Naval Postgraduate Sch., Monterey, CA, USA", fjournal = "Computer", keywords = "C/C++; computer industry; information networks; Java adoption curve; Java language; object- oriented programming; object-oriented languages; product hype; software engineering challenges", treatment = "P Practical", } @Book{Lewis:1997:JPS, author = "Geoffrey Lewis and Steven Barber", title = "{Joe} Programming Sourcebook: Developing {Web} Applications With {Java} and {CORBA}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "????", month = jul, year = "1997", ISBN = "0-471-18147-1 (softcover)", ISBN-13 = "978-0-471-18147-7 (softcover)", LCCN = "QA76.625.L48 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", note = "Publication cancelled.", price = "US\$26.99", acknowledgement = ack-nhfb, } @Book{Lewis:1997:SSUa, author = "John Lewis", title = "Software Systems Using {Java} Preliminary Version", publisher = pub-AW-LONGMAN, address = pub-AW-LONGMAN:adr, pages = "????", month = jan, year = "1997", ISBN = "0-201-69588-X", ISBN-13 = "978-0-201-69588-5", LCCN = "????", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "Java (computer program language); technology -- computers and computer technology", } @Article{Lindholm:1997:IJV, author = "Tim Lindholm and Frank Yellin", title = "Inside the {Java Virtual Machine}", journal = j-UNIX-REVIEW, volume = "15", number = "1", pages = "31, 32, 34--36, 38, 39", month = jan, year = "1997", CODEN = "UNRED5", ISSN = "0742-3136", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7430 (Computer engineering); C6110J (Object-oriented programming); C6140D (High level languages); C6140B (Machine-oriented languages); C6150C (Compilers, interpreters and other processors); C6120 (File organisation)", fjournal = "UNIX review", keywords = "abstract data types; bytecode files; instruction sets; interpreter; interpreters; Java bytecodes; Java programs; Java Virtual Machine; JVM; languages; object oriented language; object-oriented; object-oriented programming; program; program execution; run time module; verifier; virtual machines", treatment = "P Practical", } @Book{Lindholm:1997:JSV, author = "Tim Lindholm and Frank Yellin and Bill Joy and others", title = "{Java --- Die Spezifikation der Virtuellen Maschine}", publisher = pub-AW, address = pub-AW:adr, pages = "464", year = "1997", ISBN = "3-8273-1045-8", ISBN-13 = "978-3-8273-1045-3", LCCN = "????", bibdate = "Tue Mar 03 09:14:09 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.addison-wesley.de/katalog; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "German translation of \cite{Lindholm:1997:JVM}.", price = "79,90 DM", URL = "http://www.addison-wesley.de/katalog/item.ppml?textexpr=Java&id=00142", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.addison-wesley.de/", } @Book{Lindholm:1997:JVM, author = "Tim Lindholm and Frank Yellin", title = "The {Java} Virtual Machine Specification", publisher = pub-AW, address = pub-AW:adr, pages = "xvi + 475", month = jan, year = "1997", ISBN = "0-201-63452-X", ISBN-13 = "978-0-201-63452-5", LCCN = "QA76.73.J38L56 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=020163452X/wholesaleproductA/; http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$36.53", series = "The Java Series", URL = "http://www.aw.com/cp/javaseries.html; http://www.aw.com/cseng/titles/0-201-63452-X", acknowledgement = ack-nhfb, dimensions = "9.20in x 7.36in x 1.03in", keywords = "Internet (Computer network); Java (Computer program language); Java (computer program language); programming languages (electronic computers); systems; virtual computer; Virtual computer systems", lccnalt = "96-015897", } @Book{Linke:1997:VJV, author = "Thomas Linke", title = "{Visual J++ Version 1.1 Schnell{\"u}bersicht}", publisher = "Markt\&Technik", address = "????", pages = "????", month = may, year = "1997", ISBN = "3-8272-5257-1", ISBN-13 = "978-3-8272-5257-9", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "40 DM", URL = "http://www.mut.ch/html/buchinfo.htx?&x_pp=dJgxRqA9wlAYNijX&x_az=10&x_pk=VpLvjnsx7b5V&x_pa=B&x_pr=oS&x_bestell=25257&x_stichwort=Linke&x_sprache=A&x_start=1&x_gefunden=2&x_query=&x_lastpage=buchfund&x_soft=&x_suchewo=A", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.mut.ch/", } @Book{Littleford:1997:JCS, author = "Alan Littleford", title = "{Java} Commerce and Security Programming", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "500", month = feb, year = "1997", ISBN = "1-57610-101-0", ISBN-13 = "978-1-57610-101-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99, CDN\$55.99", URL = "http://www.coriolis.com/", acknowledgement = ack-nhfb, keywords = "Java (computer program language); technology -- computers and computer technology", } @Book{Lockwood:1997:JAD, author = "Stephen D. Lockwood and Madhu Siddalingaiah", title = "{Java API} for Dummies: Quick Reference", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xvi + 224", month = may, year = "1997", ISBN = "0-7645-0118-6", ISBN-13 = "978-0-7645-0118-0", LCCN = "QA76.73.J38 L63 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0764501186/wholesaleproductA/; http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$14.99", URL = "http://www.idgbooks.com/cgi-bin/db/fill_out_template.pl?idgbook:0-7645-0112-7:book-idg::uidg323; http://www.idgbooks.com/database/book_result.msql?uid=uidg323&isbn=0-7645-0118-6", acknowledgement = ack-nhfb, dimensions = "8.53in x 5.96in x 0.66in", paperback = "yes", } @Article{Loeffler:1997:MJF, author = "G. Loeffler", title = "A Multithreaded {Java} Framework for Solving Linear Elliptic Partial Differential Equations in {3D}", journal = j-LECT-NOTES-COMP-SCI, volume = "1343", pages = "121--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Longuet:1997:JM, author = "Patrick Longuet", title = "{Java MegaPoche}", publisher = pub-SYBEX-FRANCE, address = pub-SYBEX-FRANCE:adr, pages = "453", year = "1997", ISBN = "2-7361-2406-5", ISBN-13 = "978-2-7361-2406-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.fr/", note = "Includes CD-ROM.", price = "????", URL = "http://www-db.sybex.fr/cgi-bin/Sybex/Webdriver?MIval=Fiche_Book.html&Reference=2406; http://www.sybex.fr/", acknowledgement = ack-nhfb, language = "French", } @Book{Louis:1997:JLI, author = "Dirk Louis and Peter M{\"u}ller", title = "{Jetzt lerne ich Java}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, pages = "????", year = "1997", ISBN = "3-8272-5311-X", ISBN-13 = "978-3-8272-5311-8", LCCN = "????", bibdate = "Tue Mar 03 09:14:56 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "39,95 DM", URL = "http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, language = "German", } @Book{Loy:1997:CJD, author = "Marc Loy and Thomas J. Berry", title = "A Complete {Java} Database Training Course", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "32", year = "1997", ISBN = "0-13-759507-7", ISBN-13 = "978-0-13-759507-5", LCCN = "QA76.73.J38<1997 00439", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", note = "CD ROM only; no printed book.", price = "US\$70", URL = "http://www.prenhall.com/allbooks/ptr_0137595077.html; http://www.prenhall.com/ptrbooks/ptr_0137595077.html", acknowledgement = ack-nhfb, } @Article{Lu:1997:WBD, author = "Tain-Chi Lu and Chung-Wen Chiang and Chungnan Lee and Tong-Yee Lee", title = "A {Web}-based distributed and collaborative {3D} animation environment", journal = j-CPE, volume = "9", number = "11", pages = "1261--1268", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13840; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13840&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Lyon:1997:JDS, author = "Douglas A. Lyon and Hayagriva V. Rao", title = "{Java} Digital Signal Processing", publisher = pub-MIS # " and " # pub-MT, address = pub-MIS:adr # " and " # pub-MT:adr, month = nov, year = "1997", ISBN = "1-55851-568-2", ISBN-13 = "978-1-55851-568-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mispress.com/", price = "US\$45", URL = "http://www.mandt.com/javadigsignproc.htm", acknowledgement = ack-nhfb, } @Book{Macary:1997:PJ, author = "Jean-Fran{\c{c}}ois Macary and C{\'e}dric Nicolas", title = "Programaci{\'o}n {Java}", publisher = "Ediciones Gesti{\'o}n 2000, S.A.", address = "????", pages = "????", year = "1997", ISBN = "84-8088-128-3", ISBN-13 = "978-84-8088-128-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/spanish.html; http://www.intercom.es/gestio2000/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "3995 Ptas.", URL = "http://www.fisystem.fr/java/javabook.htm", acknowledgement = ack-nhfb, language = "Spanish", } @Article{Mackie:1997:LIH, author = "Jamieson Mackie", title = "Is {Lucent}'s {Inferno} hot enough for you?", journal = j-HP-CHRONICLE, volume = "14", number = "12", pages = "17, 22--23", month = nov, year = "1997", ISSN = "0892-2829", bibdate = "Sun Oct 25 10:43:55 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Contains brief comparison of Java and Limbo.", acknowledgement = ack-nhfb, fjournal = "HP Chronicle", } @Article{Mackie:1997:NCJ, author = "Jamieson Mackie", title = "Network computers, {Java} and {ActiveX}; Let's get ready to rumble?", journal = j-SUNSERVER, volume = "11", number = "9", pages = "1, 20", month = sep, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Mackie:1997:NJA, author = "Jamieson Mackie", title = "{NCs}, {Java} and {ActiveX}: Let's get ready to rumble?", journal = j-HP-CHRONICLE, volume = "14", number = "9", pages = "18--19", month = aug, year = "1997", ISSN = "0892-2829", bibdate = "Fri Aug 22 19:19:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "HP Chronicle", } @Article{Mackie:1997:SLIa, author = "Jamieson Mackie", title = "A Smoking {OS}: Is {Lucent}'s {Inferno} Hot Enough for You?", journal = j-CISCO-WORLD, volume = "3", number = "9", pages = "14--15", month = sep, year = "1997", ISSN = "1081-3187", bibdate = "Sun Oct 25 10:43:52 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Comparison of Limbo and Java.", acknowledgement = ack-nhfb, fjournal = "Cisco World: The Independent Journal for Internetworking Professionals", } @Article{Mackie:1997:SLIb, author = "Jamieson Mackie", title = "A Smoking {OS}: Is {Lucent}'s {Inferno} Hot Enough for You?", journal = j-SILICON-GRAPHICS-WORLD, volume = "7", number = "9", pages = "16, 18", month = sep, year = "1997", ISSN = "1057-7041", bibdate = "Mon Oct 26 07:11:42 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Comparison of Limbo and Java.", acknowledgement = ack-nhfb, fjournal = "Silicon Graphics World", } @Book{Manning:1997:TYBa, author = "Michelle Manning", title = "Teach Yourself {Borland JBuilder} 2 in 21 Days", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, month = nov, year = "1997", ISBN = "0-672-31318-9", ISBN-13 = "978-0-672-31318-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", acknowledgement = ack-nhfb, } @Book{Manning:1997:TYJ, author = "Michelle M. Manning", title = "Teach Yourself {JBuilder} in 21 Days", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxix + 752", year = "1997", ISBN = "1-57521-104-1", ISBN-13 = "978-1-57521-104-6", LCCN = "QA76.73.J38M346 1997", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575211041.html", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/", xxauthor = "Susan Charlesworth", xxtitle = "Teach Yourself {Borland JBuilder} in 21 Days", } @Book{Marketos:1997:JDT, author = "Joshua Marketos", title = "The {Java} developer's toolkit: techniques and technologies for experienced {Web} programmers", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xv + 383", year = "1997", ISBN = "0-471-16519-0 (paperback)", ISBN-13 = "978-0-471-16519-4 (paperback)", LCCN = "QA76.73.J38M35 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0471165190/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$29.95", URL = "http://www.wiley.com/compbooks/catalog/16519-0.htm", acknowledgement = ack-nhfb, dimensions = "9.24in x 7.56in x 0.96in", keywords = "Computer software -- Development; Java (computer program language); technology -- computers and computer technology; World wide Web (information retrieval system)", lccnalt = "96-035812", paperback = "yes", } @Book{Marmel:1997:COJ, author = "Elaine Marmel and Sherry Kinkoph", title = "{Corel Office} for {Java} 6 in 1", publisher = pub-QUE, address = pub-QUE:adr, pages = "????", month = jun, year = "1997", ISBN = "0-7897-1314-4 (softcover)", ISBN-13 = "978-0-7897-1314-8 (softcover)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$26.99", acknowledgement = ack-nhfb, xxauthor = "{QUE Development Group}", } @Article{Martin:1997:JCC, author = "R. C. Martin", title = "{Java} and {C++}: a critical comparison", journal = j-C-PLUS-PLUS-REPORT, volume = "9", number = "1", pages = "42--49", month = jan, year = "1997", CODEN = "CRPTE7", ISSN = "1040-6042", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming)", fjournal = "C++ Report", keywords = "C language; C++ language; Java; language design trade-offs; object-oriented languages", treatment = "G General Review", } @Book{Martin:1997:JG, author = "Michel Martin", title = "{Java} 1.1 Gigapoche", publisher = pub-SYBEX-FRANCE, address = pub-SYBEX-FRANCE:adr, month = dec, year = "1997", ISBN = "2-7361-2792-7", ISBN-13 = "978-2-7361-2792-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.fr/", price = "98 FF", URL = "http://www-db.sybex.fr/cgi-bin/Sybex/Webdriver?MIval=Fiche_Book.html&Reference=2792", acknowledgement = ack-nhfb, language = "French", } @Book{Martin:1997:JP, author = "Michel Martin", title = "{Java} 1.1 Le Platinum", publisher = pub-SYBEX-FRANCE, address = pub-SYBEX-FRANCE:adr, month = dec, year = "1997", ISBN = "2-7361-2758-7", ISBN-13 = "978-2-7361-2758-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.fr/", price = "229 FF", URL = "http://www-db.sybex.fr/cgi-bin/Sybex/Webdriver?MIval=Fiche_Book.html&Reference=2758", acknowledgement = ack-nhfb, language = "French", } @Book{Maso:1997:MMV, author = "Brian Maso", title = "Manual de Microsoft {Visual J++}", publisher = pub-MCGRAW-HILL-SPAIN, address = pub-MCGRAW-HILL-SPAIN:adr, year = "1997", ISBN = "84-481-1054-4", ISBN-13 = "978-84-481-1054-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.es/", price = "4200 Ptas.", URL = "http://www.mcgraw-hill.es/McGrawHill/catalogo.nsf/b013777771f7e01bc125647a00607b0e/d61dcf49c3b59661c12564d60040531d?OpenDocument", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Maso:1997:VJH, author = "Brian Maso", title = "The {Visual J++} Handbook", publisher = pub-OSBORNE, address = pub-OSBORNE:adr, pages = "xxiii + 440", year = "1997", ISBN = "0-07-882266-1 (paperback)", ISBN-13 = "978-0-07-882266-7 (paperback)", LCCN = "QA76.73.J38M353 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.osborne.com/", price = "US\$30", URL = "http://www.osborne.com/int/jplus.htm", acknowledgement = ack-nhfb, keywords = "Java (Computer program language); Microsoft Visual J++", } @Book{Maurers:1997:J, author = "Rolf M{\"a}urers and Kai Baufeldt", title = "{Java}", publisher = "Micro application", address = "Paris, France", edition = "Second", pages = "369", year = "1997", ISBN = "2-7429-0752-1", ISBN-13 = "978-2-7429-0752-6", LCCN = "????", bibdate = "Fri Oct 24 15:42:35 MDT 2008", bibsource = "carmin.sudoc.abes.fr:210/ABES-Z39-PUBLIC; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{McCarthy:1997:UWM, author = "V. McCarthy", title = "Use the {Web} to manage your network", journal = j-DATAMATION, volume = "43", number = "1", pages = "128--133", month = jan, year = "1997", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "D5020 (Computer networks and intercomputer communications); D1000 (General and Management aspects)", fjournal = "Datamation", keywords = "agents; brownouts; computer communications software; computer network; failure avoidance; graphical user interfaces; GUI; HTML; Internet; Java applets; management; network; network management; software; software agents; traffic speed; universal logins; UNIX-based management consoles; Web browsers; wide-area connections; World Wide Web", treatment = "P Practical", } @Article{McCormick:1997:LEN, author = "John W. M. McCormick", title = "Letter to the Editor: No Language for Beginners", journal = j-COMPUTER, volume = "30", number = "4", pages = "7--7", month = apr, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Fri Apr 18 08:20:13 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Decries adoption of Java as a dominant language in beginning Computer Science courses.", acknowledgement = ack-nhfb, fjournal = "Computer", } @Book{McElroy:1997:CJP, author = "David McElroy and Janet L. Traub", title = "Core {JDBC} Programming", publisher = pub-PH, address = pub-PH:adr, pages = "????", month = nov, year = "1997", ISBN = "0-13-764994-0", ISBN-13 = "978-0-13-764994-5", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", URL = "http://www.prenhall.com/ptrbooks/ptr_0137649940.html", acknowledgement = ack-nhfb, url-publisher = "http://www.prenhall.com/", } @InProceedings{McFarland:1997:DIS, author = "T. McFarland and B. Beck and H. Hiura", title = "Developing Internationalized Software with {JDK 1.1}", crossref = "UC:1997:SDI", pages = "TA2--??", year = "1997", bibdate = "Thu Aug 20 07:03:28 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc11/program.html", acknowledgement = ack-nhfb, keywords = "internet; software development; Unicode", } @InProceedings{McFarland:1997:EDI, author = "T. McFarland", title = "Experiences Developing Internationalized Applets with {Java}", crossref = "UC:1997:SDI", pages = "A15--??", year = "1997", bibdate = "Fri Apr 24 09:14:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "internet; software development; Unicode", } @Article{McGibbon:1997:UAM, author = "Barry McGibbon", title = "{UNIX} Application Management: Legacy Reengineering with {Java} and the {Web}", journal = j-UNIX-DEVELOPER, volume = "1", number = "1", pages = "31--34", month = jan # "\slash " # feb, year = "1997", ISSN = "1090-2279", bibdate = "Thu Jan 16 17:23:49 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "UNIX Developer", } @Article{McGrath:1997:JTA, author = "Robert E. McGrath and Xinjian Lu and Michael Folk", title = "{Java} applications using {NCSA HDF} files", journal = j-CPE, volume = "9", number = "11", pages = "1113--1125", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13825; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13825&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{McGraw:1997:JSH, author = "Gary McGraw and Edward Felten", title = "{Java} Security: Hostile Applets, Holes, and Antidotes", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xiv + 192", year = "1997", ISBN = "0-471-17842-X (paperback)", ISBN-13 = "978-0-471-17842-2 (paperback)", LCCN = "QA76.73.J38M354 1997", bibdate = "Mon Jun 22 09:39:14 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=047117842X/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", note = "A companion CD-ROM ``Java Security: Managing the Risks'' is also available from MindQ Publishing.", price = "US\$19.95", series = "Wiley Computer Publishing", URL = "http://www.mindq.com/java/javasecu.html; http://www.wiley.com/compbooks/catalog/17842-X.htm", acknowledgement = ack-nhfb, dimensions = "9.22in x 7.48in x 0.51in", keywords = "Computer security; Java (Computer program language); Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Book{McGraw:1997:JSM, author = "Gary McGraw and Edward Felten", title = "{Java} Security: Managing the Risks", publisher = pub-MINDQ, address = pub-MINDQ:adr, pages = "????", year = "1997", ISBN = "1-57559-012-3", ISBN-13 = "978-1-57559-012-7", LCCN = "????", bibdate = "Mon Jun 22 09:39:21 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mindq.com/", note = "CD ROM.", price = "US\$59.95", URL = "http://www.mindq.com/java/javasecu.html", acknowledgement = ack-nhfb, } @Article{McGraw:1997:JST, author = "Gary McGraw and Edward Felten", title = "{Java} Security and Type Safety --- {Java}'s sophisticated security mechanism performs run-time safety checks before it allows a downloaded applet to execute", journal = j-BYTE, volume = "22", number = "1", pages = "63--64", month = jan, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon Jun 22 07:38:06 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{McGraw:1997:LEL, author = "Gary McGraw and Edward Felten", title = "Letter to the Editor: Lame Review?", journal = j-BYTE, volume = "22", number = "6", pages = "20--20", month = jun, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon Jun 22 07:38:35 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Authors' response to \cite{Kay:1997:CRR}.", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{McHale:1997:VJT, author = "Robert McHale", title = "{Visual J++} Training Videos", publisher = "KeyStone Learning Systems", address = "????", month = may, year = "1997", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.keylearnsys.com/index1.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$90", URL = "http://www.keylearnsys.com/outlines/j++.html", acknowledgement = ack-nhfb, } @Article{McKeon:1997:FJF, author = "Maureen McKeon", title = "Firms Join Forces for {JSQL}", journal = j-SUNEXPERT, volume = "8", number = "6", pages = "22--23", month = jun, year = "1997", ISSN = "1053-9239", bibdate = "Thu Jun 26 09:44:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses a proposed Java interface to SQL (Standard Query Language), and JDBC (Java-to-database connectivity).", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Meckler:1997:JIA, author = "Andrew Meckler", title = "{Java} and Inter-Applet Communication", journal = j-DDJ, volume = "22", number = "10", pages = "46, 48, 50--53, 103", month = oct, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Nov 28 17:28:03 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "The base {Java} libraries partially support inter-applet communication. However, if there are multiple HTML pages displayed in the browser at one time, the applets in different contexts cannot communicate with one another. Andrew presents a way around this problem.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Mehler:1997:CRJ, author = "Mark Mehler", title = "{CSX}: {A} Railroad's {Java} Journey", journal = j-OBJECT-MAG, volume = "7", number = "1", pages = "63--63", month = mar, year = "1997", CODEN = "OBMAFO", ISSN = "1055-3614", bibdate = "Mon Mar 03 11:22:35 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Object Magazine", } @Article{Messmer:1997:SGR, author = "Ellen Messmer", title = "Symanticec gives remote control software {NT} boost, debuts {Java} tools: New versions of {Visual Caf{\'e}} for {Java} boast {Navigator} links", journal = j-NETWORK-WORLD, volume = "14", number = "33", pages = "15--15", day = "18", month = aug, year = "1997", ISSN = "0887-7661", ISSN-L = "0887-7661", bibdate = "Mon Nov 24 17:55:01 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Network World", } @Book{Meyer:1997:JVM, author = "Jon Meyer and Troy Downing", title = "The {Java} Virtual Machine", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxiv + 426", year = "1997", ISBN = "1-56592-194-1", ISBN-13 = "978-1-56592-194-8", LCCN = "QA76.73.J38M49 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1565921941/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", price = "US\$32.95", URL = "http://www.ora.com/www/item/javavm.html", acknowledgement = ack-nhfb, dimensions = "9.18in x 7.08in x 1.15in", keywords = "computer systems; Java (computer program language); technology -- computers and computer technology; virtual", paperback = "yes", } @Book{Meyer:1997:OOS, author = "Bertrand Meyer", title = "Object-Oriented Software Construction, 2nd Ed", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "xxvii + 1254", year = "1997", ISBN = "0-13-629155-4", ISBN-13 = "978-0-13-629155-8", LCCN = "QA76.64 .M493 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$70", URL = "http://www.prenhall.com/allbooks/ptr_0136291554.html", acknowledgement = ack-nhfb, keywords = "computer software -- development; object-oriented programming (computer science)", url-author = "http://www.eiffel.com", url-publisher = "http://www.prenhall.com/", } @Article{Michaels:1997:CCJ, author = "Laura Michaels", title = "{C/C++} and {Java} Library Equivalents", journal = j-CCCUJ, volume = "15", number = "6", pages = "53--55", month = jun, year = "1997", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Fri May 16 08:01:41 1997", bibsource = "http://www.cuj.com/1506toc.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Book{Michaels:1997:ONJ, author = "Sean Michaels", title = "Official {Netscape JFC} Developer's Guide", publisher = pub-VENTANA, address = pub-VENTANA:adr, pages = "????", year = "1997", ISBN = "1-56604-756-0", ISBN-13 = "978-1-56604-756-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.netscapepress.com/", price = "US\$50", URL = "http://www.vmedia.com/bookshop/book.html?isbn=1566047560", acknowledgement = ack-nhfb, url-publisher = "http://www.netscapepress.com/", } @Book{MindQ:1997:AJT, author = "{MindQ}", title = "Advanced {Java} Topics", publisher = pub-MINDQ, address = pub-MINDQ:adr, year = "1997", bibdate = "Thu Feb 04 06:25:18 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www1.clbooks.com/asp/BookInfo/BookInfo.asp?theisbn=IT10216128", note = "Interactive traing system. Order number T10216128, Part number 901715.", price = "US\$995.00", acknowledgement = ack-nhfb, } @Book{MindQ:1997:DTJ, author = "{MindQ}", title = "Developer Training For {Java}", publisher = pub-MINDQ, address = pub-MINDQ:adr, year = "1997", bibdate = "Thu Feb 04 06:25:18 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www1.clbooks.com/asp/BookInfo/BookInfo.asp?theisbn=IT10216129", note = "Interactive traing system. Order number IT10216129, Part number 901704.", price = "US\$1595.00", acknowledgement = ack-nhfb, } @Book{MindQ:1997:EJT, author = "{MindQ}", title = "Essential {Java} Training", publisher = pub-MINDQ, address = pub-MINDQ:adr, year = "1997", bibdate = "Thu Feb 04 06:25:18 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www1.clbooks.com/asp/BookInfo/BookInfo.asp?theisbn=IT10216127", note = "Interactive traing system. Order number IT10216127, Part number 901746.", price = "US\$795.00", acknowledgement = ack-nhfb, } @Article{Mintchev:1997:ABN, author = "S. Mintchev and V. Getov", title = "Automatic Binding of Native Scientific Libraries to {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1343", pages = "129--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Mintchev:1997:TPM, author = "S. Mintchev and V. Getov", title = "Towards Portable Message Passing in {Java}: Binding {MPI}", journal = j-LECT-NOTES-COMP-SCI, volume = "1332", pages = "135--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Mirho:1997:JTC, author = "Charles Mirho and Tom Clements", title = "{JavaOS}: Thin Client, Fat Service --- {JavaOS} uses a small memory footprint, yet its network-centric design lets it access large-scale services", journal = j-BYTE, volume = "22", number = "7", pages = "53--54", month = jul, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon Jul 21 10:20:38 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Mitchell:1997:DEA, author = "Michael A. Mitchell", title = "Developing Enterprise Applications with {Visual J++}", publisher = pub-WAITE-GROUP, address = pub-WAITE-GROUP:adr, pages = "xxvii + 522", year = "1997", ISBN = "1-57169-085-9", ISBN-13 = "978-1-57169-085-2", LCCN = "QA76.73.J38M58 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/waite/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15716/bud/1571690859.html", acknowledgement = ack-nhfb, keywords = "Application software -- Development; Internet programming.; Java (Computer program language); Microsoft Visual J++", url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/waite/", } @Misc{Mitchell:1997:JBF, author = "Jim Mitchell", title = "{Java OS}: Back to the Future", year = "1997", bibdate = "Fri Oct 18 08:46:23 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Unpublished invited talk at the USENIX 2nd Symposium on OS Design and Implementation (OSDI '96), October 28--31, 1996, Seattle, Washington.", URL = "http://www.usenix.org/publications/library/proceedings/osdi96/invited_talks/mitchell/abstract.html", acknowledgement = ack-nhfb, } @Article{Moffat:1997:JJA, author = "David Moffat", title = "{Java} is not just another language", journal = j-SUNSERVER, volume = "11", number = "9", pages = "21--21", month = sep, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Book{Mohseni:1997:JDG, author = "Piroz Mohseni and Tom Stewart", title = "{JavaBeans} Developer's Guide", publisher = pub-MIS # " and " # pub-MT, address = pub-MIS:adr # " and " # pub-MT:adr, pages = "xix + 311", month = sep, year = "1997", ISBN = "1-55851-573-9 (softcover)", ISBN-13 = "978-1-55851-573-4 (softcover)", LCCN = "QA76.73.J38M64 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mispress.com/", note = "Includes CD-ROM.", price = "US\$35.95", URL = "http://www.idgbooks.com/cgi-bin/db/fill_out_template.pl?idgbook:1-55851-573-9:book-idg::uidg781; http://www.mandt.com/{javabeansdevgde}.htm", acknowledgement = ack-nhfb, xxtitle = "{Java Beans} Developers Guide", } @Article{Mojsa:1997:WEC, author = "Tomasz Mojsa and Krzysztof Zieli{\'n}ski", title = "{Web} enabled, {CORBA} Driven, Distributed {VideoTalk} environment on the {Java Platform}", journal = j-COMP-NET-ISDN, volume = "29", number = "8--13", pages = "865--873", day = "30", month = sep, year = "1997", CODEN = "CNISE9", ISSN = "0169-7552", ISSN-L = "0169-7552", bibdate = "Fri Sep 24 20:21:54 MDT 1999", bibsource = "http://www.elsevier.com/cgi-bin/cas/tree/store/cna/cas_free/browse/browse.cgi?year=1997&volume=29&issue=08-13; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.elsevier.com/cgi-bin/cas/tree/store/comnet/cas_sub/browse/browse.cgi?year=1997&volume=29&issue=08-13&aid=1681", acknowledgement = ack-nhfb, fjournal = "Computer Networks and ISDN Systems", } @Article{Montague:1997:JEJ, author = "Bruce R. Montague", title = "{JN}: {OS} for an Embedded {Java Network Computer} --- Supporting {Java}'s {Virtual Machine} on a single-chip embedded {PC} attached to the {Internet}", journal = j-IEEE-MICRO, volume = "17", number = "3", pages = "54--60", month = may # "\slash " # jun, year = "1997", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/40.591656", ISSN = "0272-1732 (print), 1937-4143 (electronic)", ISSN-L = "0272-1732", bibdate = "Tue Aug 12 12:35:06 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://pascal.computer.org/mi/books/mi1997/pdf/m3054.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Micro", } @Article{Moore:1997:LEJ, author = "David L. Moore and Tom R. Halfhill", title = "Letters to the {Editor}: On {Java}", journal = j-BYTE, volume = "22", number = "4", pages = "19--20", month = apr, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Fri Mar 14 07:40:50 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Moran:1997:LEA, author = "Tom Moran and Tom R. Halfhill", title = "Letter to the {Editor}: {Ada} Speaks {Java}", journal = j-BYTE, volume = "22", number = "4", pages = "20--20", month = apr, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Fri Mar 14 07:40:50 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Morgan:1997:VJUa, author = "Bryan Morgan and others", title = "{Visual J++} Unleashed", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxix + 834", year = "1997", ISBN = "1-57521-161-0", ISBN-13 = "978-1-57521-161-9", LCCN = "QA76.73.J38M67 1997", bibdate = "Mon Jun 22 09:40:42 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575211610.html; http://www.superlibrary.com/cgi-bin/bag?isbn=1-57521-161-0&last=/bookstore", acknowledgement = ack-nhfb, keywords = "Java (Computer program language); Microsoft Visual J++", } @Book{Morgan:1997:VJUb, author = "Bryan Morgan and others", title = "{Visual J++ 1.1} Unleashed", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, edition = "Second", pages = "xxix + 845", year = "1997", ISBN = "1-57521-356-7", ISBN-13 = "978-1-57521-356-9", LCCN = "QA76.73.J38M66 1997", bibdate = "Mon Jun 22 09:41:04 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575213567.html", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/", } @Book{Morgenthal:1997:BDJ, author = "Jeffrey Morgenthal", title = "Building Distributed {Java} Applications", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "????", month = sep, year = "1997", ISBN = "0-07-913679-6 (softcover)", ISBN-13 = "978-0-07-913679-4 (softcover)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", note = "Includes CD-ROM.", price = "US\$44.95", acknowledgement = ack-nhfb, } @Article{Morrison:1997:ECG, author = "Gale B. Morrison", title = "Engineering Center to Give {Java} a Boost", journal = j-ENEWS, volume = "43", number = "2183", pages = "10, 60", day = "1", month = sep, year = "1997", CODEN = "ELNEAU", ISSN = "0013-4937, 1061-6624", bibdate = "Mon Jan 12 07:14:43 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Electronic News", } @Book{Morrison:1997:JBT, author = "Michael Morrison", title = "{Java Beans: Technik, Konzepte, Beispiele}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, pages = "????", year = "1997", ISBN = "3-8272-5284-9", ISBN-13 = "978-3-8272-5284-5", LCCN = "????", bibdate = "Tue Mar 03 09:24:40 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "59,95 DM", URL = "http://www.mut.ch/html/buchtext.htx?&x_pp=STb4XDV284xv2gpf&x_pk=Direkt&x_pa=&x_pr=Fr&x_artikelnr=25284; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.mut.ch/", } @Book{Morrison:1997:JDP, author = "Michael Morrison", title = "{Java} Database Programming Lab", publisher = pub-PRIMA, address = pub-PRIMA:adr, pages = "500", year = "1997", ISBN = "0-7615-1040-0", ISBN-13 = "978-0-7615-1040-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0761510400/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.primapublishing.com/", note = "Includes CD-ROM.", price = "US\$40.00", acknowledgement = ack-nhfb, } @Book{Morrison:1997:JI, author = "Michael Morrison", title = "{Java 1.1 f{\"u}r Insider}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, pages = "1112", month = aug, year = "1997", ISBN = "3-8272-2007-6", ISBN-13 = "978-3-8272-2007-3", LCCN = "????", bibdate = "Tue Mar 03 09:22:28 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "99,95 DM", URL = "http://www.mut.ch/html/buchtext.htx?&x_pp=STb4XDV284xv2gpf&x_pk=VpLvjnsx7b5V&x_pa=B&x_pr=oS&x_artikelnr=22007; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.mut.ch/", } @Book{Morrison:1997:JUE, author = "Michael Morrison and others", title = "{Java} Unleashed: Everything you need to master {Java}", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, edition = "Second", pages = "xliv + 1164", year = "1997", ISBN = "1-57521-197-1", ISBN-13 = "978-1-57521-197-8", LCCN = "QA76.73.J38M674 1997", bibdate = "Mon Jun 22 09:41:26 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.amazon.com/exec/obidos/ISBN=1575211971/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575211971.html; http://www.superlibrary.com/cgi-bin/bag?isbn=1-57521-197-1&last=/bookstore", acknowledgement = ack-nhfb, dimensions = "9.04in x 7.31in x 1.98in", } @Book{Morrison:1997:JUPa, author = "Michael Morrison and others", title = "{Java} 1.1 Unleashed, Professional Reference Edition", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xliv + 1164", month = nov, year = "1997", ISBN = "1-57521-361-3", ISBN-13 = "978-1-57521-361-3", LCCN = "QA76.73.J38M674 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$59.99", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575211971.html", acknowledgement = ack-nhfb, keywords = "Java (computer program language)", url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/", } @Book{Morrison:1997:JUPb, author = "Michael Morrison and others", title = "{Java} 1.1 unleashed: Everything you need to master Java", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, edition = "Third", pages = "xlix + 1469", year = "1997", ISBN = "1-57521-298-6", ISBN-13 = "978-1-57521-298-2", LCCN = "QA76.73.J38M6738 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "118,00 DM; US\$60", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575212986.html; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, xxauthor = "Jeff Bankston", xxtitle = "{Java} 1.1 Unleashed: Professional Edition", xxtitle = "{Java} 1.1 Unleashed Professional Reference", } @Book{Morrison:1997:PJ, author = "Michael Morrison", title = "Presenting {JavaBeans}", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xix + 352", year = "1997", ISBN = "1-57521-287-0", ISBN-13 = "978-1-57521-287-6", LCCN = "QA76.76.J38 M6743 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$35; 70,00 DM", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575212870.html; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, } @Article{Morrison:1997:SJE, author = "Gale B. Morrison", title = "{Sun}'s {JavaEngine} Eyes `Thin Clients'", journal = j-ENEWS, volume = "43", number = "2182", pages = "16--16", day = "25", month = aug, year = "1997", CODEN = "ELNEAU", ISSN = "0013-4937, 1061-6624", bibdate = "Mon Jan 12 07:16:18 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Electronic News", } @Book{Mowbray:1997:ICD, author = "Thomas J. Mowbray and William A. Ruh", title = "Inside {CORBA}: Distributed Object Standards and Applications", publisher = pub-AW, address = pub-AW:adr, pages = "xxiii + 376", year = "1997", ISBN = "0-201-89540-4 (paperback)", ISBN-13 = "978-0-201-89540-7 (paperback)", LCCN = "QA76.64 .R88 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$47", series = "The Addison-Wesley object technology series", URL = "http://cseng.aw.com/bookdetail.qry?ISBN=0-201-89540-4&ptype=0", acknowledgement = ack-nhfb, keywords = "corba (computer architecture); object-oriented programming (computer science)", url-author = "http://cseng.aw.com/authordetail.qry?AuthorID=1089", url-publisher = "http://www.aw.com/", } @InProceedings{Muller:1997:HFE, author = "Gilles Muller and B{\'a}rbara Moura and Fabrice Bellard and Charles Consel", title = "{Harissa}: {A} Flexible and Efficient {Java} Environment Mixing Bytecode and Compiled Code", crossref = "USENIX:1997:TUC", pages = "1--20", year = "1997", bibdate = "Sun Oct 12 16:49:27 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.irisa.fr/compose/harissa/coots_web.ps.gz; http://www.irisa.fr/compose/harissa/harissa.html; http://www.oasis.leo.org/java/development/java-to-c/Harissa.dsc.html", acknowledgement = ack-nhfb, } @Article{Munck:1997:AJW, author = "Robert G. Munck and Richard F. {Hilliard II}", title = "{Ada} and {Java} on the {WWW}", journal = j-SIGADA-LETTERS, volume = "17", number = "3", pages = "3--16", month = may # "\slash " # jun, year = "1997", CODEN = "AALEE5", ISSN = "0736-721X", ISSN-L = "0736-721X", bibdate = "Fri Apr 18 08:37:55 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGADA Ada Letters", } @Article{Munson:1997:SJF, author = "Jonathan P. Munson and Prasun Dewan", title = "{Sync}: {A} {Java} Framework for Mobile Collaborative Applications", journal = j-COMPUTER, volume = "30", number = "6", pages = "59--66", month = jun, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Wed Jun 04 08:59:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computer", } @Book{Murray:1997:IPP, author = "William H. Murray and Chris H. Pappas", title = "{internet.profi.praxis {Visual J++} ({\"U}bersetzung)}", publisher = pub-SYBEX-VERLAG, address = pub-SYBEX-VERLAG:adr, pages = "555", year = "1997", ISBN = "3-8155-2016-9", ISBN-13 = "978-3-8155-2016-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.de/", price = "59 DM", URL = "http://www.sybex.de/bestell/tp/tp02016.htm", acknowledgement = ack-nhfb, language = "German", } @Book{Murray:1997:JPG, author = "William H. Murray and Chris H. Pappas", title = "{JBuilder} Programmer's Guide", publisher = pub-AP-PROFESSIONAL, address = pub-AP-PROFESSIONAL:adr, pages = "????", month = aug, year = "1997", ISBN = "0-12-511920-8 (softcover)", ISBN-13 = "978-0-12-511920-7 (softcover)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.apnet.com/approfessional/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Publication cancelled.", price = "US\$35.95", URL = "http://www.apcatalog.com/cgi-bin/AP?ISBN=0125119208&LOCATION=US&FORM=FORM2", acknowledgement = ack-nhfb, url-publisher = "http://www.apnet.com/approfessional/", xxauthor = "Murray William", xxtitle = "{Open Jbuilder} Programmer's Guide: Harnessing the Power of {Borland}'s {Java} Development Tool", } @Book{Muto:1997:J, author = "Kenshi Muto", title = "{Java}", publisher = "Gijutsu Hyoron Co., Ltd.", address = "??, Japan", pages = "????", year = "1997", ISBN = "4-7741-0277-6", ISBN-13 = "978-4-7741-0277-1", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.gihyo.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "1950 yen", URL = "http://www.gihyo.co.jp/syoseki/promo/java/java.html", acknowledgement = ack-nhfb, language = "Japanese", } @Article{Nabil:1997:PSR, author = "Mohammad Nabil and Anne H. H. Ngu and John Shepherd", title = "Picture Similarity Retrieval Using the {2D} Projection Interval Representation", journal = j-IEEE-TRANS-KNOWL-DATA-ENG, volume = "8", number = "4", pages = "533--539", month = aug, year = "1997", CODEN = "ITKEEH", DOI = "http://dx.doi.org/10.1109/69.536246", ISSN = "1041-4347", ISSN-L = "1041-4347", bibdate = "Fri Mar 14 11:06:28 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Uses Java to construct a prototype image database system.", acknowledgement = ack-nhfb, fjournal = "IEEE Transactions on Knowledge and Data Engineering", } @Article{Nadeau:1997:WAJ, author = "Dave Nadeau and Brad Grantham and Colin McCartney and {Mitra} and Henry Sowizral", title = "What {$3$D API} for {Java} should {I} use and why? (panel)", journal = j-COMP-GRAPHICS, volume = "31", number = "{Annual Conference Series}", pages = "452--453", month = aug, year = "1997", CODEN = "CGRADI, CPGPBZ", ISSN = "0097-8930", ISSN-L = "0097-8930", bibdate = "Mon Oct 4 18:57:05 MDT 1999", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/graph/258734/p452-nadeau/", acknowledgement = ack-nhfb, fjournal = "Computer Graphics", } @Book{Naughton:1997:JCRa, author = "Patrick Naughton and Herbert Schildt", title = "{Java}: The Complete Reference", publisher = pub-OSBORNE, address = pub-OSBORNE:adr, pages = "xxiv + 886", month = nov, year = "1997", ISBN = "0-07-882231-9", ISBN-13 = "978-0-07-882231-5", LCCN = "QA76.73.J38N378 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0078822319/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.osborne.com/", price = "US\$39.95", URL = "http://www.osborne.com/; http://www.starwave.com/people/naughton/jtcr/", acknowledgement = ack-nhfb, dimensions = "9.08in x 7.44in x 1.77in", paperback = "yes", } @Book{Naughton:1997:JGC, author = "Patrick Naughton and Herbert Schildt", title = "{Java} Guida Complete", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, month = mar, year = "1997", ISBN = "88-8386-041-6", ISBN-13 = "978-88-8386-041-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://pallade.iol.it/cgi-bin/mercator2/mallurl/CESSECCOCEDRBILEDOMAa000eC/mcghill/index.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "79000 L.", acknowledgement = ack-nhfb, language = "Italian", } @Book{Naughton:1997:JMR, author = "Patrick Naughton and Herbert Shildt", title = "{Java}: Manual de Referencia", publisher = pub-MCGRAW-HILL-SPAIN, address = pub-MCGRAW-HILL-SPAIN:adr, pages = "????", year = "1997", ISBN = "84-481-1131-1", ISBN-13 = "978-84-481-1131-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.es/", price = "6900 Ptas.", URL = "http://www.mcgraw-hill.es/McGrawHill/catalogo.nsf/b013777771f7e01bc125647a00607b0e/82287940fc60553ec125650c00352778?OpenDocument", acknowledgement = ack-nhfb, language = "Spanish", url-publisher = "http://mexplaza.udg.mx/McGraw/", } @Book{Naughton:1997:MJ, author = "Patrick Naughton", title = "Manual de {Java}", publisher = pub-MCGRAW-HILL-SPAIN, address = pub-MCGRAW-HILL-SPAIN:adr, pages = "????", year = "1997", ISBN = "84-481-0693-8", ISBN-13 = "978-84-481-0693-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/spanish.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.es/", price = "4000 Ptas.", URL = "http://mexplaza.udg.mx/McGraw/; http://www.mcgraw-hill.es/McGrawHill/catalogo.nsf/b013777771f7e01bc125647a00607b0e/19a221cd0649f88cc12564d600405519?OpenDocument", acknowledgement = ack-nhfb, language = "Spanish", } @Article{Navas:1997:LEJ, author = "John Navas", title = "Letter to the Editor: The {Java} Race", journal = j-BYTE, volume = "22", number = "2", pages = "20--20", month = feb, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Jan 25 14:35:43 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Nelson:1997:JZF, author = "Mark R. Nelson and Mark Nelson", title = "{Java} and the Zip File Format: Using {Java} to compress and extract files", journal = j-DDJ, volume = "22", number = "12", pages = "50, 54--54, 102", month = dec, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Nov 28 17:26:40 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "By compressing data and reducing the number of download transactions, Sun's java.util.zip package speeds the loading of applet components across the Internet. Data-compression guru Mark Nelson examines this package.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Neou:1997:HCJa, author = "Vivian Neou", title = "{HTML} 3.0 {CD JavaScript} for {MacIntosh}: {CD-ROM} With Guide", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "????", month = aug, year = "1997", ISBN = "0-13-243353-2", ISBN-13 = "978-0-13-243353-2", LCCN = "????", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0132433532/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$44.95", acknowledgement = ack-nhfb, keywords = "HTML (document markup language); JavaScript (computer program language); technology -- computers and computer technology", xxtitle = "{HTML} 3.0 {CD} with {JavaScript}", } @Book{Neou:1997:HCJb, author = "Vivian Neou and Mimi Recker", title = "{HTML} 3.2 {CD} With {JavaScript} for {Windows} 95", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxi + 439", year = "1997", ISBN = "0-13-270125-1", ISBN-13 = "978-0-13-270125-9", LCCN = "QA76.76.H94N434 1997", bibdate = "Thu Aug 21 17:50:06 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0132701251/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$44.95", acknowledgement = ack-nhfb, annote = "System requirements: IBM PC or compatible, Windows 95, CD-ROM drive.", dimensions = "9.25in x 7.06in x 1.43in", keywords = "HTML (Document markup language); JavaScript (Computer program language); Microsoft Windows (Computer file)", paperback = "yes", } @Article{Nerny:1997:JDR, author = "Chris Nerny", title = "{Java} developers rise up: New lobbying group to put pressure on industry giants", journal = j-NETWORK-WORLD, volume = "14", number = "33", pages = "1, 80", day = "18", month = aug, year = "1997", ISSN = "0887-7661", ISSN-L = "0887-7661", bibdate = "Mon Nov 24 17:53:23 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Network World", } @Article{Neumann:1997:SRC, author = "P. Neumann", title = "Security risks in computer-communication systems", journal = j-SIGSAC-REVIEW, volume = "15", number = "1", pages = "15--18", month = jan, year = "1997", CODEN = "SSARE7", ISSN = "0277-920X", ISSN-L = "0277-920X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "B6210L (Computer communications); C7210 (Information services and centres); C5620W (Other computer networks); C0310D (Computer installation management); C6130S (Data security); C0230 (Economic, social and political aspects of computing)", corpsource = "SRI Int., Menlo Park, CA, USA", fjournal = "SIG security, audit \& control review", keywords = "attack; CIA; computer communication systems security; e-mail; Global Communications; home page; information networks; international hacking incident; Internet; internetworking; Java security; news items; PANIX; pyramid schemes; scam; security of data; security risks; SYN", treatment = "G General Review", } @Book{Newman:1997:JRA, author = "Alexander Newman and others", title = "{Java: Referenz und Anwendungen. (Special Edition)}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, pages = "1091", year = "1997", ISBN = "3-8272-1001-1", ISBN-13 = "978-3-8272-1001-2", LCCN = "????", bibdate = "Tue Mar 03 09:28:21 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "79,95 DM", URL = "http://www.mut.ch/html/buchinfo.htx?&x_pp=dJgxRqA9wlAYNijX&x_az=10&x_pk=VpLvjnsx7b5V&x_pa=B&x_pr=oS&x_bestell=21001&x_stichwort=Newman&x_sprache=A&x_start=1&x_gefunden=2&x_query=&x_lastpage=buchfund&x_soft=&x_suchewo=A; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.mut.ch/", } @Book{Newman:1997:UJ, author = "Alexander Newman", title = "Usando {Java}", publisher = pub-EDITORE-CAMPUS, address = pub-EDITORE-CAMPUS:adr, pages = "904", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 12:44:14 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/portuguese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "R\$ 89,00", URL = "http://www.campus.com.br/about-us.htm; http://www.campus.com.br/cgi-bin/catalog.cgi?livro=20098", acknowledgement = ack-nhfb, language = "Portuguese", } @Book{Nickerson:1997:ONJ, author = "Doug Nickerson", title = "Official Netscape {JavaBeans} Developer's Guide", publisher = pub-VENTANA, address = pub-VENTANA:adr, pages = "????", month = nov, year = "1997", ISBN = "1-56604-825-7", ISBN-13 = "978-1-56604-825-5", LCCN = "QA76.73.J38N53 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.netscapepress.com/", price = "US\$40", acknowledgement = ack-nhfb, url-publisher = "http://www.netscapepress.com/", } @Book{Niemeyer:1997:CJN, author = "Pat Niemeyer", title = "Core {Java} Networking", publisher = pub-PH, address = pub-PH:adr, pages = "????", month = nov, year = "1997", ISBN = "0-13-761537-X", ISBN-13 = "978-0-13-761537-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$50", acknowledgement = ack-nhfb, url-publisher = "http://www.prenhall.com/", } @Book{Niemeyer:1997:EJ, author = "Patrick Niemeyer and Joshua Peck", title = "Exploring {Java}", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xviii + 594", year = "1997", ISBN = "1-56592-271-9", ISBN-13 = "978-1-56592-271-6", LCCN = "QA76.73.J38 N54 1997", bibdate = "Mon Apr 18 14:53:13 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; z3950.loc.gov:7090/Voyager", price = "US\$32.95", series = "The Java series", URL = "http://www.ora.com/catalog/expjava2/; http://www.oreilly.com/catalog/9781565922716", acknowledgement = ack-nhfb, subject = "Java (Computer program language)", } @Book{Niemeyer:1997:EJa, author = "Patrick Niemeyer and Joshua Peck", title = "Exploring {Java}", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xviii + 594", year = "1997", ISBN = "1-56592-271-9", ISBN-13 = "978-1-56592-271-6", LCCN = "QA76.73.J38N54 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", price = "US\$32.95", URL = "http://www.ora.com/catalog/expjava2/", acknowledgement = ack-nhfb, } @Book{Niemeyer:1997:EJb, author = "Pat Niemeyer and Josh Peck", title = "Exploring {Java}", publisher = pub-ORA, address = pub-ORA:adr, pages = "????", year = "1997", ISBN = "4-900900-17-6", ISBN-13 = "978-4-900900-17-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.oreilly.co.jp/", note = "Japanese translation.", price = "4300 yen", URL = "http://www.ora.com/international/catalog/japanese/inet/exjava.html; http://www.ora.com/international/japan/; http://www.oreilly.co.jp/BOOK/exjava.htm", acknowledgement = ack-nhfb, language = "Japanese", xxauthor = "Josh Peck and Pat Niemeyer", } @Article{Nilsson:1997:TJ, author = "Stefan Nilsson", title = "Treaps in {Java}", journal = j-DDJ, volume = "22", number = "7", pages = "40, 42--44, 84, 86", month = jul, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat May 31 09:56:28 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Nishimura:1997:IJ, author = "Toshihiro Nishimura and others", title = "Introduction to {Java}", publisher = "Shoeisha Co., Ltd.", address = "??, Japan", pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "????", acknowledgement = ack-nhfb, language = "Japanese", } @Article{Novosel:1997:JCS, author = "Joe Novosel", title = "{Java} and Client-Server", journal = j-LINUX-J, volume = "33", pages = "??--??", month = jan, year = "1997", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Fri Oct 9 08:35:26 MDT 1998", bibsource = "http://www.linuxjournal.com/issue33/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.linuxjournal.com/0155.html", abstract = "How Java can be used in small Client-server applications.", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Book{Oaks:1997:JT, author = "Scott Oaks and Henry Wong", title = "{Java} Threads", publisher = pub-ORA, address = pub-ORA:adr, pages = "xiii + 252", year = "1997", ISBN = "1-56592-216-6", ISBN-13 = "978-1-56592-216-7", LCCN = "QA76.73.J38O25 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1565922166/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", price = "US\$29.95", URL = "http://www.ora.com/catalog/jthreads/noframes.html", acknowledgement = ack-nhfb, dimensions = "9.18in x 7.04in x 0.76in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Article{OBrien:1997:NLJ, author = "Timothy O'Brien and Douglas Heise", title = "{Netscape} Looks to {Java} and {CORBA} to Drive {Web} Object Use", journal = j-OBJECT-MAG, volume = "6", number = "12", pages = "66--67", month = feb, year = "1997", CODEN = "OBMAFO", ISSN = "1055-3614", bibdate = "Mon Mar 03 11:28:57 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Object Magazine", } @Article{OBrien:1997:SMR, author = "Timothy O'Brien and Douglas Heise", title = "{Sun}\slash {Microsoft} Rivalry: Will {Java} Fragment like {UNIX}?", journal = j-OBJECT-MAG, volume = "6", number = "12", pages = "14--16", month = feb, year = "1997", CODEN = "OBMAFO", ISSN = "1055-3614", bibdate = "Mon Mar 03 11:28:57 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Object Magazine", } @Article{OConnor:1997:PJV, author = "J. Michael O'Connor and Marc Tremblay", title = "{picoJava-I}: the {Java Virtual Machine} in hardware", journal = j-IEEE-MICRO, volume = "17", number = "2", pages = "45--53", month = mar # "-" # apr, year = "1997", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/40.592314", ISSN = "0272-1732 (print), 1937-4143 (electronic)", ISSN-L = "0272-1732", bibdate = "Sat May 10 11:49:40 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classification = "C5220 (Computer architecture); C6150C (Compilers, interpreters and other processors); C7430 (Computer engineering)", corpsource = "Sun Microsyst., Mountain View, CA, USA", fjournal = "IEEE Micro", keywords = "byte codes; computer architecture; dynamic distribution; Java virtual machine; microarchitecture; microarchitecture trade-offs; performance; picoJava-I; program compilers; virtual machines", treatment = "P Practical", } @Book{OConnor:1997:WSI, author = "Hugh O'Connor", title = "{Web} sites for information on intranets, {HMTL}\slash {SGML}\slash {JAVA}\slash {VRML} coding and web page\slash sites design", publisher = "American Association of Retired Persons", address = "Washington, DC, USA", edition = "Version 2", pages = "10", day = "20", month = feb, year = "1997", LCCN = "????", bibdate = "Fri Sep 11 08:29:11 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "Bibliography; Computer graphics -- Bibliography; HTML (Document markup language) -- Bibliography; Internet (Computer network) -- Directories; Java (Computer program language); World Wide Web (Information retrieval system) -- Design --; World Wide Web (Information retrieval system) -- Directories", } @InProceedings{Odersky:1997:PJT, author = "Martin Odersky and Philip Wadler", title = "{Pizza} into {Java}: translating theory into practice", crossref = "ACM:1997:CRP", pages = "146--159", year = "1997", bibdate = "Mon May 3 12:56:11 MDT 1999", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/plan/263699/p146-odersky/", acknowledgement = ack-nhfb, keywords = "design; languages; performance; theory; verification", subject = "{\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Java. {\bf D.3.4} Software, PROGRAMMING LANGUAGES, Processors. {\bf F.4.1} Theory of Computation, MATHEMATICAL LOGIC AND FORMAL LANGUAGES, Mathematical Logic.", } @Article{Olsen:1997:LWJ, author = "Kurt Olsen", title = "Letters: Why {Java} Isn't Watered Down {C++}", journal = j-COMPUTER, volume = "30", number = "5", pages = "9--9", month = mar, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Fri Jul 11 09:44:48 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Response to \cite{Lewis:1997:BCI}. See also \cite{Welch:1997:LEI}.", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{ONeel:1997:BRJ, author = "Bruce O'Neel", title = "Book Review: {\em Java Network Programming}", journal = j-LOGIN, volume = "22", number = "4", pages = "33--36", month = aug, year = "1997", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Aug 12 14:32:13 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Reviews of \cite{Harold:1997:JNP,Hughes:1997:JNPa}.", URL = "http://www.usenix.org/publications/java/javaindex.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{ONeel:1997:BRJa, author = "Bruce O'Neel", title = "Book Review: {{\em \em Java Network Programming}}", journal = j-LOGIN, volume = "22", number = "4", pages = "33--36", month = aug, year = "1997", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Fri Apr 30 10:52:42 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Reviews of \cite{Harold:1997:JNP,Hughes:1997:JNP}.", URL = "http://www.usenix.org/publications/java/javaindex.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{ONeel:1997:BRJb, author = "Bruce O'Neel", title = "Book Review: {{\em Java AWT Reference}}", journal = j-LOGIN, volume = "22", number = "5", pages = "??--??", month = oct, year = "1997", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:35:55 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/contents/contents.oct97.html", URL = "http://www.usenix.org/publications/login/1997-10/zukowski.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{Orfali:1997:CJO, author = "Robert Orfali and Dan Harkey and Jeri Edwards", title = "{CORBA}, {Java}, and the {Object Web}: The {Web} is in trouble, {CORBA} and {Java} are out to save it", journal = j-BYTE, volume = "22", number = "10", pages = "95--98, 100", month = oct, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon Oct 13 10:09:41 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Orfali:1997:CSP, author = "Robert Orfali and Dan Harkey", title = "Client\slash Server Programming with {Java} and {CORBA}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "657", month = jan, year = "1997", ISBN = "0-471-16351-1", ISBN-13 = "978-0-471-16351-0", LCCN = "QA76.9.C55 O73 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$44.95", URL = "http://www.wiley.com/compbooks/catalog/16351-1.htm", acknowledgement = ack-nhfb, } @Book{Orfali:1997:IC, author = "Robert Orfali and Dan Harkey and Jeri Edwards", title = "Instant {CORBA}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xviii + 313", month = mar, year = "1997", ISBN = "0-471-18333-4", ISBN-13 = "978-0-471-18333-4", LCCN = "QA76.9.C55O764 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$20", URL = "http://www.wiley.com/compbooks/catalog/18333-4.htm", acknowledgement = ack-nhfb, url-publisher = "http://www.wiley.com/", } @Article{Oualline:1997:LGH, author = "Steve Oualline", title = "{Linux} and the gorilla are here to stay; not so {Java}", journal = j-HP-CHRONICLE, volume = "14", number = "2", pages = "15--15", month = jan, year = "1997", ISSN = "0892-2829", bibdate = "Thu Jan 09 14:54:44 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "HP Chronicle", } @Book{Overland:1997:JPE, author = "Brian R. Overland", title = "{Java} in Plain {English}", publisher = pub-MIS # " and " # pub-MT, address = pub-MIS:adr # " and " # pub-MT:adr, edition = "Second", pages = "xxviii + 628", month = sep, year = "1997", ISBN = "1-55828-563-6 (softcover)", ISBN-13 = "978-1-55828-563-7 (softcover)", LCCN = "QA76.73.J38O83 1997", bibdate = "Mon Jun 22 10:27:37 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mispress.com/", price = "US\$17.95", URL = "http://www.idgbooks.com/cgi-bin/db/fill_out_template.pl?idgbook:1-55828-563-6:book-idg::uidg781; http://www.mandt.com/javaplaineng2e.htm", acknowledgement = ack-nhfb, } @Article{Papurt:1997:SUM, author = "D. M. Papurt and J. P. LeJacq", title = "The sensible use of method overriding", journal = j-J-OOP, volume = "10", number = "1", pages = "62--5, 71", month = mar # "-" # apr, year = "1997", CODEN = "JOOPEC", ISSN = "0896-8438", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6140D (High level languages); C6120 (File organisation); C4240 (Programming and algorithm theory)", fjournal = "Journal of Object Oriented Programming", keywords = "abstract methods; behavior; constraining; convention; inheritance; inherited functionality; Java programming; mandatory implementation; method body selection framework; method name; method overriding; object run time type; object-oriented; object-oriented languages; optional implementation; overall program; overriding method implementations; paradigmatic forms; polymorphic selection; polymorphism; program; programming; programming theory; substitution principle programming; superclass method", treatment = "P Practical", } @Book{Park:1997:CJ, author = "Kibae Park and Hodong Kim", title = "Catch {Java}", publisher = "HanCom Press", address = "??, Korea", pages = "????", year = "1997", ISBN = "89-85770-50-0 (??Invalid checksum??)", ISBN-13 = "978-89-85770-50-7 (??Invalid checksum??)", LCCN = "????", bibdate = "Thu Aug 14 13:00:33 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/korean.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "10,000 won", URL = "http://magazine.hnc.net/ (??)", acknowledgement = ack-nhfb, language = "Korean", } @Book{Parr:1997:LTU, author = "Terence John Parr", title = "Language translation using {PCCTS} and {C++}: a reference guide", publisher = "Automata Publishing Company", address = "San Jose, CA, USA", pages = "v + 310", month = jan, year = "1997", ISBN = "0-9627488-5-4", ISBN-13 = "978-0-9627488-5-1", LCCN = "????", bibdate = "Sat Sep 13 14:59:59 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "PCCTS is a precursor to the ANTLR system \cite{Parr:1998:AXR}.", price = "US\$34.95", URL = "http://www.parr-research.com/~parrt/buybook.html", acknowledgement = ack-nhfb, } @Article{Pastor:1997:LOC, author = "O. Pastor and E. Insfran and V. Pelechano and S. Ramirez", title = "Linking Object-Oriented Conceptual Modelling with Object-Oriented Implementation in {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1308", pages = "132--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Pastor:1997:LOO, author = "O. Pastor and E. Insfran and V. Pelechano and S. Ramirez", title = "Linking Object-Oriented Conceptual Modelling with Object-Oriented Implementation in {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1308", pages = "132--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Patchett:1997:CPC, author = "Craig Patchett and Matthew Wright and Peter Holfelder", title = "{CGI\slash Perl} cookbook", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "656", month = oct, year = "1997", ISBN = "0-471-16896-3", ISBN-13 = "978-0-471-16896-6", LCCN = "QA76.73.P22P37 1997", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0471168963/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$44.95", acknowledgement = ack-nhfb, keywords = "CGI (computer; JavaScript (computer program language); network protocol); perl (computer program language); technology -- computers and computer technology", paperback = "yes", } @Book{Patel:1997:JDPa, author = "Pratik Patel and Karl Moss", title = "{Java} Database Programming With {JDBC}: Discover the Essentials for Developing Databases for {Internet} and Intranet Applications", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, edition = "Second", pages = "xviii + 491", year = "1997", ISBN = "1-57610-159-2 (softcover)", ISBN-13 = "978-1-57610-159-9 (softcover)", LCCN = "QA76.73.J38P38 1997", bibdate = "Mon Jun 22 09:46:08 1998", bibsource = "http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35.99", URL = "http://www.coriolis.com/Site/mise/books/ind/javjdbc2.htm", acknowledgement = ack-nhfb, } @Book{Patel:1997:JDPb, author = "Pratik Patel and Karl Moss", title = "{Java} Database Programming with {JDBC}", publisher = pub-OHMSHA, address = pub-OHMSHA:adr, month = oct, year = "1997", ISBN = "4-900718-55-6", ISBN-13 = "978-4-900718-55-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ohmsha.co.jp/", price = "2400 yen", URL = "http://www.ohmsha.co.jp/data/books/contents/4-900718-55-6.htm", acknowledgement = ack-nhfb, language = "Japanese", } @Article{Pedroso:1997:WBM, author = "Hern{\^a}ni Pedroso and Luis M. Silva and Jo{\~a}o Gabriel Silva", title = "{Web}-based metacomputing with {JET}", journal = j-CPE, volume = "9", number = "11", pages = "1169--1173", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13834; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13834&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Pepper:1997:CPB, author = "Jon Pepper", title = "{Corel PDA} to Bundle {Java} Suite", journal = j-BYTE, volume = "22", number = "1", pages = "38--38", month = jan, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Dec 28 07:00:20 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Perry:1997:CCW, author = "Paul J. Perry", title = "Creating Cool {Web} Applets with {Java}", publisher = pub-SOFTBANK, address = pub-SOFTBANK:adr, pages = "????", year = "1997", ISBN = "4-7973-0146-5", ISBN-13 = "978-4-7973-0146-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.softbank.co.jp/softbank/publishing/", price = "2500 yen", URL = "http://www.softbank.co.jp/softbank/publishing/; http://www.softbank.co.jp/softbank/publishing/books/editer/os1/JavaSS/index.html; http://www.softbank.co.jp/softbank/publishing/books/editer/os1/javass/index.html", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Perry:1997:DVJ, author = "Paul J. Perry", title = "Discover {Visual J++}", publisher = pub-IDG, address = pub-IDG:adr, pages = "xxiii + 390", year = "1997", ISBN = "0-7645-3077-1", ISBN-13 = "978-0-7645-3077-7", LCCN = "QA76.73.J38P474 1997<", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$25", URL = "http://www.idgbooks.com/database/book_result.msql?isbn=0-7645-3077-1", acknowledgement = ack-nhfb, url-author = "http://www.mcp.com/authors/pperry/", url-publisher = "http://www.idgbooks.com/", } @Book{Perry:1997:UVJ, author = "Greg Perry", title = "Usando {Visual J++}", publisher = pub-EDITORE-CAMPUS, address = pub-EDITORE-CAMPUS:adr, pages = "428", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 12:44:14 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/portuguese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "R\$ 53,91", URL = "http://www.campus.com.br/about-us.htm; http://www.campus.com.br/catalogo/livro.cfm?cod_livro=20148", acknowledgement = ack-nhfb, language = "Portuguese", } @Book{Perry:1997:VJS, author = "Greg Perry", title = "{Visual J++} Starter Kit", publisher = pub-QUE, address = pub-QUE:adr, pages = "xix + 395", year = "1997", ISBN = "0-7897-1282-2", ISBN-13 = "978-0-7897-1282-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/07897/bud/0789712822.html", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/que/", } @Book{Peter:1997:ONJ, author = "Kent Peter and Kent Multer", title = "Official {Netscape JavaScript} 1.2 Programmers Reference: {Windows}, {Macintosh}, and {Unix}", publisher = pub-VENTANA, address = pub-VENTANA:adr, edition = "Eleventh", pages = "xxxii + 490", month = oct, year = "1997", ISBN = "1-56604-757-9 (softcover)", ISBN-13 = "978-1-56604-757-9 (softcover)", LCCN = "QA76.73.J39 K458 1997", bibdate = "Sat Sep 13 14:36:20 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$35.99", } @Book{Peterson:1997:DSI, author = "David Peterson", title = "Developing Smarter Intelligent Agents Using {Java}", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "400", month = mar, year = "1997", ISBN = "0-07-913643-5", ISBN-13 = "978-0-07-913643-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$44.95", acknowledgement = ack-nhfb, xxtitle = "Developing Intelligent Agents Using {Java}", } @Book{Petrich:1997:NIN, author = "Dean Petrich and David Flanagan", title = "{Netscape IFC} in a nutshell: a desktop quick reference for {Java} programmers", publisher = pub-ORA, address = pub-ORA:adr, pages = "xiii + 354", year = "1997", ISBN = "1-56592-343-X", ISBN-13 = "978-1-56592-343-0", LCCN = "QA76.73.J38 P38 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", note = "Covers IFC 1.1.", price = "US\$19.95", URL = "http://www.ora.com/catalog/ifcnut/", acknowledgement = ack-nhfb, keywords = "internet foundation class library; internet programming; javascript (computer program language)", url-author = "http://www.ora.com/catalog/ifcnut/author.html", url-publisher = "http://www.ora.com/", } @Book{Pew:1997:IJ, author = "John A. Pew", title = "Instant {Java}", publisher = pub-ASCII, address = pub-ASCII:adr, pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Japanese translation of \cite{Pew:1997:IJ}", URL = "http://www.ascii.co.jp/; http://www.vivids.com/java/author.html", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Pew:1997:IJA, author = "John A. Pew", title = "{Instant Java --- Mit Applets ins WWW}", publisher = pub-HEINZ-HEISE, address = pub-HEINZ-HEISE:adr, pages = "246 (or 245??)", year = "1997", ISBN = "3-88229-084-6", ISBN-13 = "978-3-88229-084-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.heise.de/buch/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "German translation of \cite{Pew:1997:IJ}. Includes CD-ROM.", price = "79,90 DM (or 79,80 DM??)", URL = "http://www.emedia.de/bin/bookshop?show=4552&id=; http://www.heise.de/buch/", acknowledgement = ack-nhfb, language = "German", } @Book{Pew:1997:IJS, author = "John A. Pew and {Sunsoft Books Staff}", title = "Instant {Java}: Signature Edition", publisher = pub-PH # " and " # pub-SUNSOFT, address = pub-PH:adr # " and " # pub-SUNSOFT:adr, edition = "Second", pages = "xxviii + 423", month = jan, year = "1997", ISBN = "0-13-272287-9", ISBN-13 = "978-0-13-272287-2", LCCN = "QA76.73.J38P48 1997", bibdate = "Tue Nov 03 11:35:39 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0132722879/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.phptr.com/ptrbooks/ptr_0132722879.html; http://www.prenhall.com/", note = "Available in German translation \cite{Pew:1997:IJA}. Includes CD-ROM.", price = "US\$30", series = "SunSoft Press Java series", URL = "http://www.prenhall.com/ptrbooks/ptr_0132722879.html; http://www.sun.com/books/books/Pew2/Pew2.html", acknowledgement = ack-nhfb, dimensions = "9.17in x 6.99in x 1.37in", keywords = "Java (computer program language); technology -- computers and computer technology; technology -- data processing", paperback = "yes", } @Book{Pew:1997:SJ, author = "John A. Pew", title = "Subito {Java}", publisher = pub-MONDADORI-INFORMATICA, address = pub-MONDADORI-INFORMATICA:adr, pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 14:35:59 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Italian translation of \cite{Pew:1997:IJ}.", price = "70000 L.", URL = "http://www.mondadori.com/; http://www.vivids.com/java/author.html", acknowledgement = ack-nhfb, language = "Italian", } @Article{Philippsen:1997:JTR, author = "Michael Philippsen and Matthias Zenger", title = "{JavaParty} --- transparent remote objects in {Java}", journal = j-CPE, volume = "9", number = "11", pages = "1225--1242", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13816; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13816&PLACEBO=IE.pdf; http://wwwipd.ira.uka.de/~phlipp/partyd.ps.gz", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Picarille:1997:JAS, author = "Lisa Picarille", title = "{Java} apps serve up flexibility", journal = j-COMPUTERWORLD, volume = "31", number = "6", pages = "43--44", day = "10", month = feb, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Feb 24 10:51:33 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Piemont:1997:BPJ, author = "Claudia Piemont", title = "{Businessorientierte Programmierung mit Java: Der Weg zur effizienten Entwicklung von Gesch{\"a}ftsanwendungen im Intranet und Internet}", publisher = pub-VIEWEG, address = pub-VIEWEG:adr, pages = "440", year = "1997", ISBN = "3-528-05556-1", ISBN-13 = "978-3-528-05556-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "88 DM", URL = "http://members.aol.com/ClaudiaPi/jbook1.htm", acknowledgement = ack-nhfb, language = "German", url-author = "http://members.aol.com/ClaudiaPi/home.htm", } @Article{Piroumian:1997:ISJ, author = "Vartan Piroumian", title = "Internationalization Support in {Java}: Making software globalization easy", journal = j-IEEE-MICRO, volume = "17", number = "3", pages = "20--29", month = may # "\slash " # jun, year = "1997", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/40.591651", ISSN = "0272-1732 (print), 1937-4143 (electronic)", ISSN-L = "0272-1732", bibdate = "Tue Aug 12 12:35:06 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://pascal.computer.org/mi/books/mi1997/pdf/m3020.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Micro", } @Article{Pitts:1997:SDL, author = "Robert I. Pitts", title = "Software Development: Learning to Program the Object-Oriented Way", journal = j-SUNEXPERT, volume = "8", number = "1", pages = "56--62, 64, 66, 68, 70, 71", month = jan, year = "1997", ISSN = "1053-9239", bibdate = "Thu Jan 16 18:55:28 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses C++, Objective C, and Java.", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Periodical{PJDJ:1997:PJD, key = "Pure Java Developer's Journal", title = "Pure {Java} Developer's Journal", publisher = "Cobb Group", address = "Louisville, KY, USA", year = "1997", ISSN = "1093-7471", bibdate = "Sat Jun 06 09:31:06 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Publication began with volume 1, number 1, in July 1997.", acknowledgement = ack-nhfb, annote = "This journal is not yet covered by major journal databases.", } @Article{Plauger:1997:EFJ, author = "P. J. Plauger", title = "{Editor}'s Forum: {A} {Java} to {C} translator", journal = j-CCCUJ, volume = "15", number = "6", pages = "6--6", month = jun, year = "1997", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Fri May 16 08:01:41 1997", bibsource = "http://www.cuj.com/1506toc.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.dinkumware.com/; http://www.tiac.net/users/pjp", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @InProceedings{Plezbert:1997:DQT, author = "Michael P. Plezbert and Ron K. Cytron", title = "Does `just in time' = `better late than never'?", crossref = "ACM:1997:CRP", pages = "120--131", year = "1997", bibdate = "Mon May 3 12:56:11 MDT 1999", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/plan/263699/p120-plezbert/", acknowledgement = ack-nhfb, keywords = "design; experimentation; languages; measurement; performance; theory", subject = "{\bf C.2.1} Computer Systems Organization, COMPUTER-COMMUNICATION NETWORKS, Network Architecture and Design, Internet. {\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Java. {\bf D.3.4} Software, PROGRAMMING LANGUAGES, Processors, Compilers. {\bf F.4.1} Theory of Computation, MATHEMATICAL LOGIC AND FORMAL LANGUAGES, Mathematical Logic.", } @Book{Pope:1997:CRG, author = "Alan Pope", title = "The {CORBA} Reference Guide: Understanding the {Common Object Request Broker Architecture}", publisher = pub-AW, address = pub-AW:adr, pages = "????", month = dec, year = "1997", ISBN = "0-201-63386-8", ISBN-13 = "978-0-201-63386-3", LCCN = "QA76.64 .P66 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$34", acknowledgement = ack-nhfb, url-publisher = "http://www.aw.com/", } @Article{Pountain:1997:WCC, author = "Dick Pountain and John Montgomery", title = "{Web} Components: Components and the {Web} are a match made in developer heaven", journal = j-BYTE, volume = "22", number = "8", pages = "56--60, 62, 64, 66, 68", month = aug, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon Jul 21 10:22:57 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses Sun's Java Beans, Microsoft's ActiveX, IBM's San Francisco Project, and OMG's CORBA.", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @InProceedings{Proebsting:1997:KDJ, author = "Todd A. Proebsting and Scott A. Watterson", title = "{Krakatoa}: Decompilation in {Java} (Does Bytecode Reveal Source?)", crossref = "USENIX:1997:TUC", pages = "185--197", year = "1997", bibdate = "Sun Oct 12 16:56:25 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "The authors demonstrate that, because of the strongly-type nature of the Java Virtual Machine, it is possible to reverse-engineer Java byte codes back to quite readable correct Java source code, making it difficult to conceal Java source code by distributing only compiled byte codes. This has significant ramifications for commercial software development in Java.", acknowledgement = ack-nhfb, } @InProceedings{Proebsting:1997:TJA, author = "Todd A. Proebsting and Gregg Townsend and Patrick Bridges and John H. Hartman and Tim Newsham and Scott A. Watterson", title = "{Toba}: {Java} for Applications --- {A} {Way Ahead of Time} ({WAT}) Compiler", crossref = "USENIX:1997:TUC", pages = "41--53", year = "1997", bibdate = "Sun Oct 12 16:51:29 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "ftp://ftp.cs.arizona.edu/reports/1997/TR97-01.pdf; ftp://ftp.cs.arizona.edu/reports/1997/TR97-01.ps", acknowledgement = ack-nhfb, } @Book{Purcell:1997:AJ, author = "Lee Purcell and Mary Jane Mara", title = "The {ABCs} of {JavaScript}", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xxi + 456", day = "1", month = jan, year = "1997", ISBN = "0-7821-1937-9", ISBN-13 = "978-0-7821-1937-4", LCCN = "QA76.73.J38P87 1997", bibdate = "Thu Sep 04 06:17:38 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0782119379/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.99", acknowledgement = ack-nhfb, dimensions = "8.99in x 7.50in x 1.18in", keywords = "JavaScript (Computer program language)", paperback = "yes", } @Book{Que:1997:SEUa, author = "{Que Development Group}", title = "Special Edition Using {Java NC} Server", publisher = pub-QUE, address = pub-QUE:adr, pages = "????", year = "1997", ISBN = "0-7897-1279-2", ISBN-13 = "978-0-7897-1279-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "101,00 DM; US\$50", URL = "http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, } @Article{Radermacher:1997:ECC, author = "Todd Radermacher and Peter Kocks", title = "Executable Content: Controlling the Potential Revolution", journal = j-SYS-ADMIN, volume = "6", number = "11", pages = "61--63, 65--66", month = nov, year = "1997", CODEN = "SYADE7", ISSN = "1061-2688", bibdate = "Mon Oct 27 14:25:29 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "The authors discuss the benefits and hidden dangers of executable content and provide techniques for reducing the security risks.", acknowledgement = ack-nhfb, fjournal = "Sys admin: the journal for UNIX system administrators", } @Article{Raghunathan:1997:LEJ, author = "Balaji Raghunathan", title = "Letter to the Editor: {Java} for {C++}", journal = j-BYTE, volume = "22", number = "5", pages = "19--20", month = may, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Apr 19 09:16:08 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @InProceedings{Rahkila:1997:IDT, author = "Martti Rahkila and Matti Karjalainen", booktitle = "ICASSP, IEEE International Conference on Acoustics, Speech and Signal Processing --- Proceedings", title = "Interactive {DSP} tutorial on the {Web}", volume = "3", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "2253--2256", year = "1997", CODEN = "IPRODJ", ISBN = "????", ISBN-13 = "????", ISSN = "0736-7791", LCCN = "????", bibdate = "Tue Sep 28 07:51:05 MDT 1999", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Helsinki Univ of Technology", affiliationaddress = "Espoo, Finl", classification = "722.2; 722.4; 723; 723.2; 723.5; 901.2", journalabr = "ICASSP IEEE Int Conf Acoust Speech Signal Process Proc", keywords = "Common gateway interface (CGI); Common Lisp; Computer aided instruction; Digital signal processing; Gateways (computer networks); Interactive computer systems; Java programming language; Lisp (programming language); Online systems; Software package QuickSig; User interfaces; World Wide Web (WWW)", } @Article{Raje:1997:ARM, author = "Rajeev R. Raje and Joseph I. Williams and Michael Boyles", title = "{Asynchronous Remote Method Invocation (ARMI)} mechanism for {Java}", journal = j-CPE, volume = "9", number = "11", pages = "1207--1211", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13835; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13835&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Ram:1997:IWE, author = "Prabhu Ram and Robert Abarbanel", title = "{Internet} Watch: Enterprise Computing: The {Java} Factor", journal = j-COMPUTER, volume = "30", number = "6", pages = "115--119", month = jun, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Wed Jun 04 08:59:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Ramel:1997:LSJ, author = "David Ramel", title = "Learn to speak {Java} for fun and profit", journal = j-COMPUTERWORLD, volume = "31", number = "9", pages = "46--46", day = "3", month = mar, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Mar 07 12:10:56 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @InProceedings{Raner:1997:NDI, author = "M. Raner", title = "New Developments for the Implementation of {Unicode} Word Processing Systems in {Java}", crossref = "UC:1997:SDI", pages = "A13--??", year = "1997", bibdate = "Fri Apr 24 09:14:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "internet; software development; Unicode", } @InProceedings{Raner:1997:UJD, author = "Mirko Raner", title = "{Unicode} and {Java} --- Design and Implementation of a {Unicode} Word Processing System in {Java}", crossref = "UC:1997:ESI", pages = "??--??", year = "1997", bibdate = "Thu Aug 20 21:00:11 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc10/program.html", acknowledgement = ack-nhfb, } @Book{Rao:1997:UNI, author = "Arun Rao", title = "Using {Netscape IFC}", publisher = pub-QUE, address = pub-QUE:adr, pages = "xii + 294", year = "1997", ISBN = "0-7897-1251-2", ISBN-13 = "978-0-7897-1251-6", LCCN = "TK5105.883.N48R36 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35", URL = "http://dev.mcp.com:8001/about/coinfo/imprints/que/books/descriptions/12512d.html", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/que/", } @Book{Ready:1997:PCJ, author = "Kevin Ready and Paul Vachier and Benoit Marsot", title = "Programmare con {JavaScript}", publisher = pub-APOGEO, address = pub-APOGEO:adr, pages = "352", year = "1997", ISBN = "88-7303-305-9", ISBN-13 = "978-88-7303-305-9", LCCN = "????", bibdate = "Mon Aug 18 17:29:56 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Italian translation of \cite{Ready:1996:PPJ}. Includes CD-ROM.", price = "42000 Lire", URL = "http://www.urra.it/305.html; http://www.urra.it/apocat.html", acknowledgement = ack-nhfb, language = "Italian", } @Article{Redfern:1997:ANA, author = "Heather Redfern", title = "{AUn}, {Netscape} announce developer release of {JFC}", journal = j-SUNSERVER, volume = "11", number = "9", pages = "4--4", month = sep, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Redfern:1997:GJP, author = "Heather Redfern", title = "{GO-Joe} provides {Java} users access to {UNIX X} apps", journal = j-SUNSERVER, volume = "11", number = "9", pages = "6--6", month = sep, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 19:36:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Redfern:1997:RJT, author = "Heather Redfern", title = "Recreating {JavaBeans} through visual assembly: {Sun} unveils {Java Studio 1.0}", journal = j-SUNSERVER, volume = "11", number = "12", pages = "1, 16", month = dec, year = "1997", ISSN = "1091-4986", bibdate = "Mon Jan 12 07:35:55 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.pcinews.com/pci/sun", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Book{Reese:1997:DPJ, author = "George Reese", title = "Database Programming With {JDBC} and {Java}", publisher = pub-ORA, address = pub-ORA:adr, pages = "300 (or 224??)", day = "1", month = jul, year = "1997", ISBN = "1-56592-270-0", ISBN-13 = "978-1-56592-270-9", LCCN = "QA76.625 .R44 1997 Sci-Eng", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1565922700/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", note = "Java 1.1.", price = "US\$29.95", series = "Java series", URL = "http://www.ora.com/catalog/javadata/", acknowledgement = ack-nhfb, dimensions = "9.18in x 7in x 0.65in", keywords = "Database management; Internet programming; Java (Computer program language); SQL (Computer program language)", paperback = "yes", url-author = "http://www.ora.com/catalog/javadata/author.html", url-publisher = "http://www.ora.com/", } @Book{Reichert:1997:SEUa, author = "Jake Reichert", title = "Special Edition Using {Java} Network Applications", publisher = pub-QUE, address = pub-QUE:adr, pages = "????", month = oct, year = "1997", ISBN = "0-7897-1465-5", ISBN-13 = "978-0-7897-1465-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "89,00 DM, US\$45.00", URL = "http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, xxtitle-1 = "Using {Java} Network Apps", xxtitle-2 = "Special Edition Using {Java} Network Application", } @Book{Reichert:1997:SEUb, author = "Jake Reichert", title = "Special Edition Using {Java} Networks", publisher = pub-ZD, address = pub-ZD:adr, edition = "Special", pages = "????", month = oct, year = "1997", ISBN = "1-56276-569-8 (softcover)", ISBN-13 = "978-1-56276-569-9 (softcover)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/zdpress/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$40.49", acknowledgement = ack-nhfb, xxtitle = "Using {Java} Network", } @Article{Remy:1997:DPJ, author = "Martin Remy", title = "Design Patterns, {Java} and {Web} Development", journal = j-DDJ, volume = "22", number = "6", pages = "28, 30, 32, 34, 98--100", month = jun, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Apr 30 07:02:17 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Worker applets are nonvisual components that labor unseen behind the flashy facades of web pages. Using {Java}, {JavaScript}, and {HTML}, {Martin} presents three-design patterns for incorporating worker applets into {Web} projects.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Reynolds:1997:OOP, author = "Mark C. Reynolds", title = "Object Oriented Programming In {Java}", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "336", month = mar, year = "1997", ISBN = "0-07-913250-2", ISBN-13 = "978-0-07-913250-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$39.95", acknowledgement = ack-nhfb, } @Book{Reynolds:1997:UJ, author = "Mark Reynolds and Jerry Honeycutt", title = "Using {JScript}", publisher = pub-QUE, address = pub-QUE:adr, edition = "Special", pages = "xiv + 586", year = "1997", ISBN = "0-7897-1079-X", ISBN-13 = "978-0-7897-1079-6", LCCN = "QA76.73.J39 R49 1997", bibdate = "Mon Sep 15 23:01:45 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, xxnote = "Is this the same as \cite{Reynolds:1996:UJ}??", } @Book{Rice:1997:AJP, author = "Jeffrey C. Rice and Irving {Salisbury, III}", title = "Advanced {Java} 1.1 Programming", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xv + 476", month = aug, year = "1997", ISBN = "0-07-913089-5 (set), 0-07-052426-2 (book), 0-07-852998-0 (CD-ROM)", ISBN-13 = "978-0-07-913089-1 (set), 978-0-07-052426-2 (book), 978-0-07-852998-6 (CD-ROM)", LCCN = "QA76.73.J38R53 1997", bibdate = "Mon Jun 22 10:48:10 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0079130895/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$39.95", URL = "http://mcgraw-hill.inforonics.com/cgi/getarec?mgh30379%comp; http://www.mcgraw-hill.com/", acknowledgement = ack-nhfb, keywords = "Java (computer program language); technology -- computers and computer technology", } @Book{Richardson:1997:HJ, author = "Eric C. Richardson and Michael Morrison", title = "Hands On {Java}", publisher = pub-PRIMA, address = pub-PRIMA:adr, pages = "500", year = "1997", ISBN = "0-7615-1013-3", ISBN-13 = "978-0-7615-1013-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0761510133/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.primapublishing.com/", price = "US\$40.00", acknowledgement = ack-nhfb, xxtitle = "{Java Intranet} Programming Lab", } @Book{Richardson:1997:JAC, author = "Ronny Richardson and Bruce Murray and Marc Singer", title = "{Java} Applets and Channels Without Programming", publisher = pub-MANNING, address = pub-MANNING:adr, pages = "????", month = aug, year = "1997", ISBN = "1-884777-39-2 (softcover)", ISBN-13 = "978-1-884777-39-4 (softcover)", LCCN = "QA76.73.J38J363 1997", bibdate = "Sat Sep 13 14:36:20 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$34.15", URL = "http://www.manning.com/Shoffner/index.html", } @Article{Riehle:1997:ADW, author = "R. Riehle", title = "{Ada} does {Windows}", journal = j-J-OOP, volume = "10", number = "1", pages = "74--7", month = mar # "-" # apr, year = "1997", CODEN = "JOOPEC", ISSN = "0896-8438", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6180G (Graphical user interfaces); C6150C (Compilers, interpreters and other processors); C6115 (Programming support); C6110J (Object-oriented programming)", fjournal = "Journal of Object Oriented Programming", keywords = "Ada; applications; commercial software applications; compilers; Department of Defense; graphical user interfaces; Microsoft Windows; object-oriented languages; product line; program compilers; reliability; security; software developers; software tools; Win32; Windows 95 development environments; Windows NT; Windows-based", treatment = "G General Review", } @Unpublished{Rieken:1997:IJB, author = "Bill Rieken", title = "An Introduction to {Java Beans}", year = "1997", bibdate = "Wed Aug 13 09:18:33 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Tutorial session at \cite{USENIX:1997:TUC}.", URL = "http://dxsting.cern.ch/sting/COOTS97.html", acknowledgement = ack-nhfb, } @Book{Rinehart:1997:JDD, author = "Martin L. Rinehart", title = "{Java} Database Development", publisher = pub-OSBORNE, address = pub-OSBORNE:adr, pages = "xxiii + 917", year = "1997", ISBN = "0-07-882356-0 (softcover)", ISBN-13 = "978-0-07-882356-5 (softcover)", LCCN = "QA76.73.J38R558 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.osborne.com/", note = "Includes CD-ROM.", price = "US\$39.99", URL = "http://www.osborne.com/program/javadbdev.htm", acknowledgement = ack-nhfb, } @Book{Rinehart:1997:JPV, author = "Martin L. Rinehart", title = "{Java} Programming With {Visual J++}", publisher = pub-MIS # " and " # pub-MT, address = pub-MIS:adr # " and " # pub-MT:adr, pages = "xiii + 462", year = "1997", ISBN = "1-55851-506-2", ISBN-13 = "978-1-55851-506-2", LCCN = "QA76.73.J38R56 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1558515062/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mispress.com/", price = "US\$39.95", URL = "http://www.mandt.com/javaprogvisualj++.htm", acknowledgement = ack-nhfb, dimensions = "9.21in x 7.07in x 1.21in", keywords = "Java (Computer program language); Microsoft Visual J++", paperback = "yes", } @Book{Ritchey:1997:PCJa, author = "Tim Ritchey", title = "Programando con {Java}", publisher = pub-PH-HISPANOAMERICANA, address = pub-PH-HISPANOAMERICANA:adr, pages = "290", year = "1997", ISBN = "84-89660-60-3", ISBN-13 = "978-84-89660-60-1", LCCN = "????", bibdate = "Mon Aug 18 13:14:19 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Spanish translation of \cite{Ritchey:1996:PJ}.", URL = "http://prentice.com.mx/libros/progjava.html", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Ritchey:1997:PCJb, author = "Tim Ritchey", title = "Programando com {Java}! Beta 2.0", publisher = pub-EDITORE-CAMPUS, address = pub-EDITORE-CAMPUS:adr, pages = "460", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 12:44:14 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/portuguese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "R\$ 69,90", URL = "http://www.campus.com.br/about-us.htm; http://www.campus.com.br/catalogo/livro.cfm?cod_livro=20060", acknowledgement = ack-nhfb, language = "Portuguese", } @Book{Ritchey:1997:PCJc, author = "Tim Ritchey", title = "Programmare con {JavaScript}", publisher = pub-TECHNICE-NUOVE, address = pub-TECHNICE-NUOVE:adr, pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 12:15:02 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/italian.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "55000 Lire", URL = "http://www.tecnet.it/cgi-shl/dbml.exe?Action=Query&Template=/LibriQueryDueLibro.dbm&ISBN=03456", acknowledgement = ack-nhfb, language = "Italian", } @Article{Ritchie:1997:SPJ, author = "Stuart Ritchie", title = "Systems Programming in {Java}: Reducing complexity and shortening debugging time by using {Java} at the system level", journal = j-IEEE-MICRO, volume = "17", number = "3", pages = "30--35", month = may # "\slash " # jun, year = "1997", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/40.591652", ISSN = "0272-1732 (print), 1937-4143 (electronic)", ISSN-L = "0272-1732", bibdate = "Tue Aug 12 12:35:06 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://pascal.computer.org/mi/books/mi1997/pdf/m3030.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Micro", } @Book{Roberts:1997:JCS, author = "Simon Roberts and Philip Heller", title = "{Java} 1.1 Certification Study Guide", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xxvi + 720", month = sep, year = "1997", ISBN = "0-7821-2069-5 (softcover)", ISBN-13 = "978-0-7821-2069-1 (softcover)", LCCN = "QA76.3 .R63 1997", bibdate = "Mon Jun 22 09:28:44 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.com/", note = "Includes CD-ROM.", price = "US\$35.99", URL = "http://www.sybex.com/cgi-bin/bookpg.pl?2069back.html", acknowledgement = ack-nhfb, } @Book{Rodley:1997:WJA, author = "John Rodley", title = "Writing {Java} Applets", publisher = pub-SOFTBANK, address = pub-SOFTBANK:adr, pages = "????", year = "1997", ISBN = "4-7973-0110-4", ISBN-13 = "978-4-7973-0110-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.softbank.co.jp/softbank/publishing/", price = "3900 yen", URL = "http://www.channel1.com/users/ajrodley/; http://www.softbank.co.jp/softbank/publishing/; http://www.softbank.co.jp/softbank/publishing/books/kikan/kikan10/008.htm", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Roehl:1997:LNV, author = "Bernie Roehl and Justin Couch and Cindy Reed-Ballreich and Tim Rohaly", title = "Late Night {VRML} 2.0 With {Java}", publisher = pub-ZD, address = pub-ZD:adr, pages = "xxxvi + 710", year = "1997", ISBN = "1-56276-504-3", ISBN-13 = "978-1-56276-504-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/zdpress/; http://www.amazon.com/exec/obidos/ISBN=1562765043/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$45", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15627/bud/1562765043.html", acknowledgement = ack-nhfb, dimensions = "9.12in x 7.39in x 1.89in", keywords = "Java (computer program language); technology -- computers and computer technology; VRML (document markup language)", paperback = "yes", } @Misc{Rook:1997:LCC, author = "David Rook", title = "A Language Collector Comments On: {Java}, {Perl} \& {Python}", month = oct, year = "1997", bibdate = "Thu May 21 15:18:28 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.chips.navy.mil/chips/archives/97_oct/file12.htm", acknowledgement = ack-nhfb, } @InProceedings{Rouse:1997:TSO, author = "Forest Rouse and Wayne Christopher", title = "A Typing System for an Optimizing Multiple-Backend {Tcl} Compiler", crossref = "USENIX:1997:ATT", institution = "IECM CFD Engineering (authors 1-2)", pages = "37--??", day = "14--17", month = jul, year = "1997", bibdate = "Wed Aug 13 10:48:45 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/cgi-bin/sortbib.pl?-sA", note = "The backends include C and the Java Virtual Machine. Demonstration licenses for the Tcl Lint system are also available.", URL = "ftp.dnai.com/users/i/icemcfd/tcl; http://www.icemcfd.com/tcl/ice.html", acknowledgement = ack-nhfb, } @Book{Rowe:1997:IDS, author = "Glenn Rowe", title = "An Introduction to Data Structures and Algorithms with {Java}", publisher = pub-PH, address = pub-PH:adr, pages = "????", month = nov, year = "1997", ISBN = "0-13-857749-8", ISBN-13 = "978-0-13-857749-0", LCCN = "QA76.73.J38R69 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$44", URL = "http://www.prenhall.com/ptrbooks/esm_0138577498.html", acknowledgement = ack-nhfb, url-publisher = "http://www.prenhall.com/", } @Article{Russell:1997:PCP, author = "Stuart Russell and Lewis Stiller and Othar Hansson", title = "{PNPACK}: {Computing} with probabilities in {Java}", journal = j-CPE, volume = "9", number = "11", pages = "1333--1339", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13843; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13843&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{s:1997:PGJ, author = "{Eudida S. a. s.}", title = "{PC} Guide {Java}", publisher = pub-JACKSON-LIBRI, address = pub-JACKSON-LIBRI:adr, month = nov, year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.jacksonlibri.it/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "49,000 L.", acknowledgement = ack-nhfb, language = "Italian", } @Book{Sadr:1997:UOO, author = "Babak Sadr", title = "Unified Objects {Object}-Oriented Programming Using {C++} (with an Introduction to {Java})", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xxvii + 429", year = "1997", ISBN = "0-8186-7733-3", ISBN-13 = "978-0-8186-7733-5", LCCN = "QA76.64.S25 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.computer.org; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", URL = "http://www.computer.org/cspress/catalog/bp07733.htm", acknowledgement = ack-nhfb, url-publisher = "http://www.computer.org", } @Book{Sadun:1997:JCC, author = "Erica Sadun", title = "{JavaScript CD} Cookbook", publisher = pub-CHARLES-RIVER-MEDIA, address = pub-CHARLES-RIVER-MEDIA:adr, edition = "Second", pages = "????", day = "1", month = jul, year = "1997", ISBN = "1-886801-65-7", ISBN-13 = "978-1-886801-65-3", LCCN = "????", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1886801657/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$44.95", URL = "http://www.amazon.com/exec/obidos/ISBN=1886801657/1624-2272339-016690", acknowledgement = ack-nhfb, } @Article{Salus:1997:LDJ, author = "Peter H. Salus", title = "Languages: From {DEL} to {Java}", journal = j-UNIX-DEVELOPER, volume = "1", number = "1", pages = "29--30", month = jan # "\slash " # feb, year = "1997", ISSN = "1090-2279", bibdate = "Thu Jan 16 17:23:49 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "UNIX Developer", } @Book{Sams:1997:JAD, author = "{Sams}", title = "{Java} al Decubierto", publisher = pub-PH-HISPANOAMERICANA, address = pub-PH-HISPANOAMERICANA:adr, pages = "898", year = "1997", ISBN = "84-89660-59-X", ISBN-13 = "978-84-89660-59-5", LCCN = "????", bibdate = "Mon Aug 18 17:11:36 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Includes CD-ROM.", URL = "http://prentice.com.mx/; http://prentice.com.mx/libros/javadesc.html", acknowledgement = ack-nhfb, language = "Spanish", } @Article{Sanders:1997:JCB, author = "B. Sanders", title = "{Javaone-97} --- Catching the Buzz", journal = j-IEEE-MICRO, volume = "17", number = "3", pages = "5--6", month = may # "\slash " # jun, year = "1997", CODEN = "IEMIDZ", ISSN = "0272-1732 (print), 1937-4143 (electronic)", ISSN-L = "0272-1732", bibdate = "Thu Dec 14 06:08:58 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; Science Citation Index database (1980--2000)", URL = "http://pascal.computer.org/mi/books/mi1997/pdf/m3005.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Micro", } @Book{Sankar:1997:SEU, author = "Krishna Sankar", title = "Special Edition Using {Java} Class Libraries", publisher = pub-QUE, address = pub-QUE:adr, pages = "????", year = "1997", ISBN = "0-7897-1292-X", ISBN-13 = "978-0-7897-1292-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "118,00 DM; US\$60", URL = "http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, } @Article{Sarna:1997:PSWb, author = "David E. Y. Sarna and George J. Febish", title = "Paradigm Shift: Whither {Java}", journal = j-DATAMATION, volume = "43", number = "7", pages = "23--??", month = "????", year = "1997", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Tue Jan 26 09:28:04 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Datamation", } @Article{Savage:1997:SRJ, author = "Colin Savage and Steven R. Bothe", title = "Special Report: {Java}: Sound Off: {Java} vs. {ActiveX}", journal = j-COMPUTERWORLD, volume = "31", number = "19", pages = "80--82", day = "12", month = may, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri May 16 09:46:12 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Savit:1997:EJW, author = "Jeffrey Savit and Sean Wilcox and Bhuvana Jayaraman", title = "Enterprise {Java}: Where, How, When, and When Not, to Apply {Java} in Client\slash Server Environments", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "????", month = oct, year = "1997", ISBN = "0-07-057991-1 (softcover)", ISBN-13 = "978-0-07-057991-0 (softcover)", LCCN = "HF5548.5.J38S28 1997", bibdate = "Sat Sep 13 14:36:20 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$44.95", URL = "http://mcgraw-hill.inforonics.com/cgi/getarec?mgh41735%comp", } @Book{Schach:1997:SEJ, author = "Stephen R. Schach", title = "Software Engineering With {Java}", publisher = pub-IRWIN, address = pub-IRWIN:adr, pages = "xxii + 618", month = feb, year = "1997", ISBN = "0-256-24167-8", ISBN-13 = "978-0-256-24167-9", LCCN = "QA76.73.J38S3 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0256241678/wholesaleproductA/; http://www.irwin.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$42", URL = "http://www.irwin.com/catalogs/924167.html", acknowledgement = ack-nhfb, keywords = "Java (Computer program language); Software engineering", } @Article{Scheir:1997:SRJ, author = "Robert L. Scheir", title = "Special Report: {Java}: Jury's Still Out", journal = j-COMPUTERWORLD, volume = "31", number = "19", pages = "74--76", day = "12", month = may, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri May 16 09:46:12 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Schengili-Roberts:1997:AHC, author = "Keith Schengili-Roberts", title = "The Advanced {HTML} Companion: Extensive Coverage of Programming Techniques Involving {CGI}, {JavaScript} and {VBScript}, How to Use {HTML} With Style Sheets, {Java}, {ActiveX}, Plug-Ins and Other Goodies", publisher = pub-AP-PROFESSIONAL, address = pub-AP-PROFESSIONAL:adr, pages = "xvii + 387", year = "1997", ISBN = "0-12-623540-6 (softcover)", ISBN-13 = "978-0-12-623540-1 (softcover)", LCCN = "QA76.76.H94S257 1997", bibdate = "Wed Mar 03 07:38:58 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$26.95", } @Book{Schildt:1997:BCC, author = "Herbert Schildt", title = "{Borland C++}: The Complete Reference: Create {Java} Applets and Applications, Develop {Windows 95} Programs", publisher = pub-OSBORNE, address = pub-OSBORNE:adr, pages = "xvi + 1114", year = "1997", ISBN = "0-07-882230-0 (softcover)", ISBN-13 = "978-0-07-882230-8 (softcover)", LCCN = "QA76.73.C153S318 1997", bibdate = "Sat Sep 13 14:36:20 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35.95", } @Book{Schildt:1997:JPP, author = "Herbert Schildt and Joe O'Neil", title = "{Java} Programmer's Pocket Reference", publisher = pub-OSBORNE, address = pub-OSBORNE:adr, pages = "xi + 462", month = jun, year = "1997", ISBN = "0-07-882368-4 (softcover)", ISBN-13 = "978-0-07-882368-8 (softcover)", LCCN = "QA76.73.J38S33 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.osborne.com/", price = "US\$13.49", URL = "http://www.osborne.com/program/javaref.htm", acknowledgement = ack-nhfb, xxauthor = "Herb Schildt and Megg Bonar", xxnote = "Library of Congress says author: Herbert Schildt with Joe O'Neil, and title: Java: programmer's reference", xxtitle = "{Java} Programmer's Reference", } @Book{Schildt:1997:JPR, author = "Herbert Schildt and Joe O'Neil", title = "{Java} Programmer's Reference", publisher = pub-OSBORNE, address = pub-OSBORNE:adr, pages = "xi + 462", year = "1997", ISBN = "0-07-882364-4 (??Invalid checksum??)", ISBN-13 = "978-0-07-882364-0 (??Invalid checksum??)", LCCN = "QA76.73.J38 S33 1997", bibdate = "Mon May 11 09:42:09 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$16.99, CDN\$24.95", acknowledgement = ack-nhfb, } @Book{Schlabach:1997:JPV, author = "Torsten Schlabach", title = "{Java-Programmierung mit Visual J++}", publisher = pub-AW, address = pub-AW:adr, pages = "400", year = "1997", ISBN = "3-8273-1191-8", ISBN-13 = "978-3-8273-1191-7", LCCN = "????", bibdate = "Tue Mar 03 09:35:56 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "60 DM", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.addison-wesley.de/", } @Article{Schlack:1997:ELD, author = "Mark Schlack", title = "Editorial: Living Dangerously: The computer industry is engaged in a platform war. Which side should you be on?", journal = j-BYTE, volume = "22", number = "1", pages = "14--14", month = jan, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Dec 28 07:00:20 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses Java, Network Computers, and NetPCs.", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Schlack:1997:ERJ, author = "Mark Schlack", title = "Editorial --- Raising the {Java} Standard", journal = j-BYTE, volume = "22", number = "11", pages = "10--10", month = nov, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon Nov 24 17:12:05 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Schmidt:1997:JS, author = "Volker Schmidt", title = "{Java 1.1 Schnell{\"u}bersicht}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, pages = "543", month = jul, year = "1997", ISBN = "3-8272-5219-9", ISBN-13 = "978-3-8272-5219-7", LCCN = "????", bibdate = "Fri Nov 01 05:09:12 2002", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "39,95 DM", URL = "http://www.mut.ch/html/buchinfo.htx?&x_pp=dJgxRqA9wlAYNijX&x_az=10&x_pk=VpLvjnsx7b5V&x_pa=B&x_pr=oS&x_bestell=25219&x_stichwort=Java&x_sprache=A&x_start=1&x_gefunden=92&x_query=&x_lastpage=buchfund&x_soft=&x_suchewo=; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.mut.ch/", xxauthor = "Josef Steiner and Robert Valentin", } @Book{Schneider:1997:UEJ, author = "Jeff Schneider and Rajeev Arora", title = "Using Enterprise {Java}, Special Edition", publisher = pub-QUE, address = pub-QUE:adr, pages = "496", year = "1997", ISBN = "0-7897-0887-6 (softcover)", ISBN-13 = "978-0-7897-0887-8 (softcover)", LCCN = "QA76.73.J38S36 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$53.99", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/07897/bud/0789708876.html", acknowledgement = ack-nhfb, xxtitle = "Special Edition Using Enterprise {Java}", } @Article{Schreiber:1997:IWC, author = "Sven B. Schreiber", title = "Inside {Windows Cabinet} Files", journal = j-DDJ, volume = "22", number = "5", pages = "20--??", month = may, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat May 31 08:51:02 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "The {Windows Cabinet} file format, an archive file format originally for compressed installation disks, is used in {Office 95}, {Internet Explorer}, and {MSDN Library CD}. {Microsoft} is touting the {Cabinet} file format as a means of reducing download times for {Java} class files.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Schroeder:1997:VTJ, author = "Will Schroeder", title = "The Visualization Toolkit (in {Java}): An Object-Oriented Approach to {3-D} Graphics", publisher = pub-PH, address = pub-PH:adr, edition = "Second", month = dec, year = "1997", ISBN = "0-13-954694-4", ISBN-13 = "978-0-13-954694-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "????", URL = "http://www.prenhall.com/books/ptr_0139546944.html", acknowledgement = ack-nhfb, } @Book{Schulz:1997:AJ, author = "Kay Schulz", title = "{Alles {\"u}ber Java}", publisher = "Managementwissen Zukunft", address = "????", month = oct, year = "1997", ISBN = "3-932506-08-1 (??invalid ISBN??)", ISBN-13 = "978-3-932506-08-6 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://home.t-online.de/home/GS.VerlagMWZ/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "79 DM", URL = "http://home.t-online.de/home/GS.VerlagMWZ/javaabs.htm", acknowledgement = ack-nhfb, language = "German", } @Book{Schulz:1997:JSS, author = "Paul Schulz and Jan Hermelink", title = "{Java 1.1: schnell und sicher zum Ziel}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, pages = "361", year = "1997", ISBN = "3-8272-5227-X", ISBN-13 = "978-3-8272-5227-2", LCCN = "????", bibdate = "Tue Mar 03 09:37:28 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "20 DM", URL = "http://www.mut.ch/html/buchinfo.htx?&x_pp=dJgxRqA9wlAYNijX&x_az=10&x_pk=VpLvjnsx7b5V&x_pa=B&x_pr=oS&x_bestell=25227&x_stichwort=Schulz&x_sprache=A&x_start=1&x_gefunden=2&x_query=&x_lastpage=buchfund&x_soft=&x_suchewo=A; http://www.mut.ch/zbin/webdbc.dll/support/leer/htx/&/html/buchinfo.htx?&x_merkenbestell=25227&x_stichwort=java&x_sprache=D&x_start=1&x_pp=UBqkUYviWj&x_lang=D&x_az=75&x_hg=FFFFFF&x_gefunden=9&x_query=&x_vonwo=buchfund&x_soft=1; http://www.mut.com/", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.mut.ch/", xxtitle = "{Java 1.1 Taschenbuch}", } @Book{Schumann:1997:EEJ, author = "Michael Schumann", title = "{Der Erfolgreiche Einstieg in Java}", publisher = "Ullstein", address = "Frankfurt/Main und Berlin, Germany", pages = "256", year = "1997", ISBN = "3-548-41090-1", ISBN-13 = "978-3-548-41090-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "20 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Schumann:1997:PJS, author = "Michael Schumann and Antje Binas-Holz", title = "{Das Programmierbuch Java 1.1: das Sprachkonzept: Programme und Applets; die Werkzeuge des JAVA-1.1-Developer-Kits (JDK) und nutzliche Add-Ons; Sicherheits- und Verschlusselungstechnologien unter JAVA 1.1; mit ubersichtlicher Referenz des neuen JAVA 1.1 API }", publisher = pub-SYBEX-VERLAG, address = pub-SYBEX-VERLAG:adr, pages = "xxxii + 1096", year = "1997", ISBN = "3-8155-5420-9", ISBN-13 = "978-3-8155-5420-3", LCCN = "????", bibdate = "Mon Jun 22 11:58:17 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.de/", price = "89 DM", URL = "http://www.sybex.de/bestell/tp/tp05420.htm", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.sybex.de/", } @Book{Shammas:1997:VJD, author = "Namir Clement Shammas", title = "{Visual J++} for Dummies Quick Reference", publisher = pub-IDG, address = pub-IDG:adr, pages = "xii + 212", month = aug, year = "1997", ISBN = "0-7645-0253-0", ISBN-13 = "978-0-7645-0253-8", LCCN = "QA76.73.J38S45 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$15", URL = "http://www.dummies.com/cgi/fill_out_template.pl?book:0-7645-0253-0:book-Dummies+Press::u151219", acknowledgement = ack-nhfb, url-publisher = "http://www.idgbooks.com/", } @InProceedings{Shaw:1997:ISS, author = "N. Shaw", title = "Integrating {SGML}, {STEP\slash EXPRESS}, {HTML}, and {Java} to make Product Data Accessible across the {Web}", crossref = "Anonymous:1997:CDP", pages = "115--118", year = "1997", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Book{Shin:1997:CJ, author = "Jeongho Shin and others", title = "Catch {Java}!", publisher = "Miraejungbosa", address = "??, Korea", pages = "????", year = "1997", ISBN = "89-7836-024-6 (??Invalid checksum??)", ISBN-13 = "978-89-7836-024-1 (??Invalid checksum??)", LCCN = "????", bibdate = "Thu Aug 14 13:00:33 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/korean.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "16,000 won", URL = "????", acknowledgement = ack-nhfb, language = "Korean", } @Book{Shin:1997:JH, author = "Myungki Shin and Heechang Choi", title = "{Java} Hunting", publisher = "Information Age Co.", address = "??, Korea", pages = "12,000 won", year = "1997", ISBN = "89-85346-50-4 (??Invalid checksum??)", ISBN-13 = "978-89-85346-50-4 (??Invalid checksum??)", LCCN = "????", bibdate = "Thu Aug 14 13:00:33 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/korean.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.infoage.co.kr/publish/index.html", acknowledgement = ack-nhfb, language = "Korean", } @Book{Shiran:1997:LAJ, author = "Yehuda Shiran and Tomer Shiran", title = "Learn advanced {JavaScript} programming", publisher = "Wordware Pub.", address = "Plano, TX, USA", pages = "????", year = "1997", ISBN = "1-55622-552-0", ISBN-13 = "978-1-55622-552-9", LCCN = "QA76.73.J38 S46 1997", bibdate = "Thu Aug 14 11:38:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Book{Shulz:1997:JSS, author = "Paul Shulz", title = "{Java 1.1. Schnell und sicher zum Ziel}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, pages = "391", year = "1997", ISBN = "3-453-13559-8", ISBN-13 = "978-3-453-13559-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "20 DM", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.mut.ch/", } @Article{Shur:1997:EIC, author = "Jim Shur", title = "Exploring Inner Classes in {Java} 1.1: As {Java} matures, it begs comparison to the robustness of {C++}. See how {JDK} 1.1's inner classes compare to nested classes", journal = j-C-PLUS-PLUS-REPORT, volume = "9", number = "5", pages = "18--29, 68", month = may, year = "1997", CODEN = "CRPTE7", ISSN = "1040-6042", bibdate = "Fri May 02 06:51:43 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", fjournal = "C++ Report", } @Book{Siddalingaiah:1997:JH, author = "Madhu Siddalingaiah and Stephen D. Lockwood", title = "{Java} How-To", publisher = pub-IMPRESS, address = pub-IMPRESS:adr, pages = "????", year = "1997", ISBN = "4-8443-4798-5", ISBN-13 = "978-4-8443-4798-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.ips.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM. Japanese translation.", price = "4900 yen", URL = "http://www.ips.co.jp/; http://www.ips.co.jp/book/4798/4798.htm", acknowledgement = ack-nhfb, language = "Japanese", } @Article{Simeonides:1997:IDCa, author = "Alex Simeonides", title = "{IBM} Deepens Commitment to {Java}", journal = j-WEBSERVER, volume = "2", number = "1", pages = "10--11", month = feb, year = "1997", ISSN = "1087-4232", bibdate = "Wed Jan 29 13:39:45 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Article{Simeonides:1997:IDCb, author = "Alex Simeonides", title = "{IBM} Deepens Committment to {Java}", journal = j-RS-MAGAZINE, volume = "6", number = "2", pages = "9--10", month = feb, year = "1997", ISSN = "1088-0844, 1061-0030", bibdate = "Tue Feb 11 06:15:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "RS\slash Magazine", } @Article{Simeonides:1997:JAA, author = "Alex Simeonides", title = "{Java API} to Access Serial, Parallel Ports", journal = j-SUNEXPERT, volume = "8", number = "6", pages = "20--22", month = jun, year = "1997", ISSN = "1053-9239", bibdate = "Thu Jun 26 09:40:40 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Simeonides:1997:SEJ, author = "Alex Simeonides", title = "Sun to Extend {Java RMI} with {IIOP}", journal = j-SUNEXPERT, volume = "8", number = "8", pages = "14--14", month = aug, year = "1997", ISSN = "1053-9239", bibdate = "Fri Aug 22 07:22:23 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Simeonides:1997:SSC, author = "Alex Simeonides", title = "{Sun} Serves Up Corporate {Java}", journal = j-SUNEXPERT, volume = "8", number = "6", pages = "6--7", month = jun, year = "1997", ISSN = "1053-9239", bibdate = "Thu Jun 26 09:40:40 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cpg.com", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Book{Sinclair:1997:JWMa, author = "Joseph T. Sinclair and Lee Callister", title = "{Java Web} Magic", publisher = pub-HAYDEN, address = pub-HAYDEN:adr, pages = "x + 224", day = "1", month = mar, year = "1997", ISBN = "1-56830-341-6", ISBN-13 = "978-1-56830-341-3", LCCN = "QA76.73.J38S555 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/hayden/; http://www.amazon.com/exec/obidos/ISBN=1568303416/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15683/bud/1568303416.html", acknowledgement = ack-nhfb, dimensions = "8.95in x 6.83in x 0.48in", } @Book{Sinclair:1997:JWMb, author = "Joseph Sinclair", title = "{Java Web} Magic", publisher = pub-ACADEMIC-SERVICE, address = pub-ACADEMIC-SERVICE:adr, pages = "ca. 225", year = "1997", ISBN = "90-395-0710-4", ISBN-13 = "978-90-395-0710-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/dutch.html; http://www.acaserv.nl; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Dutch translation of \cite{Sinclair:1997:JWMa}. Includes CD-ROM.", price = "fl. 45", URL = "http://acaserv.nl/bestel/5_0710.htm; http://www.acaserv.nl; http://www.acaserv.nl/5_0710.htm", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Sinclair:1997:JWMc, author = "Joseph Sinclair", title = "{Java Web Magic}", publisher = pub-ACADEMIC-SERVICE-VERLAG, address = pub-ACADEMIC-SERVICE-VERLAG:adr, pages = "????", year = "1997", ISBN = "3-932073-25-8 (??invalid ISBN??)", ISBN-13 = "978-3-932073-25-0 (??invalid ISBN??)", LCCN = "????", bibdate = "Tue Mar 03 09:45:22 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "45 DM", URL = "http://www.sybex.de/bestell/tp/tp02016.htm", acknowledgement = ack-nhfb, language = "German", } @Book{Siyan:1997:IJ, author = "Karanjit Siyan and James L. Weaver and Jim Mathis and Luke Cassady-Dorion and Tim Ritchey", title = "Inside {Java}", publisher = pub-NRP, address = pub-NRP:adr, pages = "xiv + 912", day = "19", month = mar, year = "1997", ISBN = "1-56205-664-6", ISBN-13 = "978-1-56205-664-3", LCCN = "QA76.73.J38S588 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/newriders/; http://www.amazon.com/exec/obidos/ISBN=1562056646/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35.00", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15620/bud/1562056646.html", acknowledgement = ack-nhfb, dimensions = "9.10in x 7.34in x 2.40in", paperback = "yes", } @Book{Siyan:1997:TVJ, author = "Karanjit Siyan", title = "Todo {Visual J++} 1.0 y 1.1", publisher = pub-EDITORIAL-INFORBOOKS, address = pub-EDITORIAL-INFORBOOKS:adr, year = "1997", ISBN = "84-89700-42-7 (??invalid ISBN??)", ISBN-13 = "978-84-89700-42-0 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.intercom.es/ibooks/ibooks.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", acknowledgement = ack-nhfb, language = "Spanish", } @Article{Slattery:1997:UJ, author = "Terry Slattery", title = "Using {Java}", journal = j-LOGIN, volume = "22", number = "5", pages = "??--??", month = oct, year = "1997", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:35:55 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/contents/contents.oct97.html", URL = "http://www.usenix.org/publications/java/javaindex.html; http://www.usenix.org/publications/java/usingjava7.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{Sliwa:1997:CJC, author = "Carol Sliwa", title = "Can {Java} cut in in the real world with a heavy-duty application? {Daiwa} finds plenty to recommend {Java}", journal = j-COMPUTERWORLD, volume = "31", number = "34", pages = "1, 16", day = "25", month = aug, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Nov 24 17:48:06 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Sliwa:1997:MDW, author = "Carol Sliwa and Sharon Gaudin", title = "{Microsoft} declares war: Stuns {Sun} with refusal to ship {Java} class libraries", journal = j-COMPUTERWORLD, volume = "31", number = "30", pages = "1, 17", day = "28", month = jul, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Aug 11 08:32:50 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "See \cite{Sliwa:1997:MDW,Johnson:1997:OAR} for backslash.", fjournal = "ComputerWorld", } @Article{Sliwa:1997:MSR, author = "Carol Sliwa and Sharon Gaudin", title = "{Microsoft} stances roils users: Threat to cross-platform elicits strong disapproval", journal = j-COMPUTERWORLD, volume = "31", number = "31", pages = "1, 100", day = "4", month = aug, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Aug 11 08:32:50 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "See \cite{Sliwa:1997:MDW} for original story, and \cite{Johnson:1997:OAR} for further comments.", fjournal = "ComputerWorld", } @Article{Smith:1997:MML, author = "Taber H. Smith and Aaron E. Gower and Duane S. Boning", title = "A matrix math library for {Java}", journal = j-CPE, volume = "9", number = "11", pages = "1127--1137", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13821; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13821&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Smith:1997:NGN, author = "J. Douglas Smith", title = "{Novell}'s Guide to {Netware Java}", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "????", month = jan, year = "1997", ISBN = "0-7645-4524-8", ISBN-13 = "978-0-7645-4524-5", LCCN = "????", bibdate = "Fri Nov 01 05:05:49 2002", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.novell.com/programs/press/index.html", price = "US\$39.99", acknowledgement = ack-nhfb, keywords = "(computer program); Java (computer program language); Netware; technology -- computers and computer technology", url-publisher = "http://www.novell.com/programs/press/index.html", } @Book{Sommers:1997:DJR, author = "Bret Sommers", title = "Distributed {Java}: Remote Objects for {Java}", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "304", month = mar, year = "1997", ISBN = "0-07-913249-9", ISBN-13 = "978-0-07-913249-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$39.95", acknowledgement = ack-nhfb, } @Article{Spertus:1997:CGC, author = "Mike Spertus", title = "{C++} and Garbage Collection: Not your father's garbage collection", journal = j-DDJ, volume = "22", number = "12", pages = "36, 38, 40--41", month = dec, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Nov 28 17:26:40 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Automatic garbage collection is one reason languages such as Java and Smalltalk are so appealing. C++ programmers can also enjoy the benefits of efficient memory management, with tools such as the Great Circle garbage collector.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Sridharan:1997:AJN, author = "Prashant Sridharan", title = "Advanced {Java} Networking", publisher = pub-PH, address = pub-PH:adr, pages = "xxiv + 368", year = "1997", ISBN = "0-13-749136-0 (softcover)", ISBN-13 = "978-0-13-749136-0 (softcover)", LCCN = "QA76.73.J38S75 1997", bibdate = "Wed Feb 21 06:38:01 2001", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.phptr.com/ptrbooks/ptr_0137491360.html; http://www.prenhall.com/", note = "Includes CD-ROM.", price = "US\$44.95", series = "SunSoft Press Java series", URL = "http://www.prenhall.com/allbooks/ptr_0137491360.html", acknowledgement = ack-nhfb, } @Book{Sridharan:1997:JDR, author = "Prashant Sridharan", title = "{JavaBeans}: Developer's Resource", publisher = pub-PH, address = pub-PH:adr, pages = "xxi + 353", month = aug, year = "1997", ISBN = "0-13-887308-9 (softcover)", ISBN-13 = "978-0-13-887308-0 (softcover)", LCCN = "QA76.73.J38S754 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", note = "Includes CD-ROM.", price = "US\$44.95", URL = "http://www.prenhall.com/allbooks/ptr_0138873089.html", acknowledgement = ack-nhfb, } @Article{Srinivas:1997:JBE, author = "Kankanahalli Srinivas and V. ``Juggy'' Jagannathan and Y. V. Ramana Reddy and Raghu Karinthi", title = "{Java} and Beyond: Executable Content", journal = j-COMPUTER, volume = "30", number = "6", pages = "52", month = jun, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Wed Jun 04 08:59:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computer", } @Book{Stanek:1997:WPU, author = "William R. Stanek", title = "{Web} Publishing Unleashed: Professional Reference Edition", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xliii + 1501", day = "1", month = jan, year = "1997", ISBN = "1-57521-198-X", ISBN-13 = "978-1-57521-198-5", LCCN = "TK5105.888.S732 1997", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=157521198X/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$69.99", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/157521198X.html", acknowledgement = ack-nhfb, dimensions = "9.38in x 7.91in x 2.46in", xxtitle = "{Web} publishing: professional reference edition unleashed", } @Book{Starbuck:1997:JCP, author = "Orca Starbuck", title = "{JavaOne} Conference Proceedings", publisher = pub-AW-LONGMAN, address = pub-AW-LONGMAN:adr, pages = "848", year = "1997", ISBN = "0-201-69586-3", ISBN-13 = "978-0-201-69586-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0201695863/wholesaleproductA/; http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$41.91", acknowledgement = ack-nhfb, paperback = "yes", } @Article{Stedman:1997:JDS, author = "Craig Stedman", title = "{Java} database support scarce: {IBM} offers support, {Oracle Microsoft}, {Sybase} offer promises", journal = j-COMPUTERWORLD, volume = "31", number = "26", pages = "53, 56", day = "30", month = jun, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Wed Jul 02 16:54:01 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Stedman:1997:JGM, author = "Craig Stedman", title = "{Java} gets missing link", journal = j-COMPUTERWORLD, volume = "31", number = "3", pages = "43--44", day = "20", month = jan, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Thu Jan 30 07:15:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses Java links to databases, and replacement of PCs with Java-based network computers.", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Stedman:1997:ODS, author = "Craig Stedman", title = "{Object Design} serves {Java} to users", journal = j-COMPUTERWORLD, volume = "31", number = "14", pages = "3--3", day = "7", month = apr, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Tue Apr 22 07:48:54 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Stein:1997:PLW, author = "L. Stein", title = "A {Perl} library for writing {CGI} scripts", journal = j-WEB-TECHNIQUES, volume = "2", number = "2", pages = "61--65", month = feb, year = "1997", CODEN = "WETEFA", ISSN = "1086-556X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6150N (Distributed systems software); C6140D (High level languages); C6110J (Object-oriented programming); C6110B (Software engineering techniques)", fjournal = "Web Techniques", keywords = "authoring languages; browser; CGI scripts; CGI.pm module; content negotiation; cookies; fill-out form creation; frames; HTTP header creation; Internet; JavaScript; Macintosh; Netscape; object-oriented; object-oriented programming; parsing; Perl 5; Perl 5.001; Perl 5.003; Perl library; programming; query string; software libraries; sticky elements; Unix; Windows 95; Windows NT", treatment = "P Practical", } @Article{Stevens:1997:CPK, author = "Al Stevens", title = "{C} Programming: Kicking and Scripting: {JavaScript} and {CGI}", journal = j-DDJ, volume = "22", number = "4", pages = "92--95, 97, 114", month = apr, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Mar 07 11:25:15 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Stevens:1997:GPJ, author = "Roger T. Stevens", title = "Graphics Programming With {Java}", publisher = pub-CHARLES-RIVER-MEDIA, address = pub-CHARLES-RIVER-MEDIA:adr, pages = "400", year = "1997", ISBN = "1-886801-62-2", ISBN-13 = "978-1-886801-62-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1886801622/wholesaleproductA/; http://www.charlesriver.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$44.95", URL = "http://www.charlesriver.com/titles/graphprog.html", acknowledgement = ack-nhfb, dimensions = "9.87in x 7.60in x 1.01in", } @Article{Stewart:1997:JJ, author = "Michael Kei Stewart", title = "Just {Java}", journal = j-OBJECT-MAG, volume = "1", number = "11", pages = "12--12", month = jan, year = "1997", CODEN = "OBMAFO", ISSN = "1055-3614", bibdate = "Mon Mar 03 11:20:29 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Object Magazine", } @Article{Stewart:1997:JP, author = "Michael Kei Stewart", title = "The {Java} Percolates", journal = j-OBJECT-MAG, volume = "7", number = "1", pages = "14--14", month = mar, year = "1997", CODEN = "OBMAFO", ISSN = "1055-3614", bibdate = "Mon Mar 03 11:20:29 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Object Magazine", } @Article{Stewart:1997:JW, author = "Michael Kei Stewart", title = "The {Java} Watch", journal = j-OBJECT-MAG, volume = "7", number = "2", pages = "12--12", month = apr, year = "1997", CODEN = "OBMAFO", ISSN = "1055-3614", bibdate = "Mon Mar 03 11:20:29 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Object Magazine", } @Article{Stewart:1997:WSA, author = "John N. Stewart", title = "{Web} Security: Active Content", journal = j-WEBSERVER, volume = "2", number = "1", pages = "20--22", month = feb, year = "1997", ISSN = "1087-4232", bibdate = "Wed Jan 29 13:41:01 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses and compares Java, JavaScript, ActiveX, and VBScript.", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Book{Stoker:1997:IJP, author = "Carol Stoker and Thomas Plew", title = "An Introduction to {Java} Programming: Developing Applets Using Microsoft {Visual J++}", publisher = "Course Technology", address = "????", pages = "????", month = dec, year = "1997", ISBN = "0-7600-5043-0", ISBN-13 = "978-0-7600-5043-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.thomson.com/course.html", price = "????", URL = "http://www.course.com/templates/catalog/detail.cfm?isbn=0-7600-5043-0", acknowledgement = ack-nhfb, url-publisher = "http://www.thomson.com/course.html", } @Article{Storer:1997:PEA, author = "Larry Storer", title = "Programmer, editor to author {HP Chronicle}'s {JavaTalk} series", journal = j-HP-CHRONICLE, volume = "14", number = "7", pages = "14--14", month = jun, year = "1997", ISSN = "0892-2829", bibdate = "Fri Jun 27 08:13:33 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", fjournal = "HP Chronicle", } @Article{Strauss:1997:BRJ, author = "Fred J. Strauss", title = "Book Review: {``Just Java'', by Peter van der Linden}", journal = j-UNIX-DEVELOPER, volume = "1", number = "1", pages = "79--80", month = jan # "\slash " # feb, year = "1997", ISSN = "1090-2279", bibdate = "Thu Jan 16 17:23:49 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "UNIX Developer", } @Article{Struble:1997:LDJ, author = "Craig A. Struble and Ted Lewis", title = "Letters: Deadlocks, and {Java}", journal = j-COMPUTER, volume = "30", number = "5", pages = "10--10", month = may, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Tue May 06 16:45:11 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Response to \cite{Lewis:1997:BCI}.", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Sulger:1997:DMJ, author = "Art Sulger", title = "Database Management and {Java}", journal = j-DDJ, volume = "22", number = "5", pages = "28, 30--32, 73, 74", month = may, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Apr 02 07:24:30 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "In a previous article, {Art} presented a {C++} class structure that provided a single interface to multiple file formats. In this article, {Art} shows you how to port the {C++} code to {Java}.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Manual{Sun:1997:JCL, title = "{Java Card 2.0} Language Subset and Virtual Machine Specification", organization = "{SUN} Microsystems, Inc.", address = "Palo Alto/CA", edition = "Revision 1.0 Final", day = "13", month = oct, year = "1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "ftp://ftp.javasoft.com/docs/javacard/JC20-Language.pdf", added-at = "Mon Oct 12 17:29:42 1998", added-by = "gka", } @Book{Sun:1997:JEC, author = "{Sun Microsystems}", title = "{Java} Enterprise Computing: Enabling Breakaway Business Strategies", publisher = pub-SUN, address = pub-SUN:adr, pages = "xvii + 202", year = "1997", bibdate = "Sat Apr 27 07:16:19 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, xxISBN = "none", xxLCCN = "none", } @Article{Sundsted:1997:HJC, author = "Todd Sundsted", title = "How-To {Java}: {$3$D} computer graphics: Getting the hang of {VRML}", journal = j-JAVAWORLD, volume = "2", number = "8", month = aug, year = "1997", CODEN = "????", ISSN = "1091-8906", bibdate = "Thu Aug 13 08:48:26 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.javaworld.com/javaworld/jw-08-1997/jw-08-howto.html", acknowledgement = ack-nhfb, } @Book{Susanj:1997:JPZ, author = "Dario Su{\v{s}}anj", title = "{Java}: Programiranje za {Internet} i {World Wide Web}", publisher = "Znak", address = "Zagreb, Croatia", pages = "750", year = "1997", ISBN = "953-189-019-6", ISBN-13 = "978-953-189-019-9", LCCN = "????", bibdate = "Mon Aug 18 16:45:52 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Includes CD-ROM.", price = "199 kuna", URL = "http://www.znak.tel.hr/znak/java/info.html", acknowledgement = ack-nhfb, language = "Croatian", } @Article{Sutherland:1997:SDJ, author = "Jeff Sutherland", title = "Software Development: The {Java} Revolution", journal = j-SUNEXPERT, volume = "8", number = "1", pages = "42--44, 46, 48, 50, 52, 54", month = jan, year = "1997", ISSN = "1053-9239", bibdate = "Thu Jan 16 18:53:39 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Swaine:1997:PPBa, author = "Michael Swaine", title = "Programming Paradigms: The Bridges of {Santa Clara County}", journal = j-DDJ, volume = "22", number = "9", pages = "93--95", month = sep, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Aug 23 08:01:59 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Comments on the role of Java in the Apple's survival struggle.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Swaine:1997:PPJa, author = "Michael Swaine", title = "Programming Paradigms: {Java} Jabs, {VisiCorpse}, and the Blood of {Red Smith}", journal = j-DDJ, volume = "22", number = "5", pages = "83, 84, 86, 89", month = may, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Apr 02 07:24:30 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "From his jabs at {Java} to the premature reports of {TKSolver's} demise {Michael} digs into his mailbag.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Swaine:1997:PPJb, author = "Michael Swaine", title = "Programming Paradigms: {Java} Bashing, Books, and Beans", journal = j-DDJ, volume = "22", number = "7", pages = "93--95", month = jul, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat May 31 09:56:28 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Swaine:1997:PPS, author = "Michael Swaine", title = "Programming Paradigms: Some Observations on {Apple} and {Java}", journal = j-DDJ, volume = "22", number = "2", pages = "91--93", month = feb, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Jan 03 06:34:28 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Swaine:1997:PPSa, author = "Michael Swaine", title = "Programming Paradigms: Some Observations on {Apple} and {Java}", journal = j-DDJ, volume = "22", number = "2", pages = "91--93", month = feb, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Jan 03 06:34:28 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Swan:1997:TSM, author = "Tom Swan", title = "{Tom Swan}'s Mastering {Java} with {Visual J++}", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxi + 658", year = "1997", ISBN = "1-57521-210-2 (softcover)", ISBN-13 = "978-1-57521-210-4 (softcover)", LCCN = "QA76.73.J38S93 1997", bibdate = "Mon Jun 22 09:59:25 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$39.99", acknowledgement = ack-nhfb, xxtitle = "{Tom Swan}'s Mastering {Visual J++}, Premier Edition", } @Book{Takagi:1997:J, author = "K. Takagi and others", title = "{Java}", publisher = "RESET Publishing", address = "??, Japan", pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.reset.co.jp/home.html", acknowledgement = ack-nhfb, language = "Japanese", } @InProceedings{Tamiosso:1997:BIA, author = "F. Tamiosso and A. Raposo and L. Magalhaes and I. Ricarte", title = "Building Interactive Animations using {VRML} and {Java}", crossref = "deFigueiredo:1997:XBS", pages = "42--48", year = "1997", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Book{Tapley:1997:DOG, author = "Rebecca Tapley and others", title = "Directorio Oficial De Gamelan {Java}", publisher = pub-ANAYA-MULTIMEDIA, address = pub-ANAYA-MULTIMEDIA:adr, pages = "xiv + 443", year = "1997", ISBN = "84-415-0099-1", ISBN-13 = "978-84-415-0099-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/spanish.html; http://www.anaya.es/multimedia/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "3995 Ptas.", URL = "http://www.anaya.es/Catalogo/CGA?act=L&art=2321008&ed=2300; http://www.anaya.es/multimedia/", acknowledgement = ack-nhfb, language = "Spanish", } @Article{Tassel:1997:EEP, author = "J. Tassel and B. Briscoe and A. Smith", title = "An End to End Price-Based {QoS} Control Component Using Reflective {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1356", pages = "18--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Taylor:1997:JDR, author = "Art Taylor", title = "{JDBC} developer's resource: database programming on the {Internet}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xx + 730", year = "1997", ISBN = "0-13-842352-0", ISBN-13 = "978-0-13-842352-0", LCCN = "QA76.625 .T39 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$50", URL = "http://www.prenhall.com/allbooks/ptr_0138423520.html", acknowledgement = ack-nhfb, annote = "System requirements: IBM compatible PC; CD-ROM drive; Windows 95; Windows NT.", keywords = "Database management; Internet programming; Java (Computer program language)", } @Book{Taylor:1997:JPE, author = "Don Taylor and Jeff Duntemann", title = "{JBuilder} Programming Explorer: The Best Way to Master {Java} Programming With {Borland}'s {Open} {JBuilder}", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "600", month = jun, year = "1997", ISBN = "1-57610-005-7", ISBN-13 = "978-1-57610-005-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1576100057/wholesaleproductA/; http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99, CDN\$55.99", URL = "http://www.coriolis.com/", acknowledgement = ack-nhfb, xxauthor-1 = "Steven Fraser and Terence Goggin and Ravi Singh", xxauthor-2 = "Jeff Duntemann and Don Taylor", } @Book{Taylor:1997:JSE, author = "Lee Taylor and Jennifer Atkinson", title = "{Java} Studio: Effective {Web} Design in 3 Days", publisher = pub-ITCP, address = pub-ITCP:adr, pages = "????", month = nov, year = "1997", ISBN = "1-85032-923-0", ISBN-13 = "978-1-85032-923-7", LCCN = "????", bibdate = "Fri Nov 01 05:13:04 2002", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.thomson.com/intlitcp.html", price = "US\$40", acknowledgement = ack-nhfb, url-publisher = "http://www.thomson.com/intlitcp.html", xxtitle = "{Sun Java} Studio: Effective {Web} Design in 3 Days", } @Book{Teague:1997:HPH, author = "Jason Cranford Teague", title = "How to Program {HTML} Frames: Interface Design and {JavaScript}", publisher = pub-ZD, address = pub-ZD:adr, pages = "????", year = "1997", ISBN = "1-56276-495-0", ISBN-13 = "978-1-56276-495-1", LCCN = "????", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1562764950/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99", acknowledgement = ack-nhfb, dimensions = "10.01in x 8.54in x 1.01in", keywords = "HTML (document markup language); JavaScript (computer program language); technology -- computers and computer technology", } @Article{Thorn:1997:PLM, author = "Tommy Thorn", title = "Programming languages for mobile code", journal = j-COMP-SURV, volume = "29", number = "3", pages = "213--239", month = sep, year = "1997", CODEN = "CMSVAN", ISSN = "0360-0300 (print), 1557-7341 (electronic)", ISSN-L = "0360-0300", bibdate = "Wed Oct 22 18:05:34 MDT 1997", bibsource = "http://www.acm.org/pubs/contents/journals/surveys/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/journals/surveys/1997-29-3/p213-thorn/", abstract = "Sun's announcement of the programming language Java more that anything popularized the notion of mobile code, that is, programs traveling on a heterogeneous network and automatically executing upon arrival at the destination. We describe several classes of mobile code and extract their common characteristics, where security proves to be one of the major concerns. With these characteristics as reference points, we examine six representative languages proposed for mobile code. The conclusion of this study leads to our recommendations for future work, illustrated by examples of ongoing research.", acknowledgement = ack-nhfb, fjournal = "ACM Computing Surveys", keywords = "languages; security", subject = "{\bf A.1} General Literature, INTRODUCTORY AND SURVEY. {\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Object-oriented languages. {\bf C.2.4} Computer Systems Organization, COMPUTER-COMMUNICATION NETWORKS, Distributed Systems, Distributed applications. {\bf D.4.6} Software, OPERATING SYSTEMS, Security and Protection, Access controls.", } @Article{Thorup:1997:GJV, author = "Kresten Krab Thorup", title = "Genericity in {Java} with Virtual Types", journal = j-LECT-NOTES-COMP-SCI, volume = "1241", pages = "444--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Feb 5 11:50:59 MST 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t1241.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://link.springer-ny.com/link/service/series/0558/bibs/1241/12410444.htm; http://link.springer-ny.com/link/service/series/0558/papers/1241/12410444.pdf", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Tichenor:1997:JCB, author = "Charles B. Tichenor", title = "{JavaScript} Cookies: Browser-side persistence for {Web} developers", journal = j-DDJ, volume = "22", number = "5", pages = "42--45", month = may, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Apr 02 07:24:30 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "The {JavaScript} document cookie enables browser-side persistence and the {JavaScript} methods {Charles} describes let you create {Web} pages with long-term memory, pages that replace {CGI} scripts, or pages that communicate with each other.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Tilli:1997:DJ, author = "Thomas Tilli", title = "{Datenbankentwicklung mit Java}", publisher = pub-FRANZIS-VERLAG, address = pub-FRANZIS-VERLAG:adr, pages = "????", month = sep, year = "1997", ISBN = "3-7723-6033-5", ISBN-13 = "978-3-7723-6033-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.franzis-buch.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "49 DM", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.franzis-buch.de/", } @Book{Tilli:1997:SSJa, author = "Thomas Tilli", title = "{Suchen und sortieren in Java ab JDK-Version 1.0}", publisher = pub-FRANZIS-VERLAG, address = pub-FRANZIS-VERLAG:adr, pages = "192", year = "1997", ISBN = "3-7723-6004-1", ISBN-13 = "978-3-7723-6004-6", LCCN = "????", bibdate = "Tue Mar 03 10:53:07 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "49 DM", URL = "http://www.franzis-buch.de/katalog/java-suchensortieren/", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.franzis-buch.de/", xxISBN = "3-7723-7604-1", } @Book{Tilli:1997:SSJb, author = "Thomas Tilli", title = "{Suchen und sortieren in Java}", publisher = pub-FRANZIS-VERLAG, address = pub-FRANZIS-VERLAG:adr, year = "1997", ISBN = "3-7723-7604-1", ISBN-13 = "978-3-7723-7604-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.franzis-buch.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "49 DM", URL = "http://www.franzis-buch.de/katalog/java-suchensortieren/", acknowledgement = ack-nhfb, language = "German", } @Book{Tisato:1997:JRI, author = "Nigro Tisato", title = "{Java} Restaurant: Introduzione alla programmazione concorrente in {Java}", publisher = pub-APOGEO, address = pub-APOGEO:adr, pages = "224", year = "1997", ISBN = "88-7303-350-4", ISBN-13 = "978-88-7303-350-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.apogeonline.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Includes floppy disk.", price = "28,000 Lire", URL = "http://www.apogeonline.com/catalogo/350.html; http://www.urra.it/350.html; http://www.urra.it/apocat.html; http://www.urra.it/cataapo.html", acknowledgement = ack-nhfb, language = "Italian", } @Book{Tittel:1997:DJ, author = "Ed Tittel and Bill Brogden", title = "Discover {Java}", publisher = pub-IDG, address = pub-IDG:adr, pages = "xx + 312", month = mar, year = "1997", ISBN = "0-7645-8024-8 (softcover)", ISBN-13 = "978-0-7645-8024-6 (softcover)", LCCN = "QA76.73.J38 T58 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$22.49", URL = "http://www.idgbooks.com/database/book_result.msql?isbn=0-7645-8024-8", acknowledgement = ack-nhfb, } @Book{Tittel:1997:VCD, author = "Ed Tittel", title = "{Visual Caf{\'e}} for dummies", publisher = pub-IDG, address = pub-IDG:adr, pages = "????", year = "1997", ISBN = "0-7645-0077-5", ISBN-13 = "978-0-7645-0077-0", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$25", acknowledgement = ack-nhfb, url-publisher = "http://www.idgbooks.com/", xxtitle = "{Caf{\'e}} Programming For Dummies", } @Article{Tolksdorf:1997:BOO, author = "R. Tolksdorf", title = "{Berlinda}: An object-oriented platform for implementing coordination languages in {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1282", pages = "430--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Thu Apr 30 12:31:32 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Tolksdorf:1997:BOP, author = "R. Tolksdorf", title = "Berlinda: An object-oriented platform for implementing coordination languages in Java", journal = j-LECT-NOTES-COMP-SCI, volume = "1282", pages = "430--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Troan:1997:FSS, author = "Eric Troan", title = "Free Software Solutions: From {Python} to {Java}", journal = j-UNIX-DEVELOPER, volume = "1", number = "1", pages = "77--78", month = jan # "\slash " # feb, year = "1997", ISSN = "1090-2279", bibdate = "Thu Jan 16 17:23:49 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "UNIX Developer", } @Article{Turk:1997:BBI, author = "Andy Turk", title = "Building a Better Interface with {Java}: {Internet Foundation Classes} lets you build {Java} applets with useful features such as drag and drop", journal = j-BYTE, volume = "22", number = "8", pages = "45--46", month = aug, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Aug 23 07:07:29 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Tyma:1997:JPPa, author = "Paul Tyma and Gabriel Torok and Troy Downing", title = "{Java} Primer Plus", publisher = pub-SOFTBANK, address = pub-SOFTBANK:adr, pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 13:10:56 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "5900 yen", URL = "http://www.preemptive.com/aboutauth.html; http://www.softbank.co.jp/softbank/publishing/; http://www.softbank.co.jp/softbank/publishing/books/editer/os1/JavaPower/index.html", acknowledgement = ack-nhfb, language = "Japanese", } @Article{Udell:1997:NAW, author = "Jon Udell", title = "Net Applications: Will {Netscape} Set the Standard?", journal = j-BYTE, volume = "22", number = "3", pages = "66--69, 72, 74, 76, 80, 82, 84", month = mar, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon Feb 24 10:54:23 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses Java, Javascript, and the Java Runtime Environment.", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Udell:1997:WPJa, author = "John Udell", title = "{Web} Project: {JavaScript} Revisited", journal = j-BYTE, volume = "22", number = "5", pages = "99, 100, 102", month = may, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Sat Apr 19 09:18:24 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Udell:1997:WPJb, author = "Jon Udell", title = "{Web} Project: {Java} Servlets: Servlets, the {Java} equivalent of {CGI} applications, can deliver on many of {Java}'s promises while dodging some of its worst limitations", journal = j-BYTE, volume = "22", number = "6", pages = "115, 116, 118", month = jun, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Fri May 23 12:32:31 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Udell:1997:WPP, author = "John Udell", title = "{Web} Project: Persistent {Java}: {A} servlet-based group calendar becomes a surprising success and prompts an exploration of ways to bind {Java} programs to persistent storage", journal = j-BYTE, volume = "22", number = "8", pages = "109, 110, 112", month = aug, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon Jul 21 10:22:57 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Umar:1997:OOC, author = "Amjad Umar", title = "Object-Oriented Client\slash Server {Internet} Environments", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxi + 527", year = "1997", ISBN = "0-13-375544-4", ISBN-13 = "978-0-13-375544-2", LCCN = "QA76.9.C55U53 1997", bibdate = "Wed Jun 17 08:55:58 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes some discussion of Java.", price = "US\$49.00", acknowledgement = ack-nhfb, } @Article{Ung:1997:CCJ, author = "Gordon Mah Ung", title = "{Corel} cans {Java Office} project: Pitches an `evolved' product, promises a {Java}-based upgrade", journal = j-COMPUTERWORLD, volume = "31", number = "34", pages = "14--14", day = "25", month = aug, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Nov 24 17:48:06 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Urquhart:1997:GEI, author = "Ken Urquhart", title = "Guest Editor's Introduction: {Java}'s Open Future", journal = j-IEEE-MICRO, volume = "17", number = "3", pages = "10--13", month = may # "\slash " # jun, year = "1997", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/MM.1997.591649", ISSN = "0272-1732 (print), 1937-4143 (electronic)", ISSN-L = "0272-1732", bibdate = "Tue Aug 12 12:35:06 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://pascal.computer.org/mi/books/mi1997/pdf/m3010.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Micro", } @Article{Urquhart:1997:JET, author = "K. Urquhart", title = "{Java} and the Emerging Technology", journal = j-LECT-NOTES-COMP-SCI, volume = "1274", pages = "1--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Vacca:1997:JIP, author = "John R. Vacca", title = "{JavaScript: Internet-Programmierung ohne Vorwissen; konkrete Praxislosungen}", publisher = pub-SYBEX-VERLAG, address = pub-SYBEX-VERLAG:adr, pages = "xxviii + 602", year = "1997", ISBN = "3-8155-2020-7", ISBN-13 = "978-3-8155-2020-8", LCCN = "????", bibdate = "Mon Jun 22 11:20:33 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Translated by Dieter Winkler.", price = "59 DM, 48,- SFr, 431,- {\"O}S", URL = "http://www.sybex.de/; http://www.sybex.de/bestell/tp/tp02020.htm", acknowledgement = ack-nhfb, language = "German", xxtitle = "{internet.profi.praxis JavaScript}", } @Book{Vanderburg:1997:MJ, author = "Glenn Vanderburg and others", title = "Maximum {Java} 1.1", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "xxiv + 892", year = "1997", ISBN = "1-57521-290-0", ISBN-13 = "978-1-57521-290-6", LCCN = "QA76.73.J38V369 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "99,00 DM; US\$50", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575212900.html; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, } @Book{vanderLinden:1997:JJ, author = "Peter {van der Linden}", title = "Not Just {Java}", publisher = pub-SUNSOFT, address = pub-SUNSOFT:adr, pages = "xii + 313", year = "1997", ISBN = "0-13-864638-4 (softcover)", ISBN-13 = "978-0-13-864638-7 (softcover)", LCCN = "QA76.73.J38V363 1997", bibdate = "Tue Nov 03 11:34:25 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.phptr.com/ptrbooks/ptr_0138646384.html; http://www.prenhall.com/", price = "US\$31.45", series = "SunSoft Press Java series", URL = "http://www.prenhall.com/allbooks/ptr_0138646384.html", acknowledgement = ack-nhfb, } @Book{vanderLinden:1997:JJB, author = "Peter {van der Linden}", title = "Just {Java} 1.1 and Beyond", publisher = pub-PH, address = pub-PH:adr, edition = "Third", pages = "654", month = sep, year = "1997", ISBN = "0-13-784174-4 (softcover)", ISBN-13 = "978-0-13-784174-5 (softcover)", LCCN = "????", bibdate = "Tue Nov 03 11:35:04 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.phptr.com/ptrbooks/ptr_0137841744.html; http://www.prenhall.com/", price = "US\$40.45", series = "SunSoft Press Java series", URL = "http://www.fdds.com/books/books/vanderLinden2/vanderLinden2.html; http://www.prenhall.com/ptrbooks/ptr_0137841744.html", acknowledgement = ack-nhfb, xxtitle = "Just {Java} 1.1", } @Book{vanderLinden:1997:JJS, author = "Peter {van der Linden}", title = "Just {Java}: Signature Edition", publisher = pub-PH # " and " # pub-SUNSOFT, address = pub-PH:adr # " and " # pub-SUNSOFT:adr, edition = "Second", pages = "xxxv + 538", month = nov, year = "1997", ISBN = "0-13-272303-4", ISBN-13 = "978-0-13-272303-9", LCCN = "QA76.73.J38V36 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0132723034/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", note = "Includes CD-ROM. Available in German \cite{vanderLinden:1997:JPH} and Italian \cite{vanderLinden:19xx:PJ} translations.", price = "US\$34.95", series = "Java series", URL = "http://www.prenhall.com/ptrbooks/ptr_0132723034.html; http://www.sun.com/books/books/vanderLinden2/vanderLinden2.html", acknowledgement = ack-nhfb, dimensions = "9.27in x 7.11in x 1.75in", keywords = "Java (computer program language); technology -- computers and computer technology; technology -- data processing", paperback = "yes", xxtitle = "Just {Java}", } @Book{vanderLinden:1997:JPH, author = "Peter {van der Linden}", title = "{Java pur: Hintergr{\"u}nde und Entwicklung}", publisher = pub-HEINZ-HEISE, address = pub-HEINZ-HEISE:adr, pages = "326 (or 336??)", year = "1997", ISBN = "3-88229-086-2", ISBN-13 = "978-3-88229-086-8", LCCN = "????", bibdate = "Thu Aug 14 17:40:22 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.heise.de/buch/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "German translation of \cite{vanderLinden:1997:JJS}. Includes CD-ROM.", price = "89,80 DM", URL = "http://www.emedia.de/bin/bookshop?show=4564&id=; http://www.heise.de/buch/", acknowledgement = ack-nhfb, language = "German", } @Book{vanderLinden:1997:TMG, author = "Peter {van der Linden}", title = "A Technical Manager's Guide to {Java} Computing", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "384", month = apr, year = "1997", ISBN = "0-07-066941-4", ISBN-13 = "978-0-07-066941-3", LCCN = "????", bibdate = "Fri Jan 3 17:45:45 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @Book{VanderVeer:1997:JBD, author = "Emily A. {Vander Veer}", title = "{Java Beans} For Dummies", publisher = pub-IDG, address = pub-IDG:adr, pages = "xxii + 385", year = "1997", ISBN = "0-7645-0153-4 (softcover)", ISBN-13 = "978-0-7645-0153-1 (softcover)", LCCN = "QA76.73.J38V367 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Forward by Joseph H. McIntyre. Includes CD-ROM.", price = "US\$22.49", URL = "http://www.idgbooks.com/database/book_result.msql?uid=uidg81&isbn=0-7645-0153-4", acknowledgement = ack-nhfb, xxtitle = "{JavaBeans} for Dummies", } @Book{VanderVeer:1997:JDa, author = "Emily {Vander Veer}", title = "{JavaScript} for Dummies", publisher = pub-IDG, address = pub-IDG:adr, edition = "Second", pages = "xxiv + 375", month = jul, year = "1997", ISBN = "0-7645-0223-9 (softcover)", ISBN-13 = "978-0-7645-0223-1 (softcover)", LCCN = "QA76.73.J39 V36 1997", bibdate = "Wed Dec 31 14:51:47 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$26.99", URL = "http://www.idgbooks.com/cgi-bin/db/fill_out_template.pl?idgbook:0-7645-0223-9:book-idg::uidg323", } @Book{VanderVeer:1997:JDb, author = "Emily A. {Vander Veer}", title = "{JavaScript f{\"u}r Dummies}", publisher = pub-ITCP, address = pub-ITCP:adr, pages = "400", year = "1997", ISBN = "3-8266-2742-3 (??invalid ISBN??)", ISBN-13 = "978-3-8266-2742-2 (??invalid ISBN??)", LCCN = "????", bibdate = "Thu Aug 14 17:40:22 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "50 DM", URL = "http://www.itp.de/; http://www.itp.de/dummies/2742/2742.html", acknowledgement = ack-nhfb, language = "German", } @Book{VanderVeer:1997:JDQ, author = "Emily {Vander Veer}", title = "{JavaScript} for Dummies: Quick Reference", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xiv + 210", day = "1", month = mar, year = "1997", ISBN = "0-7645-0112-7", ISBN-13 = "978-0-7645-0112-8", LCCN = "QA76.73.J38V368 1997", bibdate = "Thu Aug 21 16:30:24 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0764501127/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$12.99", acknowledgement = ack-nhfb, dimensions = "8.45in x 5.89in x 0.57in", paperback = "yes", } @Book{VanderVeer:1997:JPN, author = "Emily A. {Vander Veer}", title = "{JavaScript} pour Les Nuls", publisher = pub-SYBEX-FRANCE, address = pub-SYBEX-FRANCE:adr, pages = "????", year = "1997", ISBN = "2-7361-2375-1", ISBN-13 = "978-2-7361-2375-8", LCCN = "????", bibdate = "Thu Aug 14 18:51:01 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "French translation of \cite{VanderVeer:1997:JDQ}. Includes CD-ROM.", URL = "http://www.sybex.fr/", acknowledgement = ack-nhfb, language = "French", } @Article{vanderWal:1997:EWC, author = "R. {van der Wal}", title = "Examining {Win32 C++} compilers", journal = j-DDJ, volume = "22", number = "3", pages = "64--??, 66--68, 70, 72--73", month = mar, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6150C (Compilers, interpreters and other processors); C6140D (High level languages); C6110J (Object-oriented programming); C6180G (Graphical user interfaces)", fjournal = "Dr. Dobb's Journal of Software Tools", keywords = "Borland C++; C language; C++; graphical user interfaces; Internet; Java; languages; object-oriented; object-oriented programming; program compilers; software reviews; software tools; Symantec C++; Visual; VisualAge C++; Watcom C++; Win32 C++ compilers; Windows-based application development; World Wide Web", treatment = "P Practical; R Product Review", } @Book{VanHaecke:1997:JJD, author = "Bernard {Van Haecke}", title = "{JDBC}: {Java} Database Connectivity", publisher = pub-IDG, address = pub-IDG:adr, pages = "xix + 385", year = "1997", ISBN = "0-7645-3144-1 (softcover)", ISBN-13 = "978-0-7645-3144-6 (softcover)", LCCN = "QA76.73.J38V364 1997", bibdate = "Mon Jun 22 10:26:28 1998", bibsource = "http://www.cbtsys.com/; http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", URL = "http://www.cbtsys.com/cbt/curicula/courses/jav1110/jav1110.htm; http://www.idgbooks.com/cgi-bin/db/fill_out_template.pl?idgbook:0-7645-3144-1:book-idg::uidg1985", acknowledgement = ack-nhfb, } @Book{Vanhelsuwe:1997:BJ, author = "Laurence Vanhelsuw{\'e} and Ivan Philips and Goang-Tay Hsu", title = "La Biblia de {Java}", publisher = pub-ANAYA-MULTIMEDIA, address = pub-ANAYA-MULTIMEDIA:adr, pages = "816", month = may, year = "1997", ISBN = "84-415-0092-4", ISBN-13 = "978-84-415-0092-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.anayamultimedia.es/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Spanish translation of \cite{Vanhelsuwe:1997:MJa}.", price = "5,995 Ptas.", URL = "http://www.anayamultimedia.es/; http://www.anayamultimedia.es/cgi-multi/notas_prensa.pl?2310120&3&0&1", acknowledgement = ack-nhfb, language = "Spanish", } @Article{Vanhelsuwe:1997:BRJ, author = "Laurence Vanhelsuw{\'e}", title = "Book Review: The {Java} {Threads} {API} makes it to print media", journal = j-JAVAWORLD, volume = "2", number = "7", pages = "??--??", month = jul, year = "1997", CODEN = "????", ISSN = "1091-8906", bibdate = "Thu Aug 13 14:52:27 1998", bibsource = "http://www.javaworld.com/javaworld/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.javaworld.com/javaworld/jw-07-1997/jw-07-threads.htm", acknowledgement = ack-nhfb, } @Article{Vanhelsuwe:1997:CSC, author = "Laurence Vanhelsuw{\'e}", title = "Cover Story: Create your own supercomputer with {Java}", journal = j-JAVAWORLD, volume = "2", number = "1", month = jan, year = "1997", CODEN = "????", ISSN = "1091-8906", bibdate = "Thu Aug 13 10:32:52 1998", bibsource = "http://www.javaworld.com/javaworld/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.javaworld.com/javaworld/jw-01-1997/jw-01-dampp.htm", acknowledgement = ack-nhfb, } @Book{Vanhelsuwe:1997:MJa, author = "Laurence Vanhelsuw{\'e} and Ivan Phillips and Goang-Tay Hsu and Krishna Sankar", title = "Mastering {Java} 1.1", publisher = pub-SYBEX, address = pub-SYBEX:adr, edition = "Second", pages = "xxxv + 1049", month = apr, year = "1997", ISBN = "0-7821-2070-9", ISBN-13 = "978-0-7821-2070-7", LCCN = "QA76.73.J38M37 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0782120709/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.com/", price = "US\$49.99", URL = "http://www.sybex.com/cgi-bin/bookpg.pl?2070back.html", acknowledgement = ack-nhfb, dimensions = "9.02in x 7.55in x 2.17in", } @Book{Vanhelsuwe:1997:MJb, author = "Laurence Vanhelsuw{\'e}", title = "Mastering {JavaBeans}", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xxx + 799", month = may, year = "1997", ISBN = "0-7821-2097-0", ISBN-13 = "978-0-7821-2097-4", LCCN = "QA76.73.J38V374 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.com/", note = "Includes CD-ROM.", price = "US\$49.99", URL = "http://www.sybex.com/cgi-bin/bookpg.pl?2097back.html", acknowledgement = ack-nhfb, } @Book{vanHoff:1997:HJa, author = "Arthur {van Hoff} and Sami Shaio and Orca Starbuck", title = "Hooked on {Java}", publisher = pub-AW, address = pub-AW:adr, pages = "????", year = "1997", ISBN = "4-7952-9677-4", ISBN-13 = "978-4-7952-9677-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/japanese.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Japanese translation.", price = "????", URL = "http://www.javasoft.com/people/avh/", acknowledgement = ack-nhfb, language = "Japanese", } @Article{vanReeuwijk:1997:SPL, author = "Kees van Reeuwijk and Arjan J. C. van Gemund and Henk J. Sips", title = "{Spar}: {A} programming language for semi-automatic compilation of parallel programs", journal = j-CPE, volume = "9", number = "11", pages = "1193--1205", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13818; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13818&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Varhol:1997:PW, author = "P. Varhol", title = "Purveyor for {Windows 95}", journal = j-WEB-TECHNIQUES, volume = "2", number = "1", pages = "71--73", month = jan, year = "1997", CODEN = "WETEFA", ISSN = "1086-556X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7210 (Information services and centres); C6150N (Distributed systems software); C6130D (Document processing techniques); C5620L (Local area networks); C5620W (Other computer networks); C5640 (Protocols)", fjournal = "Web Techniques", keywords = "access privileges; CGI protocol; databases; desktop publishing; desktop Web; file downloading; file servers; FTP; Gopher; group creation; hit tracking; HTTP; Internet; Java applets; local area; management; networks; operating system services; Process Software Purveyor for Windows 95; server; software reviews; system administration tools; text information access; transport protocols; Web page; Web page display; Web-based access", treatment = "P Practical; R Product Review", } @Book{Various:1997:JTO, author = "Various", title = "{Java} 1.1 Tutto \& Oltre", publisher = pub-APOGEO, address = pub-APOGEO:adr, month = nov, year = "1997", ISBN = "88-7303-375-X", ISBN-13 = "978-88-7303-375-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.apogeonline.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "88,000 L.", URL = "http://www.apogeonline.com/catalogo/375.html", acknowledgement = ack-nhfb, language = "Italian", } @Book{Venners:1997:IJV, author = "Bill Venners", title = "Inside the {Java} Virtual Machine", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "384", month = nov, year = "1997", ISBN = "0-07-913248-0", ISBN-13 = "978-0-07-913248-2", LCCN = "QA76.73.J38 V46 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$39.95", URL = "http://mcgraw-hill.inforonics.com/cgi/getarec?mgh31406%comp", acknowledgement = ack-nhfb, } @Article{Venners:1997:UHH, author = "Bill Venners", title = "Under the Hood: How the {Java} virtual machine performs thread synchronization", journal = j-JAVAWORLD, volume = "2", number = "7", pages = "??--??", month = jul, year = "1997", CODEN = "????", ISSN = "1091-8906", bibdate = "Thu Aug 13 14:52:27 1998", bibsource = "http://www.javaworld.com/javaworld/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.javaworld.com/javaworld/jw-07-1997/jw-07-hood.htm", acknowledgement = ack-nhfb, } @Article{Vermeulen:1997:JDW, author = "Alaln Vermeulen", title = "{Java} Deadlock: The woes of multithreaded design", journal = j-DDJ, volume = "22", number = "9", pages = "52, 54--56, 88, 89", month = sep, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Mon Aug 11 12:53:44 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Vijayan:1997:SGJ, author = "Jaikumar Vijayan", title = "{Solaris} gets {Java} jolt", journal = j-COMPUTERWORLD, volume = "31", number = "23", pages = "3--3", day = "9", month = jun, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Jun 27 08:25:01 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Vijayan:1997:SOS, author = "Jaikumar Vijayan", title = "Sun offers {Solaris} cafeteria", journal = j-COMPUTERWORLD, volume = "31", number = "25", pages = "61--62", day = "23", month = jun, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri Jun 27 09:54:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Vogel:1997:JPC, author = "Andreas Vogel and Keith Duddy", title = "{Java} Programming With {CORBA}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xvi + 425", day = "1", month = mar, year = "1997", ISBN = "0-471-17986-8", ISBN-13 = "978-0-471-17986-3", LCCN = "QA76.73.J38V64 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0471179868/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$29.99", URL = "http://www.wiley.com/compbooks/catalog/17986-8.htm", acknowledgement = ack-nhfb, dimensions = "9.24in x 7.52in x 1.01in", paperback = "yes", } @Article{Wagner:1997:BIL, author = "Mitch Wagner", title = "Button-down {IBM} loosens up for {Java}", journal = j-COMPUTERWORLD, volume = "31", number = "19", pages = "12--12", day = "12", month = may, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Fri May 16 09:46:12 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Book{Wagner:1997:JU, author = "Richard Wagner and others", title = "{Javascript} Unleashed", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, edition = "Second", pages = "xxxii + 1014", year = "1997", ISBN = "1-57521-306-0", ISBN-13 = "978-1-57521-306-4", LCCN = "QA76.73.J39W33 1997", bibdate = "Tue Aug 19 10:58:53 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "99,00 DM", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/15752/bud/1575213060.html; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, } @Article{Wagner:1997:SWT, author = "Mitch Wagner", title = "{SourceCraft Web} tool combines {Java}, {HTML}", journal = j-COMPUTERWORLD, volume = "31", number = "6", pages = "51, 53", day = "10", month = feb, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Mon Feb 24 10:52:23 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Unpublished{Waldo:1997:DCJ, author = "Jim Waldo and Ann Wollrath", title = "Distributed Computing with {Java} Remote Method Invocation", year = "1997", bibdate = "Wed Aug 13 09:18:33 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Tutorial session at \cite{USENIX:1997:TUC}.", URL = "http://dxsting.cern.ch/sting/COOTS97.html", acknowledgement = ack-nhfb, } @Article{Waldo:1997:III, author = "J. Waldo", title = "Interface and implementation. {II}", journal = j-UNIX-REVIEW, volume = "15", number = "2", pages = "71--74", month = feb, year = "1997", CODEN = "UNRED5", ISSN = "0742-3136", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6140D (High level languages); C6120 (File organisation)", fjournal = "UNIX review", keywords = "abstract data types; interface; Java; object behaviour; object oriented language; object oriented programming; object-; object-oriented languages; oriented programming; shared interface; type", treatment = "P Practical", } @Book{Wall:1997:DVC, author = "David A. Wall and Arthur Griffith", title = "Discover {Visual Caf{\'e}}", publisher = pub-IDG, address = pub-IDG:adr, pages = "xxviii + 416", year = "1997", ISBN = "0-7645-3062-3", ISBN-13 = "978-0-7645-3062-3", LCCN = "QA76.73.J38W34 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$25", URL = "http://www.idgbooks.com/database/book_result.msql?isbn=0-7645-3062-3", acknowledgement = ack-nhfb, url-author = "http://www.idgbooks.com/database/author\_search\_result.msql?uid=$uid\&name=\&id=220", url-publisher = "http://www.idgbooks.com/", } @Book{Wall:1997:IJA, author = "David A. Wall and Arthur Griffith", title = "101 Instant {Java} Applets", publisher = pub-IDG, address = pub-IDG:adr, pages = "????", month = may, year = "1997", ISBN = "0-7645-3082-8 (softcover)", ISBN-13 = "978-0-7645-3082-1 (softcover)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$26.99", acknowledgement = ack-nhfb, xxtitle = "101 Freeze-Dried {Java} Applets", } @Article{Wallach:1997:ESA, author = "Dan S. Wallach and Dirk Balfanz and Drew Dean and Edward W. Felten", title = "Extensible security architectures for {Java}", journal = j-OPER-SYS-REV, volume = "31", number = "5", pages = "116--128", month = dec, year = "1997", CODEN = "OSRED8", ISSN = "0163-5980", ISSN-L = "0163-5980", bibdate = "Sat Aug 26 08:55:55 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Operating Systems Review", } @Book{Walnum:1997:PDG, author = "Clayton Walnum", title = "Professional Developer's Guide {Java}", publisher = pub-QUE, address = pub-QUE:adr, pages = "????", year = "1997", ISBN = "0-7897-1168-0", ISBN-13 = "978-0-7897-1168-7", LCCN = "????", bibdate = "Tue Aug 19 11:05:20 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "99,00 DM", URL = "http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, xxnote = "Duplicate ISBN with \cite{Kassabgi:1997:PDG}. Library of Congress has title: Working with JavaBeans, and author: Roger Jennings??", } @Book{Walnum:1997:SEU, author = "Clayton Walnum", title = "Special Edition Using {Java} Development Tools", publisher = pub-QUE, address = pub-QUE:adr, pages = "????", year = "1997", ISBN = "0-7897-1317-9", ISBN-13 = "978-0-7897-1317-9", LCCN = "????", bibdate = "Mon Jun 22 09:48:10 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "99,00 DM; US\$50", URL = "http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, } @Book{Walsh:1997:JB, author = "Aaron Walsh", title = "{Java} Bible", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "960", year = "1997", ISBN = "0-7645-8030-2", ISBN-13 = "978-0-7645-8030-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0764580302/wholesaleproductA/; http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", URL = "http://www.idgbooks.com/database/book_result.msql?uid=uidg323&isbn=0-7645-8030-2", acknowledgement = ack-nhfb, paperback = "yes", } @Book{Walsh:1997:JDa, author = "Aaron E. Walsh", title = "{Java} for Dummies", publisher = pub-IDG, address = pub-IDG:adr, edition = "Second", pages = "xx + 373", month = may, year = "1997", ISBN = "0-7645-0140-2 (softcover)", ISBN-13 = "978-0-7645-0140-1 (softcover)", LCCN = "QA76.73.J38W36 1997", bibdate = "Mon Jun 22 16:51:35 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$22.49", URL = "http://www.idgbooks.com/database/book_result.msql?uid=uidg323&isbn=0-7645-0140-2", acknowledgement = ack-nhfb, } @Book{Walsh:1997:JDb, author = "Aaron Walsh", title = "{Java f{\"u}r Dummies}", publisher = pub-ITCP, address = pub-ITCP:adr, pages = "382", year = "1997", ISBN = "3-8266-2716-4 (??invalid ISBN??)", ISBN-13 = "978-3-8266-2716-3 (??invalid ISBN??)", LCCN = "????", bibdate = "Tue Mar 03 09:58:26 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "50 DM", URL = "http://www.itp.de/", acknowledgement = ack-nhfb, language = "German", } @Article{Walworth:1997:JGT, author = "Alan Walworth", title = "{Java GUI} Testing", journal = j-DDJ, volume = "22", number = "2", pages = "30, 32, 34", month = feb, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming); C6180G (Graphical user interfaces); C6150G (Diagnostic, testing, debugging and evaluating systems)", fjournal = "Dr. Dobb's Journal of Software Tools", keywords = "development; graphical user interfaces; GUI applications; Java; Java GUI software; Java GUI testing; Java GUI testing issues; Java oriented testing tools; language; object oriented; object oriented programming; object-; object-oriented languages; oriented programming; program testing", treatment = "P Practical", } @Article{Warner:1997:JSP, author = "Simeon Warner and Simon Catterall and Edward Lipson", title = "{Java} simulations for physics education", journal = j-CPE, volume = "9", number = "6", pages = "477--484", month = jun, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:32 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13872; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13872&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Watson:1997:IJA, author = "Mark Watson", title = "Intelligent {Java} Applications for the Internet and Intranets", publisher = pub-MORGAN-KAUFMANN, address = pub-MORGAN-KAUFMANN:adr, pages = "xx + 377", month = mar, year = "1997", ISBN = "1-55860-420-0", ISBN-13 = "978-1-55860-420-9", LCCN = "QA76.73.J38W38 1997", bibdate = "Mon Jun 22 10:49:54 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mkp.com/", price = "US\$39.95", URL = "http://www.mkp.com/books_catalog/1-55860-420-0.asp", acknowledgement = ack-nhfb, keywords = "(computer network); internet; Java (computer program language); technology -- computers and computer technology", } @Book{Watson:1997:JCR, author = "Mark Watson", title = "Creating {JavaBeans}?: Components for Distributed Applications", publisher = pub-MORGAN-KAUFMANN, address = pub-MORGAN-KAUFMANN:adr, pages = "xvii + 238", year = "1997", ISBN = "1-55860-476-6", ISBN-13 = "978-1-55860-476-6", LCCN = "QA76.73.J38W37 1998", bibdate = "Mon Jun 22 10:33:45 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mkp.com/", price = "US\$30", URL = "http://www.mkp.com/books_catalog/1-55860-476-6.asp", acknowledgement = ack-nhfb, url-author = "http://www.markwatson.com/", url-publisher = "http://www.mkp.com/", xxtitle = "{JavaBeans}: Creating Reusable Components for Distributed Applications", } @Book{Wayner:1997:JJP, author = "Peter Wayner", title = "{Java} and {JavaScript} Programming", publisher = pub-AP-PROFESSIONAL, address = pub-AP-PROFESSIONAL:adr, pages = "x + 335", year = "1997", ISBN = "0-12-738769-2", ISBN-13 = "978-0-12-738769-7", LCCN = "QA76.73.J38W39 1996", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0127387692/wholesaleproductA/; http://www.apnet.com/approfessional/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.95", URL = "http://www.apcatalog.com/cgi-bin/AP?ISBN=0-12-738769-2&LOCATION=US&FORM=FORM2; http://www.apnet.com/", acknowledgement = ack-nhfb, dimensions = "9.22in x 7.33in x 0.90in", keywords = "Java (Computer program language); JavaScript (Computer program language); technology -- computers and computer technology", paperback = "yes", } @Article{Wayner:1997:NCE, author = "Peter Wayner", title = "{Novera} Composes {Epic} for {Java}", journal = j-BYTE, volume = "22", number = "7", pages = "122--123", month = jul, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Fri Jun 27 08:37:54 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @MastersThesis{Weakley:1997:IAW, author = "William R. Weakley", title = "Interactive authoring on the {Web}: an {HTML} tutorial using {JavaScript}", type = "Thesis (M.A.)", school = "Illinois State University", address = "Springfield, IL, USA", pages = "iv + 93", year = "1997", bibdate = "Fri Sep 11 08:29:11 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "HTML (Document markup language); JavaScript (Computer program language); Web sites -- Authoring programs; World Wide Web (Information retrieval system)", } @Article{Weatherford:1997:MVI, author = "M. Weatherford", title = "Micro View: {IBM} bets on {JavaBeans}", journal = j-IEEE-MICRO, volume = "17", number = "3", pages = "80--??", month = may # "\slash " # jun, year = "1997", CODEN = "IEMIDZ", ISSN = "0272-1732 (print), 1937-4143 (electronic)", ISSN-L = "0272-1732", bibdate = "Thu Dec 14 06:08:58 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; Science Citation Index database (1980--2000)", URL = "http://pascal.computer.org/mi/books/mi1997/pdf/m3080.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Micro", } @Book{Weaver:1997:IJW, author = "Lynn Weaver and Bob Jervis", title = "Inside {Java Workshop}", publisher = pub-PH, address = pub-PH:adr, pages = "xxvi + 267", year = "1997", ISBN = "0-13-858234-3", ISBN-13 = "978-0-13-858234-0", LCCN = "QA76.73.J38W398 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0138582343/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$39.95", URL = "http://www.sun.com/smi/ssoftpress/books/Weaver/Weaver.html", acknowledgement = ack-nhfb, dimensions = "9.30in x 7.06in x 0.95in", paperback = "yes", } @Book{Weber:1997:SEU, author = "Joe Weber and David Baker and Joe Carpenter and Jamie Costa and Anil Hemrajani and Joseph Weber", title = "Special Edition Using {Java} 1.1", publisher = pub-QUE, address = pub-QUE:adr, edition = "Third", pages = "xlix + 1234", year = "1997", ISBN = "0-7897-1094-3", ISBN-13 = "978-0-7897-1094-9", LCCN = "QA76.73.J38W4 1997", bibdate = "Mon Jun 22 10:34:11 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.amazon.com/exec/obidos/ISBN=0789710943/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/07897/bud/0789710943.html", acknowledgement = ack-nhfb, dimensions = "9.10in x 7.35in x 2.17in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", xxtitle = "Special Edition Using {Java} 1.1", } @Article{Webster:1997:IDW, author = "John S. Webster", title = "{Insignia} Delivers {Windows} to {Java} Desktops", journal = j-SUNEXPERT, volume = "8", number = "4", pages = "21--22", month = apr, year = "1997", ISSN = "1053-9239", bibdate = "Fri Apr 18 07:57:10 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Describes NTrigue Client for Java.", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Webster:1997:JAJ, author = "John S. Webster", title = "{Java 3D} Adds to {Java}'s {CAD} Utility", journal = j-SUNEXPERT, volume = "8", number = "5", pages = "48--48", month = may, year = "1997", ISSN = "1053-9239", bibdate = "Thu May 15 07:26:42 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Webster:1997:JGDa, author = "John S. Webster", title = "{JavaSoft} Gives Developers Compatibility Tests", journal = j-SUNEXPERT, volume = "8", number = "3", pages = "16, 18, 20, 22", month = mar, year = "1997", ISSN = "1053-9239", bibdate = "Tue Mar 18 07:19:56 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunExpert Magazine", } @Article{Webster:1997:JGDb, author = "John S. Webster", title = "{JavaSoft} Gives Developers Compatibility Tests", journal = j-WEBSERVER, volume = "2", number = "2", pages = "11--12", month = mar, year = "1997", ISSN = "1087-4232", bibdate = "Mon Mar 10 22:02:39 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Book{Weiss:1997:CIG, author = "Aaron Weiss", title = "The Complete Idiot's Guide to {JavaScript}", publisher = pub-QUE, address = pub-QUE:adr, edition = "Second", pages = "xx + 316", month = feb, year = "1997", ISBN = "0-7897-1136-2", ISBN-13 = "978-0-7897-1136-6", LCCN = "QA76.73.J39W45 1997", bibdate = "Mon Jun 22 10:34:58 1998", bibsource = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/07897/bud/0789711362.html; http://www.amazon.com/exec/obidos/ISBN=0789711362/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$19.99", acknowledgement = ack-nhfb, dimensions = "9.01in x 7.37in x 0.86in", paperback = "yes", } @Book{Weiss:1997:JF, author = "Aaron Weiss", title = "{JavaScript} !`{F}{\'a}cil!", publisher = pub-PH-HISPANOAMERICANA, address = pub-PH-HISPANOAMERICANA:adr, pages = "320", year = "1997", ISBN = "968-880-975-6", ISBN-13 = "978-968-880-975-4", LCCN = "????", bibdate = "Mon Aug 18 12:58:22 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Spanish translation of \cite{Weiss:1997:CIG}.", URL = "http://prentice.com.mx/; http://prentice.com.mx/libros/javascfac.html", acknowledgement = ack-nhfb, language = "Spanish", } @Article{Welch:1997:LEI, author = "Peter Welch", title = "Letters to the Editor: Ignore the Monitor Methods!", journal = j-COMPUTER, volume = "30", number = "7", pages = "7, 9", month = jul, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Wed Aug 13 09:51:45 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Comments on \cite{Lewis:1997:BCI}, and raises concerns about the inadequacy of the Java threads model, and points to \path=http://www.cs.bris.ac.uk/~alan/javappp.html= as a source for Java classes implementing C. A. R. Hoare's Communicating Sequential Processes. See also \cite{Olsen:1997:LWJ}.", fjournal = "Computer", } @Article{Welter:1997:SSJ, author = "Pete Welter and John Meier", title = "Server-Side {Java}", journal = j-SYS-ADMIN, volume = "6", number = "8", pages = "41, 43, 45--47, 49--51", month = aug, year = "1997", CODEN = "BYTEDJ", ISSN = "0360-5280", bibdate = "Fri Jul 18 09:41:06 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Sys admin: the journal for UNIX system administrators", } @Article{West:1997:SAW, author = "R. Webster West and R. Todd Ogden", title = "Statistical Analysis with {Webstat}, {Java} applet for the {World Wide Web}", journal = j-J-STAT-SOFT, volume = "2", number = "3", pages = "1--7", year = "1997", CODEN = "JSSOBK", ISSN = "1548-7660", bibdate = "Sun Nov 17 22:35:43 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.jstatsoft.org/v02/i03; http://www.jstatsoft.org/v02/i03/HTML/; http://www.jstatsoft.org/v02/i03/updates; http://www.jstatsoft.org/v02/i03/webstat.pdf; http://www.jstatsoft.org/v02/i03/webstat.ps", acknowledgement = ack-nhfb, fjournal = "Journal of Statistical Software", } @Article{Westmacott:1997:WJE, author = "Ian Westmacott", title = "{WebAdmin}: {JavaScript}: An Example", journal = j-WEBSERVER, volume = "2", number = "2", pages = "14--16, 18", month = mar, year = "1997", ISSN = "1087-4232", bibdate = "Mon Mar 10 22:05:12 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "WebServer Magazine: For Managers of World Wide Web Sites", } @Book{Westphal:1997:LNS, author = "Mario Westphal", title = "{Lernen Sie in nur 16 Stunden Visual J++}", publisher = pub-TEWI, address = pub-TEWI:adr, pages = "288", year = "1997", ISBN = "3-89362-496-1", ISBN-13 = "978-3-89362-496-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.tewi.de/", price = "39 DM", URL = "http://www.tewi.de/scripts/search/details_ISBN.idc?ISBN=3-89362-496-1", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.tewi.de/", xxtitle = "{Visual J++} in 16 Stunden", } @Article{Wheeler:1997:ACC, author = "David A. Wheeler", title = "{Ada}, {C}, {C++}, and {Java} vs. {The Steelman}", journal = j-SIGADA-LETTERS, volume = "17", number = "4", pages = "88--112", month = jul # "\slash " # aug, year = "1997", CODEN = "AALEE5", ISSN = "0736-721X", ISSN-L = "0736-721X", bibdate = "Thu Aug 07 14:31:54 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGADA Ada Letters", } @Book{White:1997:CJ, author = "Conor White", title = "From {C} to {Java}", publisher = pub-DP, address = pub-DP:adr, pages = "????", month = apr, year = "1997", ISBN = "1-55558-169-2 (softcover)", ISBN-13 = "978-1-55558-169-5 (softcover)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.butterworth.heinemann.co.uk/register/digital/navigus/index.htm; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @Book{White:1997:SEU, author = "Barbara White and others", title = "Special Edition Using {Java Beans}", publisher = pub-QUE, address = pub-QUE:adr, pages = "????", year = "1997", ISBN = "0-7897-1460-4", ISBN-13 = "978-0-7897-1460-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "99,00 DM; US\$50", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/07897/bud/0789714604.html; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, } @Article{White:1997:UA, author = "I. White", title = "Understanding the {AWT}", journal = j-OBJECT-EXPERT, volume = "2", number = "3", pages = "14--17", month = mar # "-" # apr, year = "1997", CODEN = "OBEXFJ", ISSN = "1360-3426", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6115 (Programming support); C6110B (Software engineering techniques); C6180G (Graphical user interfaces)", countrypub = "UK", fjournal = "Object Expert", keywords = "abstract windowing toolkit; AWT; future; graphical user interfaces; Java.awt; object-; object-oriented languages; oriented programming; requirements; reusability; reusable object-oriented software design; software; software portability; software tools", treatment = "P Practical", } @Article{Widom:1997:LES, author = "Allan Widom and Steen Lehmann", title = "Letters to the Editor: {Swaine} on {Java}", journal = j-DDJ, volume = "22", number = "4", pages = "10, 12", month = apr, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Mar 13 07:51:58 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Wiedling:1997:JG, author = "H.-P. Wiedling", title = "{Java ohne Geheimnis}", publisher = pub-HEINZ-HEISE, address = pub-HEINZ-HEISE:adr, pages = "164", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 11:09:13 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "39,80 DM", URL = "http://www.emedia.de/bin/bookshop?show=4862&id=", acknowledgement = ack-nhfb, } @Book{Wigglesworth:1997:OJP, author = "Joe Wigglesworth and Paula Lumby", title = "Official {Java} Programmer Certification Training: Moving from {C++} to {Java}", publisher = pub-ITCP, address = pub-ITCP:adr, month = dec, year = "1997", ISBN = "1-85032-922-2", ISBN-13 = "978-1-85032-922-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.thomson.com/intlitcp.html", price = "US\$55", acknowledgement = ack-nhfb, } @Book{Wilkinson:1997:DJA, author = "Bill Wilkinson", title = "Developing {Java} and {ActiveX} Business Applications: Using Supercede for Cutting Edge {Web} Development", publisher = pub-OSBORNE, address = pub-OSBORNE:adr, pages = "????", month = jun, year = "1997", ISBN = "0-07-882342-0 (softcover)", ISBN-13 = "978-0-07-882342-8 (softcover)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.osborne.com/", note = "Publication cancelled.", price = "US\$31.49", acknowledgement = ack-nhfb, xxnote = "Library of Congress has Tittel, Ed. Discover Java for this ISBN.", } @Book{Williamson:1997:JDP, author = "Alan (Alan R.) Williamson and Ceri Moran", title = "{Java} database programming: servlets and {JDBC}", publisher = pub-PH, address = pub-PH:adr, pages = "????", year = "1997", ISBN = "0-13-737917-X (paperback)", ISBN-13 = "978-0-13-737917-0 (paperback)", LCCN = "QA76.73.J38W55 1997", bibdate = "Tue Aug 12 15:33:48 MDT 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhalll.com/", price = "US\$50", URL = "http://www.prenhall.com/ptrbooks/ptr_013737917x.html", acknowledgement = ack-nhfb, keywords = "Database design; Internet programming; Java (Computer program language)", } @Book{Williamson:1997:SEU, author = "Alan Williamson", title = "Special Edition Using {Java} Servlet {API}", publisher = pub-QUE, address = pub-QUE:adr, pages = "????", year = "1997", ISBN = "0-7897-1319-5", ISBN-13 = "978-0-7897-1319-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "99,00 DM; US\$50", URL = "http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/que/", xxtitle = "Special Edition Using {Java} Server {API}", } @Article{Wilson:1997:BFY, author = "Gregory V. Wilson", title = "Bookshelf: First-Year {C++} Text Outdated by {Java}: {{\em Programming with Class: A C++ Introduction}}. The Craft of Software Testing. Operating Systems. Executive Guide to Preventing {IT} Disasters. Managing a Programming Project-Processes and People", journal = j-IEEE-SOFTWARE, volume = "14", number = "3", pages = "122--124", month = may # "\slash " # jun, year = "1997", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/MS.1997.589251", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "IEEE Software", } @Article{Wilson:1997:IGS, author = "A. Wilson", title = "An {Internet} game server in {Java}", journal = j-WEB-TECHNIQUES, volume = "2", number = "3", pages = "32--37", month = mar, year = "1997", CODEN = "WETEFA", ISSN = "1086-556X", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7830D (Computer games); C6150N (Distributed systems software); C6140D (High level languages); C6110J (Object-oriented programming)", corpsource = "NuMega Technol., Nashua, NH, USA", fjournal = "Web Techniques", keywords = "client server system; client-server systems; computer games; computer network; data; development; game code; Internet; Internet game server; Java; management; multiplayer games; network management; object-; object-oriented languages; object-oriented programming; Odds of Survival; oriented programming; simulation", treatment = "P Practical", } @Article{Wilson:1997:JNM, author = "Andrew Wilson", title = "The {Java Native Method Interface} and {Windows}", journal = j-DDJ, volume = "22", number = "8", pages = "46, 48--50, 94", month = aug, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Jun 28 10:53:54 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "The JDK 1.1 implements a native calling convention --- the Java Native Method Interface (JNI) --- that makes it possible to do more than just convert types between Java and C++.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Wilson:1997:PBA, author = "Gregory V. Wilson", title = "Programmer's Bookshelf: From {ActiveX} to Cargo-Cult Science", journal = j-DDJ, volume = "22", number = "9", pages = "117--119", month = sep, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Mon Aug 11 12:53:44 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Contains brief book reviews of \cite{Appel:1997:MCI,Coad:1997:JDBa}.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Wilson:1997:PBM, author = "Gregory V. Wilson", title = "Programmer's Bookshelf", journal = j-DDJ, volume = "22", number = "3", pages = "117--??", month = mar, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Mar 7 11:01:56 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "This month, Greg examines Steve McConnell's Rapid Development and Graphic Java: Mastering the AWT by David M. Geary and Alan McClellan.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Wilson:1997:PBMa, author = "Gregory V. Wilson", title = "Programmer's Bookshelf", journal = j-DDJ, volume = "22", number = "3", pages = "117--??", month = mar, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Mar 7 11:01:56 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "This month, Greg examines Steve McConnell's Rapid Development and Graphic Java: Mastering the AWT by David M. Geary and Alan McClellan.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Winsor:1997:JJ, author = "Janice Winsor and Brian Freeman", title = "Jumping {Javascript}", publisher = pub-PH # " and " # pub-SUNSOFT, address = pub-PH:adr # " and " # pub-SUNSOFT:adr, pages = "xl + 1173", year = "1997", ISBN = "0-13-841941-8", ISBN-13 = "978-0-13-841941-7", LCCN = "QA76.73.J39 W56 1997", bibdate = "Tue Nov 03 11:36:28 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0138419418/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.phptr.com/ptrbooks/ptr_0138419418.html; http://www.sun.com/books/catalog/howard/", note = "Includes CD-ROM.", price = "US\$34.95", series = "SunSoft Press Java series", acknowledgement = ack-nhfb, paperback = "yes", } @Book{Winters:1997:AVJ, author = "Patrick Winters and Laura Lemay", title = "Aprendiendo {Visual J++} en 21 Dias", publisher = pub-PH-HISPANOAMERICANA, address = pub-PH-HISPANOAMERICANA:adr, pages = "584", year = "1997", ISBN = "968-880-884-9", ISBN-13 = "978-968-880-884-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prentice.com.mx/; http://wwwiz.com/books/european.html", note = "Spanish translation of \cite{Winters:1996:TYV}.", price = "????", URL = "http://prentice.com.mx/; http://prentice.com.mx/libros/visualj.html", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Winters:1997:TYV, author = "Patrick Winters and Charles Perkins and Laura Lemay", title = "Teach Yourself {Visual J++} In 21 Days", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, edition = "Second", pages = "????", year = "1997", ISBN = "1-57521-244-7", ISBN-13 = "978-1-57521-244-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/", } @Book{Winters:1997:VJT, author = "Patrick Winters and others", title = "{Visual J++ in 21 Tagen: Java-Programmierung in Microsofts neuer Entwicklungsumgebung}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, year = "1997", ISBN = "3-87791-896-4", ISBN-13 = "978-3-87791-896-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "90 DM", URL = "http://www.mut.ch/html/buchinfo.htx?&x_pp=dJgxRqA9wlAYNijX&x_az=10&x_pk=VpLvjnsx7b5V&x_pa=B&x_pr=oS&x_bestell=21158SAN&x_stichwort=Winters&x_sprache=A&x_start=1&x_gefunden=1&x_query=&x_lastpage=buchfund&x_soft=&x_suchewo=A", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.mut.ch/", } @Book{Wiseman:1997:HJ, author = "Raymond Wiseman", title = "{HTML und Java}", publisher = pub-SYBEX-VERLAG, address = pub-SYBEX-VERLAG:adr, pages = "300", year = "1997", ISBN = "3-8155-7509-5", ISBN-13 = "978-3-8155-7509-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.de/", note = "Includes CD-ROM.", price = "20 DM", URL = "http://www.sybex.de/", acknowledgement = ack-nhfb, language = "German", } @Book{Withers:1997:DJE, author = "John Withers", title = "Developing {Java} Entertainment Applets", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "vii + 392", month = mar, year = "1997", ISBN = "0-471-16506-9", ISBN-13 = "978-0-471-16506-4", LCCN = "96-049129", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0471165069/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$29.95", URL = "http://www.wiley.com/compbooks/catalog/16506-9.htm", acknowledgement = ack-nhfb, dimensions = "9.19in x 7.48in x 0.93in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", } @Article{Woehr:1997:CWK, author = "Jack Woehr", title = "A Conversation with {William Kahan}: How important is numerical accuracy?", journal = j-DDJ, volume = "22", number = "11", pages = "18--20, 22, 24, 26, 30, 32", month = nov, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Nov 28 17:28:03 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Kahan, the father of the IEEE 754 floating-point standard, talks about floating-point arithmetic issues, and numerical deficiencies in Java.", abstract = "Noted mathematician and computer scientist William Kahan has played a central role in everything from the design of the 8087 math coprocessor to defining the ANSI\slash IEEE Standard for binary floating-point arithmetic. He takes time out of his schedule to talk with us about the current state of numeric computing.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Wolbrueck:1997:JCN, author = "David Wolbrueck", title = "{Java} compiler now available for {HP 3000}", journal = j-HP-CHRONICLE, volume = "14", number = "6", pages = "10, 15", month = may, year = "1997", ISSN = "0892-2829", bibdate = "Fri May 16 09:03:07 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://jazz.external.hp.com/src/java", acknowledgement = ack-nhfb, fjournal = "HP Chronicle", } @Article{Wollrath:1997:JCD, author = "Ann Wollrath and Jim Waldo and Roger Riggs", title = "{Java}-Centric Distributed Computing: Providing a homogeneous view of a heterogeneous group of machines", journal = j-IEEE-MICRO, volume = "17", number = "3", pages = "44--53", month = may # "\slash " # jun, year = "1997", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/40.591654", ISSN = "0272-1732 (print), 1937-4143 (electronic)", ISSN-L = "0272-1732", bibdate = "Thu Dec 14 06:08:58 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; Science Citation Index database (1980--2000)", URL = "http://pascal.computer.org/mi/books/mi1997/pdf/m3044.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Micro", } @Article{Wollrath:1997:JDC, author = "Ann Wollrath and Jim Waldo and Roger Riggs", title = "{Java}-Centric Distributed Computing: Providing a homogeneous view of a heterogeneous group of machines", journal = j-IEEE-MICRO, volume = "17", number = "3", pages = "44--53", month = may # "\slash " # jun, year = "1997", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/40.591654", ISSN = "0272-1732 (print), 1937-4143 (electronic)", ISSN-L = "0272-1732", bibdate = "Tue Aug 12 12:35:06 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://pascal.computer.org/mi/books/mi1997/pdf/m3044.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Micro", } @Article{Wong:1997:MHJ, author = "Wylie Wong", title = "{Microsoft} hones {Java} strategy: Virtual machine, class libraries are on top", journal = j-COMPUTERWORLD, volume = "31", number = "14", pages = "113--113", day = "7", month = apr, year = "1997", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Tue Apr 22 07:48:54 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ComputerWorld", } @Article{Wood:1997:GTJ, author = "Kenneth R. Wood and Tristan Richardson and Frazer Bennett and Andy Harter and Andy Hopper", title = "Global Teleporting with {Java}: Toward Ubiquitous Personalized Computing", journal = j-COMPUTER, volume = "30", number = "2", pages = "53--59", month = feb, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C7100 (Business and administration); C6180G (Graphical user interfaces); C6150N (Distributed systems software); C6140D (High level languages)", corpsource = "Olivetti and Oracle Res. Lab., Cambridge, UK", fjournal = "Computer", keywords = "applications; authoring languages; connectivity; global teleporting; graphical user interfaces; intermittent network; Internet; Java; LAN; mobile; mobile computing; object-oriented languages; Olivetti; Oracle Research Laboratory; personal computing; ubiquitous personalized computing; X Windows", treatment = "P Practical", } @Book{Wood:1997:PVJ, author = "Charles A. Wood", title = "{Programmieren in Visual J++}", publisher = pub-FRANZIS-VERLAG, address = pub-FRANZIS-VERLAG:adr, pages = "511", year = "1997", ISBN = "3-7723-7443-3", ISBN-13 = "978-3-7723-7443-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.franzis-buch.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "78 DM", URL = "http://www.franzis-buch.de/katalog/vjprogrammieren/", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.franzis-buch.de/", } @Book{Wood:1997:VJM, author = "Charles A. Wood", title = "{Visual J++} Master's Handbook", publisher = pub-PRIMA, address = pub-PRIMA:adr, pages = "????", year = "1997", ISBN = "0-7615-0819-8", ISBN-13 = "978-0-7615-0819-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.primapublishing.com/", price = "????", acknowledgement = ack-nhfb, url-publisher = "http://www.primapublishing.com/", } @Book{Wooldridge:1997:UJ, author = "Andrew Wooldridge and Mike Morgan and Rick Darnell and Jerry Honeycutt", title = "Using {JavaScript}", publisher = pub-QUE, address = pub-QUE:adr, edition = "Second", pages = "xxx + 856", day = "1", month = may, year = "1997", ISBN = "0-7897-1138-9", ISBN-13 = "978-0-7897-1138-0", LCCN = "QA76.73.J38 W664 1997", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0789711389/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", acknowledgement = ack-nhfb, dimensions = "9.05in x 7.32in x 2.14in", paperback = "yes", } @Article{Woytaszek:1997:LEQ, author = "Tom Woytaszek and Ted Lewis", title = "Letter to the Editor: Questions {Java} Answers", journal = j-COMPUTER, volume = "30", number = "4", pages = "7--7", month = apr, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Fri Apr 18 08:20:13 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Wu:1997:CSI, author = "Amy Wu", title = "Chip Shots {II}", journal = j-DDJ, volume = "22", number = "1", pages = "12--12", month = jan, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Mon Dec 02 08:05:58 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Short note about Sun's JavaChip silicon project, and the picoJava I chip.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Wu:1997:JBF, author = "D. Wu and D. Agrawai and A. {El Abbadi} and A. Singh", title = "A {Java}-Based Framework for Processing Distributed Objects", journal = j-LECT-NOTES-COMP-SCI, volume = "1331", pages = "333--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Wu:1997:JFP, author = "D. Wu and D. Agrawai and A. {El Abbadi} and A. Singh", title = "A {Java}-Based Framework for Processing Distributed Objects", journal = j-LECT-NOTES-COMP-SCI, volume = "1331", pages = "333--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Wutka:1997:HJP, author = "Mark Wutka and David Baker and David Boswell and Ken Cartwright and Da(??) Liebke", title = "Hacking {Java}: the professional's resource kit", publisher = pub-QUE, address = pub-QUE:adr, pages = "xviii + 852", year = "1997", ISBN = "0-7897-0935-X", ISBN-13 = "978-0-7897-0935-6", LCCN = "QA76.73.J38W88 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.amazon.com/exec/obidos/ISBN=078970935X/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$59.99; 119,00 DM", URL = "http://www.mcp.com/cgi-bin/bag?isbn=0-7897-0935-X&last=/bookstore; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, dimensions = "9.10in x 7.33in x 2.19in", paperback = "yes", xxtitle = "Hacking {Java}: The {Java} Professional's Resource Kit", } @Book{WWW:1997:AHS, author = "{World Wide Web Consortium}", title = "Advancing {HTML}: style and substance", volume = "2(1)", publisher = pub-ORA, address = pub-ORA:adr, pages = "vii + 246", month = "Winter", year = "1997", ISBN = "1-56592-264-6", ISBN-13 = "978-1-56592-264-8", ISSN = "1085-2298", LCCN = "????", bibdate = "Fri Sep 11 08:29:11 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = "World Wide Web journal", acknowledgement = ack-nhfb, alttitle = "Advancing hypertext markup language", annote = "``A publication of the World Wide Web Consortium.'' HTML 3.2 release specification -- Cascading style sheets level 1 - - What's new in HTML 3.2: formalizing enhancements to HTML 2.0 -- An introduction to cascading style sheets -- Guidelines for multimedia on the Web -- Usability engineering for the Web -- People with disabilities can't access the Web! -- User interfaces with HTML and JavaScript -- GIF animation -- MNG: a multiple- image format in the PNG family -- New metrics for new media: toward the development of the Web measurement standards.", keywords = "HTML (Document markup language); User interfaces (Computer systems); World Wide Web (Information retrieval system)", } @MastersThesis{Xu:1997:CSU, author = "Linghua Xu", title = "A comparative study of the use of {HTML}, {Java}, perl and {C} in the implementation of {World Wide Web} applications", type = "Thesis (M.S.)", school = "Major in Engineering/Computer Science, South Dakota State University", address = "Brookings, SD, USA", pages = "ix + 86", year = "1997", bibdate = "Fri Sep 11 08:29:11 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "C (Computer program language); HTML (Document markup language); Java (Computer program language); Perl (Computer program language); World Wide Web (Information retrieval system)", } @Article{Yates:1997:JWD, author = "Andy Yates", title = "{Java}: The Wonder Drug?", journal = j-UNIX-DEVELOPER, volume = "1", number = "1", pages = "16--17", month = jan # "\slash " # feb, year = "1997", ISSN = "1090-2279", bibdate = "Thu Jan 16 17:23:49 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "UNIX Developer", } @Article{Yoshida:1997:MDW, author = "Akitoshi Yoshida", title = "{MOWS}: Distributed {Web} and cache server in {Java}", journal = j-COMP-NET-ISDN, volume = "29", number = "8--13", pages = "965--975", day = "30", month = sep, year = "1997", CODEN = "CNISE9", ISSN = "0169-7552", ISSN-L = "0169-7552", bibdate = "Fri Sep 24 20:21:54 MDT 1999", bibsource = "http://www.elsevier.com/cgi-bin/cas/tree/store/cna/cas_free/browse/browse.cgi?year=1997&volume=29&issue=08-13; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.elsevier.com/cgi-bin/cas/tree/store/comnet/cas_sub/browse/browse.cgi?year=1997&volume=29&issue=08-13&aid=1700", acknowledgement = ack-nhfb, fjournal = "Computer Networks and ISDN Systems", } @Book{Young:1997:MMV, author = "Ted M. Young", title = "Moving from {Microsoft Visual Basic} to {Java}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "????", month = jul, year = "1997", ISBN = "0-13-839069-X", ISBN-13 = "978-0-13-839069-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=013839069X/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$39.95", acknowledgement = ack-nhfb, xxtitle = "{Visual Basic} to {Java} Developer's Resource", } @Book{Young:1997:NDG, author = "Douglas A. Young", title = "{Netscape} Developer's Guide to Plug-Ins", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "512", year = "1997", ISBN = "0-13-270992-9", ISBN-13 = "978-0-13-270992-7", LCCN = "QA76.625.Y68 1997", bibdate = "Wed Jun 17 08:43:34 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes some discussion of Java.", price = "US\$44.95", acknowledgement = ack-nhfb, } @Article{Young:1997:PBJ, author = "Warren Young", title = "Programmer's Bookshelf: {Java} Pro", journal = j-DDJ, volume = "22", number = "10", pages = "133--134", month = oct, year = "1997", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Nov 28 17:28:03 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Contains book reviews of \cite{Cornell:1997:CJa,Wutka:1997:HJP}.", abstract = "Warren examines a pair of Java programming books --- Core Java, Second Edition. by Gary Cornell and Cay Horstmann, and Hacking Java, by Mark Wutka et al.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Yourdon:1997:JJT, author = "E. Yourdon", title = "{Java} and {Java} tools", journal = j-AM-PROG, volume = "10", number = "1", pages = "2--12", month = jan, year = "1997", CODEN = "AMPRFD", ISSN = "1048-5600", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6140D (High level languages); C6110J (Object-oriented programming); C6115 (Programming support)", fjournal = "American Programmer", keywords = "application development environments; authoring languages; CASE; Internet; intranet; Java language; Java tools; object oriented language; object-oriented languages; object-oriented programming; programming; programming environments; software tools; software vendor; tools", treatment = "P Practical", } @Article{Yu:1997:JDP, author = "Weimin Yu and Alan Cox", title = "{Java\slash DSM}: {A} platform for heterogeneous computing", journal = j-CPE, volume = "9", number = "11", pages = "1213--1224", month = nov, year = "1997", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for computational science and engineering --- simulation and modeling II.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=13817; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=13817&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Zeigler:1997:OSP, author = "Bernard P. Zeigler", title = "Objects and Systems: Principled Design with Implementations in {C++} and {Java}", publisher = pub-SV, address = pub-SV:adr, pages = "xxi + 221", year = "1997", ISBN = "0-387-94781-7", ISBN-13 = "978-0-387-94781-5", LCCN = "QA76.73.C153Z45 1996", bibdate = "Mon Jun 22 10:38:32 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.springer-ny.com/", price = "US\$39.95", series = "Undergraduate texts in computer science", acknowledgement = ack-nhfb, } @Article{Zhang:1997:SCD, author = "X. Nick Zhang", title = "Secure Code Distribution", journal = j-COMPUTER, volume = "30", number = "6", pages = "76--79", month = jun, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Wed Jun 04 08:59:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses distribution security problem for Java, Safe Tcl, and Safe Perl.", acknowledgement = ack-nhfb, fjournal = "Computer", } @MastersThesis{Zhou:1997:CCJ, author = "Ling Zhou", title = "A comparison of {C++}, {Java} and {Python}", type = "Thesis (M.S.)", school = "Department of Computer Science, Texas A\&M University", address = "College Station, TX, USA", pages = "vi + 44", year = "1997", bibdate = "Thu May 21 14:06:05 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Book{Ziff-Davis:1997:LNJ, author = "{Ziff-Davis Development Group}", title = "Late Night {Java Beans} Programming", publisher = pub-ZD, address = pub-ZD:adr, pages = "????", month = apr, year = "1997", ISBN = "1-56276-531-0 (softcover)", ISBN-13 = "978-1-56276-531-6 (softcover)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/zdpress/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Publication cancelled.", price = "US\$44.99", acknowledgement = ack-nhfb, xxauthor = "Barbara White", xxtitle = "Late Night with {JavaBeans} Programming", } @Book{Zukowski:1997:BJN, author = "John Zukowski", title = "{Borland}'s {JBuilder}: No Experience Required", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xviii + 502", year = "1997", ISBN = "0-7821-2135-7", ISBN-13 = "978-0-7821-2135-3", LCCN = "QA76.73.J38Z849 1997", bibdate = "Mon Jun 22 10:39:16 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.com/", price = "US\$30", URL = "http://www.sybex.com/cgi-bin/bookpg.pl?2135back.html", acknowledgement = ack-nhfb, url-author = "http://www.ultranet.com/~jaz/", url-publisher = "http://www.sybex.com/", } @Book{Zukowski:1997:JAR, author = "John Zukowski", title = "{Java AWT} Reference", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxv + 1045", year = "1997", ISBN = "1-56592-240-9", ISBN-13 = "978-1-56592-240-2", LCCN = "QA76.73.J38 Z841 1997", bibdate = "Thu Feb 22 17:53:16 2001", bibsource = "http://www.amazon.com/exec/obidos/ISBN=1565922409/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", price = "US\$39.95", URL = "http://www.oreilly.com/catalog/javawt", acknowledgement = ack-nhfb, dimensions = "9.19in x 6.99in x 2.12in", keywords = "Java (computer program language); technology -- computers and computer technology", paperback = "yes", xxtitle = "{Java} Abstract Window Toolkit", xxtitle = "{Java} advanced windows toolkit reference", } @InProceedings{Abbott:1998:DDO, author = "Mark Abbott and Lalit Kumar Jain", title = "{DOVE}: {Distributed Objects based scientific Visualization Environment}", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/dove.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/dove.ps", acknowledgement = ack-nhfb, } @Article{Abdullahi:1998:GCI, author = "Saleh E. Abdullahi and Graem A. Ringwood", title = "Garbage Collecting the {Internet}: {A} Survey of Distributed Garbage Collection", journal = j-COMP-SURV, volume = "30", number = "3", pages = "330--373", month = sep, year = "1998", CODEN = "CMSVAN", ISSN = "0360-0300 (print), 1557-7341 (electronic)", ISSN-L = "0360-0300", bibdate = "Tue Jan 26 17:26:08 MST 1999", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/journals/surveys/1998-30-3/p330-abdullahi/", abstract = "Internet programming languages such as Java present new challenges to garbage-collection design. The spectrum of garbage-collection schema for linked structures distributed over a network are reviewed here. Distributed garbage collectors are classified first because they evolved from single-address-space collectors. This taxonomy is used as a framework to explore distribution issues: locality of action, communication overhead and indeterministic communication latency.", acknowledgement = ack-nhfb, fjournal = "ACM Computing Surveys", keywords = "languages; management; performance; reliability", subject = "{\bf C.2.4} Computer Systems Organization, COMPUTER-COMMUNICATION NETWORKS, Distributed Systems. {\bf D.1.3} Software, PROGRAMMING TECHNIQUES, Concurrent Programming. {\bf D.1.3} Software, PROGRAMMING TECHNIQUES, Concurrent Programming, Distributed programming. {\bf D.1.3} Software, PROGRAMMING TECHNIQUES, Concurrent Programming, Parallel programming. {\bf D.4.2} Software, OPERATING SYSTEMS, Storage Management. {\bf D.4.3} Software, OPERATING SYSTEMS, File Systems Management.", } @Article{Adl-Tabatabai:1998:FEC, author = "Ali-Reza Adl-Tabatabai and Micha{\l} Cierniak and Guei-Yuan Lueh and Vishesh M. Parikh and James M. Stichnoth", title = "Fast, effective code generation in a just-in-time {Java} compiler", journal = j-SIGPLAN, volume = "33", number = "5", pages = "280--290", month = may, year = "1998", CODEN = "SINODQ", ISBN = "0-89791-987-4", ISBN-13 = "978-0-89791-987-6", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:47 MST 2003", bibsource = "http://portal.acm.org/; http://www.acm.org/pubs/contents/proceedings/pldi/277650/index.html; http://www.cs.virginia.edu/pldi98/program.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/pldi/277650/p280-adl-tabatabai/; http://www.cs.virginia.edu/pldi98/program.html", acknowledgement = ack-nhfb, annote = "Published as part of the Proceedings of PLDI'98.", fjournal = "ACM SIGPLAN Notices", keywords = "algorithms; experimentation; languages; performance", subject = "{\bf D.3.4} Software, PROGRAMMING LANGUAGES, Processors, Code generation. {\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Java. {\bf D.3.4} Software, PROGRAMMING LANGUAGES, Processors, Compilers.", } @Article{Agesen:1998:GCL, author = "Ole Agesen and David Detlefs and J. Eliot B. Moss", title = "Garbage Collection and Local Variable Type-Precision and Liveness in {Java Virtual Machines}", journal = j-SIGPLAN, volume = "33", number = "5", pages = "269--279", month = may, year = "1998", CODEN = "SINODQ", ISBN = "0-89791-987-4", ISBN-13 = "978-0-89791-987-6", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:47 MST 2003", bibsource = "http://portal.acm.org/; http://www.acm.org/pubs/contents/proceedings/pldi/277650/index.html; http://www.cs.virginia.edu/pldi98/program.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/pldi/277650/p269-agesen/; http://www.cs.virginia.edu/pldi98/program.html", acknowledgement = ack-nhfb, annote = "Published as part of the Proceedings of PLDI'98.", fjournal = "ACM SIGPLAN Notices", keywords = "experimentation; measurement; performance; verification", subject = "{\bf D.3.4} Software, PROGRAMMING LANGUAGES, Processors, Memory management (garbage collection). {\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Java. {\bf F.3.3} Theory of Computation, LOGICS AND MEANINGS OF PROGRAMS, Studies of Program Constructs, Type structure.", } @InProceedings{Akarsu:1998:DJBa, author = "Erol Akarsu and Geoffrey Fox and Tomasz Haupt", title = "{DARP}: {Java}-based Data Analysis and Rapid Prototyping Environment for Distributed High Performance Computations", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/darp.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/darp.ps", acknowledgement = ack-nhfb, } @Article{Akarsu:1998:DJBb, author = "Erol Akarsu and Geoffrey Fox and Tomasz Haupt", title = "{DARP}: {Java}-based data analysis and rapid prototyping environment for distributed high performance computations", journal = j-CPE, volume = "10", number = "11--13", pages = "1097--1105", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.interscience.wiley.com/jpages/1040-3108/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050424; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050424&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Alagic:1998:OJI, author = "S. Alagic and J. Solorzano and D. Gitchell", title = "Orthogonal to the {Java} Imperative", journal = j-LECT-NOTES-COMP-SCI, volume = "1445", pages = "212--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @InProceedings{Alex:1998:TMW, author = "J. Alex and B. Vikramaditya and B. J. Nelson", title = "Teleoperated Micromanipulation within a {VRML} Environment Using {Java}", crossref = "IEEE:1998:IRI", volume = "3", pages = "1747--1752", year = "1998", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Alexandre:1998:JBP, author = "Thomas J. Alexandre", title = "A {Java}-based platform for intellectual property protection on the {World Wide Web}", journal = j-COMP-NET-ISDN, volume = "30", number = "1--7", pages = "591--593", day = "1", month = apr, year = "1998", CODEN = "CNISE9", ISSN = "0169-7552", ISSN-L = "0169-7552", bibdate = "Fri Sep 24 20:22:05 MDT 1999", bibsource = "http://www.cl.cam.ac.uk/~fapp2/steganography/bibliography; http://www.elsevier.com/cgi-bin/cas/tree/store/cna/cas_free/browse/browse.cgi?year=1998&volume=30&issue=1-7; http://www.math.utah.edu/pub/tex/bib/cryptography.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cl.cam.ac.uk/~fapp2/steganography/bibliography/072101.html; http://www.elsevier.com/cas/tree/store/comnet/sub/1998/30/1-7/1863.pdf", acknowledgement = ack-nhfb, fjournal = "Computer Networks and ISDN Systems", keywords = "information hiding; steganography", } @Book{Ammeraal:1998:CGJ, author = "L. (Leendert) Ammeraal", title = "Computer graphics for {Java} programmers", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "x + 271", year = "1998", ISBN = "0-471-98142-7 (paperback)", ISBN-13 = "978-0-471-98142-8 (paperback)", LCCN = "T385 .A488 1998", bibdate = "Wed Jun 17 15:45:37 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$50", series = "Worldwide series in computer science", URL = "http://www.wiley.com/compbooks/catalog/98142-7.htm", acknowledgement = ack-nhfb, keywords = "computer graphics", } @Book{Anderson:1998:NDG, author = "William F. Anderson", title = "{Netscape} Developer's Guide to {JavaScript 1.2}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "660", year = "1998", ISBN = "0-13-719279-7", ISBN-13 = "978-0-13-719279-3", LCCN = "QA76.73.J39A53 1998", bibdate = "Thu Sep 10 10:50:04 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0137192797/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.95", URL = "http://www.prenhall.com/allbooks/ptr_0137192797.html", acknowledgement = ack-nhfb, keywords = "(computer program); JavaScript (computer program language); Netscape; technology -- computers and computer technology", paperback = "yes", xxtitle = "Client\slash Server {JavaScript} for {Netscape} 3.0", } @Article{Andrews:1998:JPJ, author = "Dave Andrews", title = "{Java} Poison or Just {PR}?", journal = j-BYTE, volume = "23", number = "1", pages = "22--23", month = jan, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Wed Mar 11 09:04:35 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Anonymous:1998:ADV, author = "Anonymous", title = "Application Development with {VisualAge} for {Java Enterprise}", publisher = pub-IBM-REDBOOKS, address = pub-IBM-REDBOOKS:adr, month = jan, year = "1998", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.redbooks.ibm.com/", price = "????", URL = "http://www.redbooks.ibm.com/SG245081/sg245081.html", acknowledgement = ack-nhfb, } @Article{Anonymous:1998:BJN, author = "Anonymous", title = "Bookshelf: {Java} Network Security: Measuring Software Reuse: Principles, Practices, and Economic Models: {India}'s Software Industry: State Policy, Liberalisation, and Industrial Development", journal = j-IEEE-SOFTWARE, volume = "15", number = "6", pages = "124--125", month = nov # "\slash " # dec, year = "1998", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/MS.1998.731176", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Mon Jan 4 07:38:57 MST 1999", bibsource = "http://computer.org/software/so1998/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/so/books/so1998/pdf/s6124.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Software", } @Article{Anonymous:1998:BSC, author = "Anonymous", title = "{Bentley Systems} creates {Java}-based publishing tool", journal = j-SUNSERVER, volume = "12", number = "1", pages = "18--18", month = jan, year = "1998", ISSN = "1091-4986", bibdate = "Wed Jan 14 08:24:51 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1998:BSQ, author = "Anonymous", title = "Bookshelf: {SCM}: The Quick and the Cheap; Getting a Jump-Start in {Java} Network Programming; An Exceptional Look at Fault Injection", journal = j-IEEE-SOFTWARE, volume = "15", number = "5", pages = "115--118", month = sep # "\slash " # oct, year = "1998", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/MS.1998.714876", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Fri Oct 30 06:18:38 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/so/books/so1998/pdf/s5115.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Software", } @Book{Anonymous:1998:CSN, author = "Anonymous", title = "From Client\slash Server to Network Computing: {A} Migration to {Java}", publisher = pub-IBM-REDBOOKS, address = pub-IBM-REDBOOKS:adr, month = mar, year = "1998", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.redbooks.ibm.com/", price = "????", URL = "http://www.redbooks.ibm.com/SG242247/sg242247.htm", acknowledgement = ack-nhfb, } @Article{Anonymous:1998:IAF, author = "Anonymous", title = "{Innotech} adds full sentence query to its {Java} engine", journal = j-SUNSERVER, volume = "12", number = "1", pages = "20--20", month = jan, year = "1998", ISSN = "1091-4986", bibdate = "Wed Jan 14 08:24:51 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Article{Anonymous:1998:IJT, author = "Anonymous", title = "{Inprise's JBuilder}: {Take 2}", journal = j-BYTE, volume = "23", number = "7", pages = "85--??", month = jul, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Thu Dec 10 19:10:10 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "The latest iteration of this Java RAI environment has clever embellishments.", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Anonymous:1998:Jc, author = "Anonymous", title = "{Java}", publisher = pub-SOFTBANK, address = pub-SOFTBANK:adr, month = apr, year = "1998", ISBN = "4-7973-0550-9", ISBN-13 = "978-4-7973-0550-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.softbank.co.jp/softbank/publishing/", price = "3400 yen", URL = "http://www.softbank.co.jp/books/editor/2nd/java/", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Anonymous:1998:JJ, author = "Anonymous", title = "{JDBC} \& {Java}", publisher = pub-OHMSHA, address = pub-OHMSHA:adr, month = may, year = "1998", ISBN = "4-274-06260-0", ISBN-13 = "978-4-274-06260-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ohmsha.co.jp/", price = "2,900 yen", URL = "http://www.ohmsha.co.jp/data/books/contents/4-274-06260-0.htm", acknowledgement = ack-nhfb, language = "Japanese", } @Article{Anonymous:1998:JRA, author = "Anonymous", title = "{JavaSoft} Rides Again --- {A} peek at the highlights of the upcoming {JDK 1.2}", journal = j-BYTE, volume = "23", number = "4", pages = "46--??", month = apr, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Fri Apr 10 20:34:40 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Anonymous:1998:JRC, author = "Anonymous", title = "{Java}: {RMI}, {CORBA}, {JavaBeans}, {JDBC}", publisher = pub-PH, address = pub-PH:adr, month = apr, year = "1998", ISBN = "4-89471-044-7", ISBN-13 = "978-4-89471-044-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mmjp.or.jp/prentice/", price = "4,300 yen", URL = "http://www.mmjp.or.jp/prentice/washo/inet/wa_int36-j.html", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Anonymous:1998:JT, author = "Anonymous", title = "{JBuilder in Team}", publisher = pub-CARL-HANSER, address = pub-CARL-HANSER:adr, pages = "900", year = "1998", ISBN = "3-446-31121-1", ISBN-13 = "978-3-446-31121-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.hanser.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "98 DM", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.hanser.de/", } @Book{Anonymous:1998:MVJa, author = "Anonymous", title = "{Microsoft Visual J++} Programmer's Guide", publisher = pub-MICROSOFT, address = pub-MICROSOFT:adr, pages = "xxvi + 534", month = may, year = "1998", ISBN = "1-57231-869-4", ISBN-13 = "978-1-57231-869-4", LCCN = "QA76.73.J38 M534 1998", bibdate = "Wed Feb 21 06:45:44 2001", bibsource = "http://mspress.microsoft.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$28", acknowledgement = ack-nhfb, } @Book{Anonymous:1998:MVJb, author = "Anonymous", title = "{Microsoft Visual J++} Reference Library: the comprehensive official resource for {Microsoft Visual J++ 6.0}", publisher = pub-MICROSOFT, address = pub-MICROSOFT:adr, pages = "????", month = may, year = "1998", ISBN = "1-57231-872-4", ISBN-13 = "978-1-57231-872-4", LCCN = "QA76.73.J38M536 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://mspress.microsoft.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$100", acknowledgement = ack-nhfb, } @Article{Anonymous:1998:NBb, author = "Anonymous", title = "New Books: All About Those Enterprising {JavaBeans}", journal = j-COMPUTER, volume = "31", number = "3", pages = "106--106", month = mar, year = "1998", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Wed Mar 4 10:07:59 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://pdf.computer.org/co/books/co1998/pdf/r3106.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Anonymous:1998:NPE, author = "Anonymous", title = "New Products: {ENVI 3.0, Research Systems; Xbase for {Linux}, StarTech; Empress Hypermedia V2.10, Empress Software; SCREADER, Jos Lemmens; ascp0.8.2, Elumaze Nwanua; FontScope, CurveSoft; Pure Java JDBC Driver, Solid Information Technology Ltd.; QMASTER Batch \& Output Management, QMASTER Software Solutions Inc.; Babylon, SpellCaster Telecommunications Inc.; Corel Video Network Computer, Corel Computer Corp.; W3Control Filter, W3Control Inc.}", journal = j-LINUX-J, volume = "46", pages = "??--??", month = feb, year = "1998", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Fri Oct 9 08:35:26 MDT 1998", bibsource = "http://www.linuxjournal.com/issue46/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Article{Anonymous:1998:NPS, author = "Anonymous", title = "New Products: {STREAMS Data Comm Protocols, Gcom, Inc.; Raven SSL Module for {Apache}, Covalent Technologies; Java Workshop 2.0 for {Linux}, S.u.S.E.; VariCAD, VariCad LLC; Cobalt Qube Microserver, Cobalt Microserver, Inc.; Screamer 633MHz Custom Workstations, Microway; NetTracker Proxy 3.5, Sane Solutions LLC}", journal = j-LINUX-J, volume = "51", pages = "??--??", month = jul, year = "1998", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Fri Oct 9 08:35:26 MDT 1998", bibsource = "http://www.linuxjournal.com/issue51/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Article{Anonymous:1998:NPV, author = "Anonymous", title = "New Products: {Visual Prolog 5.0, Prolog Development Center; Samba: Integrating UNIX and Windows, SSC; VPN Client, Aventail Corporation; eVote 2.2, www.deliberate.com; TowerJ 2.0, Tower Technology Corporation; NetVue\slash JAVA, AccuSoft Corporation}", journal = j-LINUX-J, volume = "49", pages = "??--??", month = may, year = "1998", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Fri Oct 9 08:35:26 MDT 1998", bibsource = "http://www.linuxjournal.com/issue49/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Article{Anonymous:1998:NTC, author = "Anonymous", title = "New Tools: Component Technology: {Rational}'s Component-Savvy Visual Tool; {ICL}'s {Java}-Based {ORBs}. Systems Analysis: {Network Communication}'s Network Probe; {Seagate}'s Server Health Monitor", journal = j-COMPUTER, volume = "31", number = "6", pages = "101--101", month = jun, year = "1998", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Thu Jun 4 08:22:02 MDT 1998", bibsource = "http://computer.org/computer/co1998/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1998/pdf/r6098.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Anonymous:1998:NTN, author = "Anonymous", title = "New Tools: Net Development: {Lotus}' Tools for {Intranet}\slash {Extranet} Development; {Novera Software}'s {Java} Application Server", journal = j-COMPUTER, volume = "31", number = "6", pages = "100, 103", month = jun, year = "1998", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Thu Jun 4 08:22:02 MDT 1998", bibsource = "http://computer.org/computer/co1998/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1998/pdf/r6098.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Anonymous:1998:NTS, author = "Anonymous", title = "New Tools: Software Development: {Uniscape}'s Internationalization Library; {Global Technologies}' {Unix-to-NT} Solution; {KAI}'s Multithreaded {Java} Debugging Tool; {Price Systems}' Parametric Forecasting Tool", journal = j-COMPUTER, volume = "31", number = "6", pages = "98, 102", month = jun, year = "1998", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Thu Jun 4 08:22:02 MDT 1998", bibsource = "http://computer.org/computer/co1998/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1998/pdf/r6098.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Anonymous:1998:NTSa, author = "Anonymous", title = "New Tools: Software Development: {Uniscape}'s Internationalization Library; {Global Technologies}' {Unix-to-NT} Solution; {KAI}'s Multithreaded {Java} Debugging Tool; {Price Systems}' Parametric Forecasting Tool", journal = j-COMPUTER, volume = "31", number = "6", pages = "98, 102", month = jun, year = "1998", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Thu Jun 4 08:22:02 MDT 1998", bibsource = "http://computer.org/computer/co1998/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1998/pdf/r6098.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Anonymous:1998:SER, author = "Anonymous", title = "{Sun} expands {Road to Java} initiative", journal = j-SUNSERVER, volume = "12", number = "1", pages = "19--19", month = jan, year = "1998", ISSN = "1091-4986", bibdate = "Wed Jan 14 08:24:51 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Book{Anonymous:1998:VJE, author = "Anonymous", title = "{VisualAge} for {Java} Enterprise Team", publisher = pub-IBM-REDBOOKS, address = pub-IBM-REDBOOKS:adr, month = mar, year = "1998", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.redbooks.ibm.com/", price = "????", URL = "http://www.redbooks.ibm.com/SG245245/5245fm.htm", acknowledgement = ack-nhfb, } @Book{Appel:1998:MCI, author = "Andrew W. Appel", title = "Modern Compiler Implementation in {Java}", publisher = pub-CUP, address = pub-CUP:adr, pages = "x + 548", month = jan, year = "1998", ISBN = "0-521-58388-8", ISBN-13 = "978-0-521-58388-6", LCCN = "QA76.73.J38A65 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.cup.org; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$55", URL = "http://193.60.94.193/scripts/webbook.asp?isbn=0521583888", acknowledgement = ack-nhfb, url-publisher = "http://www.cup.org", } @Book{Arnold:1998:JPL, author = "Ken Arnold and James Gosling", title = "The {Java} Programming Language", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xix + 442", year = "1998", ISBN = "0-201-31006-6", ISBN-13 = "978-0-201-31006-1", LCCN = "QA76.73.J38A76 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39", acknowledgement = ack-nhfb, url-author = "http://java.sun.com/people/arnold/", url-publisher = "http://www.aw.com/", } @Book{Arnow:1998:IPU, author = "David M. Arnow and Gerald Weiss", title = "Introduction to Programming Using {Java}: An Object-Oriented Approach", publisher = pub-AW, address = pub-AW:adr, pages = "xxxi + 783", month = jan, year = "1998", ISBN = "0-201-31184-4", ISBN-13 = "978-0-201-31184-6", LCCN = "QA76.73.J38A77 1998", bibdate = "Sat Oct 31 09:37:00 1998", bibsource = "http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$45", URL = "http://cseng.aw.com/bookdetail.qry?ISBN=0%2D201%2D31184%2D4&ptype=0; http://cseng.aw.com/bookdetail.qry?ISBN=0-201-31184-4&ptype=0", acknowledgement = ack-nhfb, url-author = "http://cseng.aw.com/authordetail.qry?AuthorID=1199", url-publisher = "http://www.aw.com/", xxtitle = "Introduction to Programming: An Object-Oriented Approach Using {Java}", } @Article{Atkinson:1998:POP, author = "M. Atkinson and M. Jordan", title = "Providing Orthogonal Persistence for {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1445", pages = "383--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{AzanonEsteire:1998:JST, author = "Oscar {Aza{\~n}{\'o}n Esteire} and Juan Manual {Cueva Lovelle}", title = "{J} --- Set of Tools for Native Code Generation for the {Java Virtual Machine}", journal = j-SIGPLAN, volume = "33", number = "3", pages = "73--79", month = mar, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Thu Apr 30 08:30:23 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Bacon:1998:TLF, author = "David F. Bacon and Ravi Konuru and Chet Murthy and Mauricio Serrano", title = "Thin Locks: Featherweight Synchronization for {Java}", journal = j-SIGPLAN, volume = "33", number = "5", pages = "258--268", month = may, year = "1998", CODEN = "SINODQ", ISBN = "0-89791-987-4", ISBN-13 = "978-0-89791-987-6", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:47 MST 2003", bibsource = "http://portal.acm.org/; http://www.acm.org/pubs/contents/proceedings/pldi/277650/index.html; http://www.cs.virginia.edu/pldi98/program.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/pldi/277650/p258-bacon/; http://www.cs.virginia.edu/pldi98/program.html", acknowledgement = ack-nhfb, annote = "Published as part of the Proceedings of PLDI'98.", fjournal = "ACM SIGPLAN Notices", keywords = "algorithms; languages; measurement; performance", subject = "{\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Java. {\bf D.2.8} Software, SOFTWARE ENGINEERING, Metrics, Performance measures. {\bf D.4.0} Software, OPERATING SYSTEMS, General, AIX.", } @Article{Baerten:1998:UVJ, author = "Herbert Baerten and Frank {Van Reeth}", title = "Using {VRML} and {JAVA} to visualize {3D} algorithms in computer graphics education", journal = j-COMP-NET-ISDN, volume = "30", number = "20--21", pages = "1833--1839", day = "12", month = nov, year = "1998", CODEN = "CNISE9", ISSN = "0169-7552", ISSN-L = "0169-7552", bibdate = "Fri Sep 24 20:22:27 MDT 1999", bibsource = "http://www.elsevier.com/cgi-bin/cas/tree/store/cna/cas_free/browse/browse.cgi?year=1998&volume=30&issue=20-21; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.elsevier.com/cas/tree/store/comnet/sub/1998/30/20-21/2013.pdf", acknowledgement = ack-nhfb, fjournal = "Computer Networks and ISDN Systems", } @Article{Bak:1998:NCJ, author = "Lars Bak and John Duimovich and Jesse Fang and Scott Meyer and David Ungar", title = "The new crop of {Java} virtual machines (panel)", journal = j-SIGPLAN, volume = "33", number = "10", pages = "179--182", month = oct, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:52 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @InProceedings{Baker:1998:DSJ, author = "Brenda S. Baker and Udi Manber", title = "Deducing Similarities in {Java} Sources from Bytecodes", crossref = "USENIX:1998:PUA", pages = "??--??", year = "1998", bibdate = "Fri Oct 18 08:55:49 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/usenix98/baker.html", acknowledgement = ack-nhfb, } @Book{Balaban:1998:PDJ, author = "Bob Balaban", title = "Programming {Domino 4.6} with {Java}", publisher = pub-MIS # " and " # pub-MT, address = pub-MIS:adr # " and " # pub-MT:adr, pages = "??", month = jan, year = "1998", ISBN = "1-55851-583-6", ISBN-13 = "978-1-55851-583-3", LCCN = "QA76.73.J38B35 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mispress.com/", note = "Includes CD-ROM.", price = "US\$49.95", URL = "http://www.idgbooks.com/cgi-bin/db/fill_out_template.pl?idgbook:1-5585-1583-6:book-idg::uidg1388", acknowledgement = ack-nhfb, } @Article{Balch:1998:J, author = "T. Balch", title = "{JavaSoccer}", journal = j-LECT-NOTES-COMP-SCI, volume = "1395", pages = "181--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Ball:1998:CIA, author = "Steve Ball and John Miller Crawford", title = "Channels for Inter-Applet Communication", journal = j-DDJ, volume = "23", number = "9", pages = "18--20, 22, 91", month = sep, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Aug 05 10:12:23 1998", bibsource = "http://www.ddj.com/ddj/1998/1998_09/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1998/1998_09/channel.txt; http://www.ddj.com/ftp/1998/1998_09/channel.zip", abstract = "When Java applets communicate with each other, users enjoy a richer experience when visiting your web site. One way to facilitate communications is to use Java's class variables (static fields).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Bandes:1998:JCA, author = "Kenneth Bandes", title = "{Java} and {COM} automation: Taking the edge off dual interfaces", journal = j-DDJ, volume = "23", number = "1", pages = "28, 30, 32, 34--35, 98--99", month = jan, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Dec 2 08:43:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Ken examines the ActiveX technology called Automation (formerly ``OLE Automation''), and shows how you can implement it in Java. Additional resources include: \path=JAVA_COM.TXT= (listings), and \path=JAVA_COM.ZIP= (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @InProceedings{Baratloo:1998:FHR, author = "Arash Baratloo and P. Emerald Chung and Yennun Huang and Sampath Rangarajan and Shalini Yajnik", title = "{Filterfresh}: Hot Replication of {Java RMI} Server Objects", crossref = "USENIX:1998:PFU", pages = "??--??", year = "1998", bibdate = "Fri Oct 18 09:16:59 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/coots98/baratloo.html", acknowledgement = ack-nhfb, } @InProceedings{Baratloo:1998:INCa, author = "A. Baratloo and M. Karaul and H. Karl and Z. M. Kedem", title = "An Infrastructure for Network Computing with {Java} Applets", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/knittingfactory.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/knittingfactory.ps", acknowledgement = ack-nhfb, } @Article{Baratloo:1998:INCb, author = "Arash Baratloo and Mehmet Karaul and Holger Karl and Zvi M. Kedem", title = "An infrastructure for network computing with {Java} applets", journal = j-CPE, volume = "10", number = "11--13", pages = "1029--1041", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.interscience.wiley.com/jpages/1040-3108/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050421; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050421&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Barry:1998:CPS, author = "Douglas Barry and Torsten Stanienda", title = "Computing Practices: Solving the {Java} Object Storage Problem", journal = j-COMPUTER, volume = "31", number = "11", pages = "33--41", month = nov, year = "1998", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Thu Oct 29 07:11:28 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1998/pdf/ry033.pdf; http://www.computer.org/computer/co1998/ry033abs.htm", acknowledgement = ack-nhfb, fjournal = "Computer", } @Book{Bartlett:1998:PCB, author = "Neil Bartlett and Steve Simkin", title = "Programaci{\'o}n en {Castanet} y {Bongo}", publisher = pub-ANAYA-MULTIMEDIA, address = pub-ANAYA-MULTIMEDIA:adr, month = feb, year = "1998", ISBN = "84-415-0395-8", ISBN-13 = "978-84-415-0395-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.anayamultimedia.es/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "3495 Ptas.", URL = "http://www.anayamultimedia.es/cgi-multi/notas_prensa.pl?2321023&3&0&1", acknowledgement = ack-nhfb, language = "Spanish", } @Article{Barton:1998:RTP, author = "John J. Barton and John Whaley", title = "A Real-Time Performance Visualizer for {Java}", journal = j-DDJ, volume = "23", number = "3", pages = "44, 46--48, 105", month = mar, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Mar 6 18:42:46 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1998/1998_03/visualz.txt; http://www.ddj.com/ftp/1998/1998_03/visualz.zip", abstract = "Find out where the performance bottlenecks in your Java programs are with the JVM performance visualizer presented here. Additional resources include VISUALZ.TXT (listings) and VISUALZ.ZIP (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @InProceedings{Beck:1998:WRJ, author = "Brian Beck", title = "World Ready {Java} --- The Next Step --- Part 1: General {I18N}, Text Layout and User Interface", crossref = "UC:1998:ASI", pages = "??--??", year = "1998", bibdate = "Thu Aug 20 07:50:28 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc12/program.html", acknowledgement = ack-nhfb, } @TechReport{Beebe:1998:BPJi, author = "Nelson H. F. Beebe", title = "A Bibliography of Publications in {JavaWorld} Magazine", institution = inst-CSC, address = inst-CSC:adr, pages = "101", day = "14", month = aug, year = "1998", bibdate = "Fri Aug 14 16:58:00 1998", bibsource = "http://www.math.utah.edu/pub/bibnet/authors/b/beebe-nelson-h-f.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "This report is updated frequently.", URL = "http://www.math.utah.edu/pub/tex/bib/index-table-j.html#javaworld", } @Book{Bell:1998:JSa, author = "Doug Bell and Mike Parr", title = "{Java} for Students", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "448", year = "1998", ISBN = "0-13-858440-0", ISBN-13 = "978-0-13-858440-5", LCCN = "QA76.73.J38B45 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$45.00", acknowledgement = ack-nhfb, } @Book{Bell:1998:JSb, author = "Parr Bell", title = "{Java f{\"u}r Studenten}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, month = sep, year = "1998", ISBN = "3-8272-9563-7 (??invalid ISBN??)", ISBN-13 = "978-3-8272-9563-7 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "70 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Ben-Natan:1998:CW, author = "Ron Ben-Natan", title = "{CORBA} on the {Web}", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xxi + 480", month = feb, year = "1998", ISBN = "0-07-006724-4", ISBN-13 = "978-0-07-006724-0", LCCN = "QA76.625.B46 1998", bibdate = "Fri Jan 22 10:13:34 1999", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", note = "Includes CD-ROM.", price = "US\$45", acknowledgement = ack-nhfb, } @Book{Benage:1998:SEU, author = "Don Benage and Azam Mirza", title = "Special Edition Using {Microsoft Visual Studio} for Enterprise Development", publisher = pub-QUE, address = pub-QUE:adr, month = feb, year = "1998", ISBN = "0-7897-1260-1", ISBN-13 = "978-0-7897-1260-8", LCCN = "QA76.76.A65B46 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", URL = "http://merchant.superlibrary.com:8000/catalog/mcp/PRODUCT/PAGE/07897/bud/0789712601.html", acknowledgement = ack-nhfb, } @Article{Benson:1998:JRR, author = "Brent W. {Benson, Jr.}", title = "{Java} Reflections: Reflection: Eat your own dog food", journal = j-SIGPLAN, volume = "33", number = "12", pages = "16--19", month = dec, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 20 08:54:23 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Book{Berg:1998:AJD, author = "Clifford J. Berg", title = "Advanced {Java} Development for Enterprise Applications", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "512", month = mar, year = "1998", ISBN = "0-13-080461-4", ISBN-13 = "978-0-13-080461-7", LCCN = "QA76.73.J38B478 1998", bibdate = "Tue Nov 03 11:30:39 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.phptr.com/ptrbooks/ptr_0130804614.html; http://www.prenhall.com/", note = "Includes CD-ROM.", price = "US\$49.95", series = "SunSoft Press Java series", URL = "http://www.prenhall.com/ptrbooks/ptr_0130804614.html", acknowledgement = ack-nhfb, xxtitle = "Advanced {Java} Development for the Enterprise", } @Book{Berg:1998:ATJ, author = "Daniel J. Berg and J. Stephen Fritzinger", title = "Advanced Techniques for {Java} Developers", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xvii + 426", year = "1998", ISBN = "0-471-18208-7 (softcover)", ISBN-13 = "978-0-471-18208-5 (softcover)", LCCN = "QA76.73.J38B48 1998", bibdate = "Fri Jan 22 10:16:43 1999", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", note = "Includes CD-ROM.", price = "US\$44.99", URL = "http://www.wiley.com/compbooks/catalog/18208-7.htm", } @Book{Berg:1998:JF, author = "Clifford J. Berg", title = "{Java FAQs}", publisher = pub-PH, address = pub-PH:adr, pages = "????", month = feb, year = "1998", ISBN = "0-13-272980-6", ISBN-13 = "978-0-13-272980-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$26.95", acknowledgement = ack-nhfb, keywords = "Java (computer program language); technology -- computers and computer technology", } @Article{Berg:1998:JQHa, author = "Cliff Berg", title = "{Java Q and A}: How Do {I} Create a Signed {Castanet} Channel?", journal = j-DDJ, volume = "23", number = "1", pages = "121--124, 129", month = jan, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Dec 2 08:43:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "This month, Cliff addresses centralized systems administration using Marimba's Castanet 2.0 channel (and JavaSoft's HotJavaBean) for distributing secure, signed content to users. Available resources include: How Can I Create a Push Java Channel? (JavaQ\&A), by Cliff Berg, and JAVAQ\&A.TXT (listings).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Berg:1998:JQHb, author = "Cliff Berg", title = "{Java Q and A}: How Do {I} Transfer Data Securely?", journal = j-DDJ, volume = "23", number = "2", pages = "119--121", month = feb, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Jan 06 10:25:12 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Berg:1998:JQHc, author = "Cliff Berg", title = "{Java Q and A}: How do {I} Interface {Java} to my {PalmPilot}", journal = j-DDJ, volume = "23", number = "4", pages = "118, 120, 122, 139", month = apr, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Mon Jun 22 17:53:23 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1998/1998_04/jqa498.txt", abstract = "How do you interface Java to your PalmPilot? Cliff shows you how, using IBM's new `PilotBean' Java interface. Additional resources include jqa498.txt (listings).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Berg:1998:JQHd, author = "Cliff Berg", title = "{Java Q and A}: How do {I} Password Encrypt Data?", journal = j-DDJ, volume = "23", number = "8", pages = "107--109, 117", month = aug, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Jul 16 12:55:37 1998", bibsource = "http://www.ddj.com/ddj/1998/1998_08/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1998/1998_08/jqa898.txt; http://www.ddj.com/ftp/1998/1998_08/jqa898.zip", abstract = "Cliff shows how you can use encryption to protect data at its point of origin or destination.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @InProceedings{Bergadano:1998:SWT, author = "F. Bergadano and B. Crispo and M. Eccettuato", title = "Secure {WWW} Transactions Using {Standard HTTP} and {Java} Applets", crossref = "USENIX:1998:PUWb", pages = "??--??", year = "1998", bibdate = "Fri Oct 18 08:21:04 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/ec98/crispo.html", acknowledgement = ack-nhfb, } @Misc{Berk:1998:JLA, author = "Elliot Berk and Martin Dirichs", title = "{JLex}: {A} Lexical Analyzer Generator for {Java}", year = "1998", bibdate = "Mon Jun 22 16:59:34 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Lex is the Java programming tool formerly known as Java-Lex. JLex is a lexical analyzer generator, written for Java, in Java. JLex was developed by Elliot Berk at Princeton University. It is now maintained with the assistance of Martin Dirichs, University of Oldenburg, Germany.", URL = "http://www.cs.princeton.edu/~appel/modern/java/JLex/", acknowledgement = ack-nhfb, } @Article{Berman:1998:SPS, author = "A. Michael Berman", title = "Selected Papers from the {Second United Kingdom: Java in the Computing Curriculum (JICC) Conference}", journal = j-SIGPLAN, volume = "33", number = "4", pages = "30--30", month = apr, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:46 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Berman:1998:SSS, author = "A. Michael Berman", title = "Special Section: Selected Papers from the {Second UK Java in the Computing Curriculum Conference}", journal = j-SIGPLAN, volume = "33", number = "4", pages = "30--??", month = apr, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Wed Jul 1 06:23:08 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.rowan.edu/sigplan/apr199~1.htm", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Bhattacharyya:1998:YTS, author = "Dev Bhattacharyya", title = "A {Year 2000} Tool Suite", journal = j-DDJ, volume = "23", number = "5", pages = "36, 38", month = may, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Apr 1 16:59:28 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1998/1998_05/javay2k.zip", abstract = "Dev presents a Year 2000 toolset written in Java, consisting of a scanning tool that examines source code for date-related areas, and a data ager tool that lets you manipulate existing production data. Additional resources include javay2k.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Bik:1998:ELP, author = "A. J. C. Bik and J. E. Villacis and D. B. Gannon", title = "Experience with Loop Parallelization in {\tt javar} ({A} Prototype Restructuring Compiler for {Java})", journal = j-LECT-NOTES-COMP-SCI, volume = "1366", pages = "355--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @InProceedings{Bik:1998:PBP, author = "Aart J. C. Bik and Dennis B. Gannon", title = "A Prototype Bytecode Parallelization Tool ({\tt javab} Manual)", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/javab.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/javab.ps", acknowledgement = ack-nhfb, } @InProceedings{Bik:1998:PBPa, author = "Aart J. C. Bik and Dennis B. Gannon", title = "A Prototype Bytecode Parallelization Tool ({\tt javab} Manual)", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/javab.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/javab.ps", acknowledgement = ack-nhfb, } @Article{Bik:1998:PBPb, author = "Aart J. C. Bik and Dennis B. Gannon", title = "A prototype bytecode parallelization tool", journal = j-CPE, volume = "10", number = "11--13", pages = "879--885", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050417; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050417&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Bishop:1998:JG, author = "Judy M. Bishop", title = "{Java} Gently", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xvii + 508", month = apr, year = "1998", ISBN = "0-201-34297-9", ISBN-13 = "978-0-201-34297-0", LCCN = "QA76.73.J38 B55 1998", bibdate = "Wed Feb 21 06:49:44 2001", bibsource = "http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$37", URL = "http://jupiter.cs.up.ac.za/javagently/", acknowledgement = ack-nhfb, } @InProceedings{Bizarro:1998:JJLa, author = "Pedro Bizarro and Lu{\'\i}s M. Silva and Jo{\~a}o Gabriel Silva", title = "{JWarp}: {A} {Java} Library For Parallel Discrete-Event Simulations", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/jwarp.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/jwarp.ps", acknowledgement = ack-nhfb, } @Article{Bizarro:1998:JJLb, author = "Pedro Bizarro and Lu{\'\i}s M. Silva and Jo{\~a}o Gabriel Silva", title = "{JWarp}: a {Java} library for parallel discrete-event simulations", journal = j-CPE, volume = "10", number = "11--13", pages = "999--1005", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.interscience.wiley.com/jpages/1040-3108/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050415; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050415&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Blaha:1998:JPI, author = "Stephen Blaha", title = "{Java} Programming with an Intro to {Visual J++}", volume = "1", publisher = pub-PH, address = pub-PH:adr, pages = "????", day = "1", month = feb, year = "1998", ISBN = "0-13-262197-5", ISBN-13 = "978-0-13-262197-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0132621975/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$35.95", URL = "http://www.prenhall.com/books/ptr_0132621975.html", acknowledgement = ack-nhfb, xxtitle = "{Java} Jiving on the Net, with {CD-ROM}", } @Article{Blount:1998:EJN, author = "B. Blount and S. Chatterjee", title = "An Evaluation of {Java} for Numerical Computing", journal = j-LECT-NOTES-COMP-SCI, volume = "1505", pages = "35--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Jan 5 08:21:58 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Boerger:1998:DJV, author = "E. Boerger and W. Schulte", title = "Defining the {Java Virtual Machine} as Platform for Provably Correct {Java} Compilation", journal = j-LECT-NOTES-COMP-SCI, volume = "1450", pages = "17--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @InProceedings{Boisvert:1998:DNLa, author = "Ronald F. Boisvert and Jack J. Dongarra and Roldan Pozo and Karin A. Remington and G. W. Stewart", title = "Developing numerical libraries in {Java}", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/jnt.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/jnt.ps", acknowledgement = ack-nhfb, } @Article{Boisvert:1998:DNLb, author = "Ronald F. Boisvert and Jack J. Dongarra and Roldan Pozo and Karin A. Remington and G. W. Stewart", title = "Developing numerical libraries in {Java}", journal = j-CPE, volume = "10", number = "11--13", pages = "1117--1129", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.interscience.wiley.com/jpages/1040-3108/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050395; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050395&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Boone:1998:JCE, author = "Barry Boone", title = "{Java} 1.2 Certification Exam Guide", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, month = feb, year = "1998", ISBN = "0-07-913740-7", ISBN-13 = "978-0-07-913740-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$55", URL = "http://mcgraw-hill.inforonics.com/cgi/getarec?mgh50908%comp", acknowledgement = ack-nhfb, } @Article{Borger:1998:DJV, author = "Egon B{\"o}rger and Wolfram Schulte", title = "Defining the {Java Virtual Machine} as Platform for Provably Correct {Java} Compilation", journal = j-LECT-NOTES-COMP-SCI, volume = "1450", pages = "17--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Feb 5 11:52:35 MST 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t1450.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://link.springer-ny.com/link/service/series/0558/bibs/1450/14500017.htm; http://link.springer-ny.com/link/service/series/0558/papers/1450/14500017.pdf", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Borkner-Delcarlo:1998:UJP, author = "Olaf Borkner-Delcarlo", title = "{Umstieg auf {Java}: Professionelle Sotwareentwicklung mit dem JDK 1.1}", publisher = pub-CARL-HANSER, address = pub-CARL-HANSER:adr, pages = "xv + 523", year = "1998", ISBN = "3-446-19216-6", ISBN-13 = "978-3-446-19216-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.hanser.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "89 DM", URL = "http://www.hanser.de/computer/buecher/bo19216.htm", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.hanser.de/", } @InProceedings{Bothner:1998:KCD, author = "Per Bothner", title = "{Kawa} --- Compiling Dynamic Languages to the {Java VM}", crossref = "USENIX:1998:PFT", pages = "??--??", year = "1998", bibdate = "Fri Oct 18 09:04:41 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/usenix98/freenix/bothner.slides.ps", acknowledgement = ack-nhfb, } @Book{Bottomley:1998:ISL, author = "Gareth Bottomley", title = "Implementation of a scripting language for {VRML} using {Java}", publisher = "University of Leeds, School of Computer Studies", address = "Leeds", year = "1998", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, annote = "Final year project -- University of Leeds (School of Computer Studies), 1997/98.", } @Article{Boussinot:1998:STB, author = "Fr{\'e}d{\'e}ric Boussinot and Jean-Ferdy Susini", title = "The {SugarCubes} Tool Box: {A} Reactive {Java} Framework", journal = j-SPE, volume = "28", number = "14", pages = "1531--1550", day = "10", month = dec, year = "1998", CODEN = "SPEXBL", ISSN = "0038-0644 (print), 1097-024X (electronic)", ISSN-L = "0038-0644", bibdate = "Thu Jul 29 15:12:05 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=5001669; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=5001669&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Software---Practice and Experience", } @Article{Bowen:1998:ZWU, author = "J. P. Bowen and D. Chippington", title = "{Z} on the {Web} Using {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1493", pages = "66--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Jan 5 08:21:58 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Boyer:1998:AAR, author = "John Boyer", title = "Algorithm Alley: Resizable Data Structures", journal = j-DDJ, volume = "23", number = "1", pages = "115--116, 118, 129", month = jan, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat Nov 29 11:35:58 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses some deficiencies of the Java library hash table support, and compares it with his algorithm and that used in the C++ Standard Template Library. Also compares the Jenkins hash function \cite{Jenkins:1997:AAH} with the one proposed in this paper.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Boyer:1998:AAS, author = "John Boyer", title = "Algorithm Alley: Sorting and Searching Linked Lists in {Java}", journal = j-DDJ, volume = "23", number = "5", pages = "126--129, 137--138", month = may, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Apr 1 16:59:28 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1998/1998_05/aa0598.txt; http://www.ddj.com/ftp/1998/1998_05/aa0598.zip", abstract = "John introduces algorithms for and implementations of linked-list sorting and searching that are more efficient than those available in the Java Developer's Kit 1.2 Beta 2. Additional resources include aa0598.txt (listings) and aa0598.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Boyle:1998:VEM, author = "John Boyle", title = "A visual environment for the manipulation and integration of {Java Beans}", journal = j-BIOINFORMATICS, volume = "14", number = "8", pages = "739--748", month = sep, year = "1998", CODEN = "????", ISSN = "1367-4803 (print), 1367-4811 (electronic)", ISSN-L = "1367-4803", bibdate = "Tue May 3 17:31:21 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; Ingenta database", acknowledgement = ack-nhfb, fjournal = "Bioinformatics", pagecount = "10", } @InProceedings{Boyles:1998:CCE, author = "Michael Boyles and Rajeev Raje and Shiaofen Fang", title = "{CEV}: Collaborative Environment for Visualization Using {Java-RMI}", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/cev.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/cev.ps", acknowledgement = ack-nhfb, } @Article{Bracha:1998:MFS, author = "Gilad Bracha and Martin Odersky and David Stoutamire and Philip Wadler", title = "Making the Future Safe for the Past: Adding Genericity to the {Java} Programming Language", journal = j-SIGPLAN, volume = "33", number = "10", pages = "183--200", month = oct, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:52 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Brackenbury:1998:IES, author = "I. F. Brackenbury and D. F. Ferguson and K. D. Gottschalk and R. A. Storey", title = "{IBM}'s {Enterprise Server for Java}", journal = j-IBM-SYS-J, volume = "37", number = "3", pages = "323--??", month = "????", year = "1998", CODEN = "IBMJAE", ISSN = "0018-8646 (print), 2151-8556 (electronic)", bibdate = "Thu Nov 5 17:12:23 MST 1998", bibsource = "http://www.almaden.ibm.com/journal/sj37-2.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.almaden.ibm.com/journal/sj/373/brackenbury.html", acknowledgement = ack-nhfb, fjournal = "IBM Systems Journal", } @Article{Bradford:1998:AQJ, author = "John Bradford", title = "Answering Questions on {Java} and {ActiveX}", journal = j-SUNSERVER, volume = "12", number = "1", pages = "13--13", month = jan, year = "1998", ISSN = "1091-4986", bibdate = "Wed Jan 14 08:24:51 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @InProceedings{Breg:1998:JRPa, author = "Fabian Breg and Shridhar Diwan and Juan Villacis and Jayashree Balasubramanian and Esra Akman and Dennis Gannon", title = "{Java RMI} Performance and Object Model Interoperability: Experiments with {Java\slash HPC++}", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/rmi.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/rmi.ps", acknowledgement = ack-nhfb, } @Article{Breg:1998:JRPb, author = "Fabian Breg and Shridhar Diwan and Juan Villacis and Jayashree Balasubramanian and Esra Akman and Dennis Gannon", title = "{Java RMI} performance and object model interoperability: experiments with {Java\slash HPC++}", journal = j-CPE, volume = "10", number = "11--13", pages = "941--955", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.interscience.wiley.com/jpages/1040-3108/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050400; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050400&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Bridges:1998:LEJ, author = "Michael Bridges", title = "Living without {\tt enum} in {Java}", journal = j-CCCUJ, volume = "16", number = "11", pages = "82--??", month = nov, year = "1998", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:18 MDT 2002", bibsource = "http://www.cuj.com/articles/1998/9811/9811toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "You give up a lot of options in moving from C++ to Java, but you don't have to give up as much as you might think.", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Book{Brogden:1998:VCJ, author = "William B. Brogden and Jeffrey A. Louie and Ed Tittel", title = "{Visual Caf{\'e}} for {Java Explorer}: database development edition: Maximize Your Object-Oriented Programming Skills to Create Database Applets and Applications Using {Java}", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "xxii + 558", year = "1998", ISBN = "1-57610-219-X", ISBN-13 = "978-1-57610-219-0", LCCN = "QA76.73.J38 T59 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$39.99; CDN\$55.99", URL = "https://www.coriolis.com/cgi-win/tipsheet.exe/tipsheet?name=vcproex", acknowledgement = ack-nhfb, url-publisher = "http://www.coriolis.com/", } @Book{Brookshier:1998:WAJ, author = "Dan Brookshier", title = "Who's Afraid Of {Java}?", publisher = pub-AP-PROFESSIONAL, address = pub-AP-PROFESSIONAL:adr, month = jul, year = "1998", ISBN = "0-12-135455-5", ISBN-13 = "978-0-12-135455-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.apnet.com/approfessional/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", acknowledgement = ack-nhfb, } @Article{Brosgol:1998:CAJ, author = "Ben Brosgol", title = "A Comparison of {Ada} and {Java} as a Foundation Teaching Language", journal = j-SIGADA-LETTERS, volume = "18", number = "5", pages = "12--38", month = sep # "\slash " # oct, year = "1998", CODEN = "AALEE5", ISSN = "0736-721X", ISSN-L = "0736-721X", bibdate = "Thu Oct 29 11:40:00 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGADA Ada Letters", } @Article{Brosgol:1998:CCF, author = "Benjamin M. Brosgol", title = "A Comparison of the Concurrency Features of {Ada 95} and {Java}", journal = j-SIGADA-LETTERS, volume = "18", number = "6", pages = "175--192", month = nov # "\slash " # dec, year = "1998", CODEN = "AALEE5", ISSN = "0736-721X", ISSN-L = "0736-721X", bibdate = "Sat Aug 9 09:06:05 MDT 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGADA Ada Letters", } @Article{Brosgol:1998:WAR, author = "Ben Brosgol", title = "Why {Ada} rather than {Java} for academia?", journal = j-ADA-USER-J, volume = "19", number = "2", pages = "135--??", month = "????", year = "1998", CODEN = "AUJOET", ISSN = "1381-6551", bibdate = "Sat Oct 10 15:02:46 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Ada User Journal", } @Article{Brutzman:1998:VRM, author = "Don Brutzman", title = "The {Virtual Reality Modeling Language} and {Java}", journal = j-CACM, volume = "41", number = "6", pages = "57--64", month = jun, year = "1998", CODEN = "CACMA2", ISSN = "0001-0782 (print), 1557-7317 (electronic)", ISSN-L = "0001-0782", bibdate = "Sat Jun 06 08:58:39 1998", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/journals/cacm/1998-41-6/p57-brutzman/", acknowledgement = ack-nhfb, fjournal = "Communications of the ACM", } @InProceedings{Bryan:1998:MJH, author = "S. Bryan", title = "Multimedia, {Java}, and {HTML} With {Digital Chisel 3}", crossref = "Anonymous:1998:ANE", pages = "48--??", year = "1998", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Buchi:1998:CTJ, author = "Martin B{\"u}chi and Wolfgang Weck", title = "Compound Types for {Java}", journal = j-SIGPLAN, volume = "33", number = "10", pages = "362--373", month = oct, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:52 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Book{Budd:1998:UOO, author = "Timothy Budd", title = "Understanding Object-Oriented Programming With {Java}", publisher = pub-AW, address = pub-AW:adr, month = feb, year = "1998", ISBN = "0-201-30881-9", ISBN-13 = "978-0-201-30881-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", acknowledgement = ack-nhfb, } @Book{Buelens:1998:VEN, author = "Kris Buelens", title = "{VM\slash ESA} Network Computing with {Java} and {NetRexx}", publisher = pub-IBM-REDBOOKS, address = pub-IBM-REDBOOKS:adr, month = apr, year = "1998", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.redbooks.ibm.com/", price = "????", URL = "http://www.redbooks.ibm.com/SG245148/jnr_bk.html", acknowledgement = ack-nhfb, } @Article{Burton:1998:AJP, author = "Bradley F. Burton and Victor W. Marek", title = "Applications of {JAVA} programming language to database management", journal = j-SIGMOD, volume = "27", number = "1", pages = "27--34", month = mar, year = "1998", CODEN = "SRECD8", ISSN = "0163-5808 (print), 1943-5835 (electronic)", ISSN-L = "0163-5808", bibdate = "Mon Jan 12 08:46:02 MST 2004", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGMOD Record", } @Book{Cadenhead:1998:AJH, author = "Rogers Cadenhead", title = "Aprendiendo {Java} 1.1 en 24 Horas", publisher = pub-PH, address = pub-PH:adr, year = "1998", ISBN = "970-17-0085-6 (??invalid ISBN??)", ISBN-13 = "978-970-17-0085-3 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prentice.com.mx/", price = "????", URL = "http://www.mcl.com.mx/sotano/prentice.fm$Retrive?RecID=2752&html=HTMLRecord1", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Cadenhead:1998:TYJ, author = "Rogers Cadenhead", title = "Teach Yourself {Java} 1.2 Programming in 24 Hours 2nd ed.", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, month = feb, year = "1998", ISBN = "1-57521-391-5", ISBN-13 = "978-1-57521-391-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$20", acknowledgement = ack-nhfb, } @Book{Campione:1998:JLT, author = "Mary Campione and Kathy Walrath", title = "The {Java} Language Tutorial: Object-Oriented Programming for the {Internet}", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xix + 964", month = jan, year = "1998", ISBN = "0-201-31007-4", ISBN-13 = "978-0-201-31007-8", LCCN = "QA76.64.C35 1998", bibdate = "Tue May 11 07:24:00 1999", bibsource = "http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$46", URL = "http://www2.awl.com/cseng/titles/0-201-31007-4/", acknowledgement = ack-nhfb, url-author = "http://cseng.aw.com/authordetail.qry?AuthorID=656", url-publisher = "http://www.aw.com/", } @Article{Carlisle:1998:WNE, author = "Paul Carlisle and Mike Anderson and Ray Brown and James Mitchell and Anthony Ralston and Herb Grosch and Stewart A. Denenberg and Rainer Schoenrank", title = "Who needs educational software?", journal = j-CACM, volume = "41", number = "6", pages = "22--26", month = jun, year = "1998", CODEN = "CACMA2", ISSN = "0001-0782 (print), 1557-7317 (electronic)", ISSN-L = "0001-0782", bibdate = "Thu Jun 4 06:13:01 MDT 1998", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/articles/journals/cacm/1998-41-6/p22-crawford/p22-crawford.pdf; http://www.acm.org:80/pubs/citations/journals/cacm/1998-41-6/p22-carlisle/; http://www.acm.org:80/pubs/citations/journals/cacm/1998-41-6/p22-crawford/", acknowledgement = ack-nhfb, fjournal = "Communications of the ACM", keywords = "design; human factors; languages; standardization", subject = "{\bf K.3.1} Computing Milieux, COMPUTERS AND EDUCATION, Computer Uses in Education. {\bf H.1.2} Information Systems, MODELS AND PRINCIPLES, User/Machine Systems, Human factors. {\bf K.1} Computing Milieux, THE COMPUTER INDUSTRY, Sun Microsystems. {\bf K.4.1} Computing Milieux, COMPUTERS AND SOCIETY, Public Policy Issues. {\bf K.3.0} Computing Milieux, COMPUTERS AND EDUCATION, General. {\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Java.", } @InProceedings{Caromel:1998:JFS, author = "Denis Caromel and Julien Vayssiere", title = "A {Java} Framework for Seamless Sequential, Multi-threaded, and Distributed Programming", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/javapp.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/javapp.ps", acknowledgement = ack-nhfb, } @Article{Caromel:1998:TSC, author = "Denis Caromel and Wilfried Klauser and Julien Vayssi{\`e}re", title = "Towards seamless computing and metacomputing in {Java}", journal = j-CPE, volume = "10", number = "11--13", pages = "1043--1061", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050422; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050422&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @InProceedings{Carpenter:1998:HDPa, author = "Bryan Carpenter and Guansong Zhang and Geoffrey Fox and Xinying Li and Yuhong Wen", title = "{HPJava}: Data Parallel Extensions to {Java}", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/hpjava.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/hpjava.ps", acknowledgement = ack-nhfb, } @Article{Carpenter:1998:HDPb, author = "Bryan Carpenter and Guansong Zhang and Geoffrey Fox and Xinying Li and Yuhong Wen", title = "{{\em HPJava\/}}: data parallel extensions to {Java}", journal = j-CPE, volume = "10", number = "11--13", pages = "873--877", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.interscience.wiley.com/jpages/1040-3108/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050411; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050411&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Carpenter:1998:JLS, author = "B. Carpenter and Y.-J. Chang and G. Fox and X. Li", title = "{Java} as a Language for Scientific Parallel Programming", journal = j-LECT-NOTES-COMP-SCI, volume = "1366", pages = "340--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Carpenter:1998:TJE, author = "B. Carpenter and G. Zhang and G. Fox and X. Li", title = "Towards a {Java} Environment for {SPMD} Programming", journal = j-LECT-NOTES-COMP-SCI, volume = "1470", pages = "659--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Carrel-Billiard:1998:PVJ, author = "Marc Carrel-Billiard and John Akerley", title = "Programming with {VisualAge for Java}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxix + 486", month = feb, year = "1998", ISBN = "0-13-911371-1", ISBN-13 = "978-0-13-911371-0", LCCN = "QA76.65.C373 1998", bibdate = "Sat Oct 31 09:38:08 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", note = "Includes CD-ROM.", price = "US\$49.95", URL = "http://www.prenhall.com/books/ptr_0139113711.html", acknowledgement = ack-nhfb, xxtitle = "Getting Started with {VisualAge} for {Java} 1.0", } @Article{Cartwright:1998:CGR, author = "Robert Cartwright and Guy L. {Steele, Jr.}", title = "Compatible Genericity with Run-time Types for the {Java} Programming Language", journal = j-SIGPLAN, volume = "33", number = "10", pages = "201--215", month = oct, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:52 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Book{CBT:1998:FJ, author = "{CBT Systems}", title = "Features of {Java}", publisher = pub-CBT-SYSTEMS, address = pub-CBT-SYSTEMS:adr, year = "1998", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.cbtsys.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$200", URL = "http://www.cbtsys.com/CBT/curicula/courses/jav1107/jav1107.htm", acknowledgement = ack-nhfb, } @Book{CBT:1998:JB, author = "{CBT Systems}", title = "{Java} Beans", publisher = pub-CBT-SYSTEMS, address = pub-CBT-SYSTEMS:adr, month = mar, year = "1998", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.cbtsys.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$200", URL = "http://www.cbtsys.com/cbt/curicula/courses/jav1109/jav1109.htm", acknowledgement = ack-nhfb, } @Book{CBT:1998:JCB, author = "{CBT Systems}", title = "{Java} Classes Bundle", publisher = "Computer Literacy", address = "????", month = feb, year = "1998", ISBN = "1-199-45619-5 (??invalid ISBN??)", ISBN-13 = "978-1-199-45619-9 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.clbooks.com/home.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$200", acknowledgement = ack-nhfb, } @Book{CBT:1998:JCDa, author = "{CBT Systems}", title = "{Java} for {C++} Developers Bundle", publisher = "Computer Literacy", address = "????", month = feb, year = "1998", ISBN = "1-199-45628-4 (??invalid ISBN??)", ISBN-13 = "978-1-199-45628-1 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.clbooks.com/home.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$200", acknowledgement = ack-nhfb, } @Book{CBT:1998:JCDb, author = "{CBT Systems}", title = "{Java} for {C++} Developers", publisher = pub-CBT-SYSTEMS, address = pub-CBT-SYSTEMS:adr, month = mar, year = "1998", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.cbtsys.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$200", URL = "http://www.cbtsys.com/CBT/curicula/courses/java02/java02.htm", acknowledgement = ack-nhfb, } @Book{CBT:1998:JIN, author = "{CBT Systems}", title = "{Java}: {IBM} Network Computing Framework Overview", publisher = pub-CBT-SYSTEMS, address = pub-CBT-SYSTEMS:adr, year = "1998", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.cbtsys.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$200", URL = "http://www.cbtsys.com/CBT/curicula/courses/jav1115/jav1115.htm", acknowledgement = ack-nhfb, } @Book{CBT:1998:JIV, author = "{CBT Systems}", title = "{Java IBM} Visual Age For {Java} --- Getting Started", publisher = pub-CBT-SYSTEMS, address = pub-CBT-SYSTEMS:adr, year = "1998", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.cbtsys.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$200", URL = "http://www.cbtsys.com/CBT/curicula/courses/jav1114/jav1114.htm", acknowledgement = ack-nhfb, } @Book{CBT:1998:JSN, author = "{CBT Systems}", title = "{Java} Security, Networking, and the {Internet}", publisher = pub-CBT-SYSTEMS, address = pub-CBT-SYSTEMS:adr, year = "1998", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.cbtsys.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$200", URL = "http://www.cbtsys.com/CBT/curicula/courses/jav1108/jav1108.htm", acknowledgement = ack-nhfb, } @Book{CBT:1998:JTT, author = "{CBT Systems}", title = "{Java} Tips and Techniques", publisher = pub-CBT-SYSTEMS, address = pub-CBT-SYSTEMS:adr, year = "1998", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.cbtsys.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$200", URL = "http://www.cbtsys.com/CBT/curicula/courses/jav1113/jav1113.htm", acknowledgement = ack-nhfb, } @Book{CBT:1998:JUI, author = "{CBT Systems}", title = "{Java} User Interface Programming", publisher = pub-CBT-SYSTEMS, address = pub-CBT-SYSTEMS:adr, year = "1998", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.cbtsys.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$200", URL = "http://www.cbtsys.com/cbt/curicula/courses/jav1106/jav1106.htm", acknowledgement = ack-nhfb, } @Article{Celestino:1998:BRJ, author = "R. J. Celestino", title = "Building Reusable {Java} Widgets", journal = j-LINUX-J, volume = "49", pages = "??--??", month = may, year = "1998", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Fri Oct 9 08:35:26 MDT 1998", bibsource = "http://www.linuxjournal.com/issue49/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "ftp://ftp.ssc.com/pub/lj/listings/issue49/2627.tgz", abstract = "An introduction to writing pluggable widgets in Java.", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Article{Chabert:1998:JOH, author = "Annie Chabert and Ed Grossman and Larry S. Jackson and Stephen R. Pietrowiz and Chris Seguin", title = "{Java} object-sharing in {Habanero}", journal = j-CACM, volume = "41", number = "6", pages = "69--76", month = jun, year = "1998", CODEN = "CACMA2", ISSN = "0001-0782 (print), 1557-7317 (electronic)", ISSN-L = "0001-0782", bibdate = "Thu Jun 4 06:13:01 MDT 1998", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/journals/cacm/1998-41-6/p69-chabert/", acknowledgement = ack-nhfb, fjournal = "Communications of the ACM", } @Book{Chaleat:1998:PHJ, author = "Philippe Chaleat and Daniel Charnay", title = "Programmation {HTML}, {Javascript}", publisher = pub-EYROLLES, address = pub-EYROLLES:adr, pages = "450", year = "1998", ISBN = "2-212-09024-2", ISBN-13 = "978-2-212-09024-6", LCCN = "????", bibdate = "Fri Sep 11 08:29:11 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, alttitle = "Programmation HTML et Javascript", annote = "2e ed. rev. et largement augment{\'e}e de HTML et la programmation des serveurs Web. Sur le CD-Rom: Netscape Communicator 4.04 pour differentes plates formes: Windows, Macintosh et Unix, les exemples du livre, des utilitaires, des liens. 2e ed. rev. et largement augment{\'e}e de HTML et la programmation des serveurs Web des memes auteurs, ed. Eyrolles, 1996.", keywords = "HTML (langage de programmation); Javascript (langage de programmation)", } @Article{Chamberland:1998:IVJ, author = "L. A. Chamberland and S. F. Lymer and A. G. Ryman", title = "{IBM VisualAge for Java}", journal = j-IBM-SYS-J, volume = "37", number = "3", pages = "386--??", month = "????", year = "1998", CODEN = "IBMJAE", ISSN = "0018-8646 (print), 2151-8556 (electronic)", bibdate = "Thu Nov 5 17:12:23 MST 1998", bibsource = "http://www.almaden.ibm.com/journal/sj37-2.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.almaden.ibm.com/journal/sj/373/chamberland.html", acknowledgement = ack-nhfb, fjournal = "IBM Systems Journal", } @Article{Chamberlin:1998:LAB, author = "Gordon Chamberlin", title = "{Linux} Apprentice: Beginner's Guide to {JDK}", journal = j-LINUX-J, volume = "55", pages = "78--79, 82--83", month = nov, year = "1998", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Tue Oct 20 16:41:32 1998", bibsource = "http://www.linuxjournal.com/issue55/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Book{Chan:1998:JCLa, author = "Patrick Chan and Rosanna Lee and Doug Kramer", title = "The {Java} Class Libraries, Volume 1: java.lang, java.io, java.math, java.net, java.text, java.util", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "2080", month = feb, year = "1998", ISBN = "0-201-31002-3", ISBN-13 = "978-0-201-31002-3", LCCN = "QA76.73.J38C47 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$55.95", URL = "http://www.aw.com; http://www2.awl.com/cseng/titles/0-201-31002-3/", acknowledgement = ack-nhfb, url-author = "http://cseng.aw.com/authordetail.qry?AuthorID=1023", url-publisher = "http://www.aw.com/", } @Book{Chan:1998:JCLb, author = "Patrick Chan and Rosanna Lee", title = "The {Java} Class Libraries: {\tt java.applet}, {\tt java.awt}, {\tt java.beans}", volume = "2", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xxix + 1682", year = "1998", ISBN = "0-201-31003-1", ISBN-13 = "978-0-201-31003-0", LCCN = "QA76.73.J38C47 1998", bibdate = "Mon Jun 10 13:33:36 2002", bibsource = "http://www.aw.com/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$54.95", URL = "http://cseng.aw.com/bookdetail.qry?ISBN=0-201-31003-1; http://www2.awl.com/cgi-bin/htsearch?restrict=&exclude=&config=htdig&method=boolean&format=builtin%2Dlong&words=Chan%20AND%20Lee&page=2", acknowledgement = ack-nhfb, annote = "See \cite{Chan:1999:JCLb} for vol. 1.", } @Book{Chan:1998:JCLc, author = "Patrick Chan and Rosanna Lee", title = "The {Java} Class Libraries Poster, {JDK 1.2 Beta 3}", publisher = pub-AW, address = pub-AW:adr, year = "1998", ISBN = "0-201-43292-7", ISBN-13 = "978-0-201-43292-3", LCCN = "????", bibdate = "Wed May 27 07:03:58 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$4.95", acknowledgement = ack-nhfb, } @Book{Chan:1998:JDA, author = "Patrick Chan", title = "The {Java} Developer's Almanac", publisher = pub-AW, address = pub-AW:adr, pages = "976", month = mar, year = "1998", ISBN = "0-201-37967-8", ISBN-13 = "978-0-201-37967-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.awl.com/cseng/javaseries/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www2.awl.com/cseng/javaseries/tjda.htm", price = "US\$18.96", URL = "http://cseng.aw.com/bookdetail.qry?ISBN=0-201-37967-8&ptype=0", acknowledgement = ack-nhfb, } @Book{Chan:1998:TPP, author = "Mark Chan", title = "1001 Tips para Programmar con {Java}", publisher = pub-PH, address = pub-PH:adr, year = "1998", ISBN = "970-10-1762-5", ISBN-13 = "978-970-10-1762-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prentice.com.mx/", price = "????", acknowledgement = ack-nhfb, language = "Spanish", } @InProceedings{Chandy:1998:UALa, author = "K. Mani Chandy and Adam Rifkin and Eve Schooler", title = "Using Announce-Listen with Global Events to Develop Distributed Control Systems", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/dcs.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/dcs.ps", acknowledgement = ack-nhfb, } @Article{Chandy:1998:UALb, author = "K. Mani Chandy and Adam Rifkin and Eve Schooler", title = "Using announce-listen with global events to develop distributed control systems", journal = j-CPE, volume = "10", number = "11--13", pages = "1021--1027", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050420; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050420&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Chang:1998:CSD, author = "Daniel Chang and Dan Harkey", title = "Client\slash server data access with {Java} and {XML}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxvii + 606", year = "1998", ISBN = "0-471-24577-1 (paperback/CD-ROM)", ISBN-13 = "978-0-471-24577-3 (paperback/CD-ROM)", LCCN = "QA76.9.C55 C45 1998", bibdate = "Mon May 24 14:18:29 MDT 1999", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$50", URL = "http://www.wiley.com/compbooks/catalog/24577-1.htm", acknowledgement = ack-nhfb, keywords = "client/server computing; database searching; java (computer program language)", } @Article{Chaumette:1998:JDJ, author = "S. Chaumette", title = "{JEM-DOOS}: The {Java\slash RMI} Based Distributed Objects Operating System of the {JEM} Project", journal = j-LECT-NOTES-COMP-SCI, volume = "1505", pages = "135--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Jan 5 08:21:58 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Chaumette:1998:JJR, author = "S. Chaumette", title = "{JEM-DOOS}: The {Java\slash RMI} Based Distributed Objects Operating System of the {JEM} Project", journal = j-LECT-NOTES-COMP-SCI, volume = "1505", pages = "135--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Jan 5 08:21:58 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @InProceedings{Chenney:1998:EDM, author = "S. Chenney and J. Ichnowski and D. Forsyth", title = "Efficient Dynamics Modeling for {VRML} and {Java}", crossref = "Spencer:1998:PVT", pages = "15--24", year = "1998", bibdate = "Sat Sep 12 09:21:53 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "virtual reality modeling language; VRML", } @Book{Chew:1998:JCC, author = "Frederick F. Chew", title = "The {Java}\slash {C++} Cross Reference Handbook", publisher = pub-PH, address = pub-PH:adr, pages = "xvii + 448", year = "1998", ISBN = "0-13-848318-3", ISBN-13 = "978-0-13-848318-0", LCCN = "QA76.73.J38C48 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$40", URL = "http://www.prenhall.com/ptrbooks/ptr_0138483183.html", acknowledgement = ack-nhfb, url-publisher = "http://www.prenhall.com/", } @Book{Chung:1998:CJD, author = "David R. Chung", title = "Component {Java}: Developing Domponents With {JavaBeans} and {ActiveX} ({Java} Masters)", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "????", month = jan, year = "1998", ISBN = "0-07-913690-7", ISBN-13 = "978-0-07-913690-9", LCCN = "????", bibdate = "Wed Mar 03 07:40:29 1999", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$45", acknowledgement = ack-nhfb, url-publisher = "http://www.mcgraw-hill.com/", } @Article{Chweh:1998:NPT, author = "Crystal Chweh", title = "New Products: {T3E-1200} outshines {its older siblings}; Data Migration Facility ports to {Irix}; {Voyager 2.0} blends {Corba} and {Java}; Virtual flypaper; {Labview} leads {ActiveX} lifestyle; Small space, big storage; {Java} performs {ScriptEase} act", journal = j-IEEE-CONCURR, volume = "6", number = "1", pages = "92--93", month = jan # "\slash " # mar, year = "1998", CODEN = "IECMFX", ISSN = "1092-3063 (print), 1558-0849 (electronic)", ISSN-L = "1092-3063", bibdate = "Mon Jun 7 07:52:29 MDT 1999", bibsource = "http://www.computer.org/concurrency/pd1998/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/pd/books/pd1998/pdf/p1092.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Concurrency", } @Book{Cinderella:1998:OPG, author = "David Cinderella and Derek Ball", title = "Official {PowerJ}: Getting Started", publisher = pub-VENTANA, address = pub-VENTANA:adr, month = jan, year = "1998", ISBN = "1-85032-926-5", ISBN-13 = "978-1-85032-926-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.vmedia.com/", price = "US\$45", acknowledgement = ack-nhfb, } @Article{Clip:1998:NJO, author = "Paul Clip", title = "Networks --- {Java}'s Object-Oriented Communications --- Remote method invocation is a powerful mechanism that enables flexible and scalable distributed communications among {Java} programs", journal = j-BYTE, volume = "23", number = "2", pages = "53--54", month = feb, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Wed Mar 11 09:04:35 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Clip:1998:SCJ, author = "Paul Clip", title = "Servlets: {CGI} the {Java} Way: These server-oriented {Java} classes offer better performance than {CGI} programs. They bring system-independence, too", journal = j-BYTE, volume = "23", number = "5", pages = "55--56", month = may, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon May 11 07:38:50 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Clossman:1998:JRD, author = "Gray Clossman and Phil Shaw and Mark Hapner and Johannes Klein and Richard Pledereder and Brian Becker", title = "{Java} and relational databases (tutorial): {SQLJ}", journal = j-SIGMOD, volume = "27", number = "2", pages = "500--500", month = jun, year = "1998", CODEN = "SRECD8", ISSN = "0163-5808 (print), 1943-5835 (electronic)", ISSN-L = "0163-5808", bibdate = "Mon Jan 12 08:46:03 MST 2004", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGMOD Record", } @InProceedings{Cobb:1998:UUJ, author = "Joan Cobb", title = "Use of {Unicode} and {Java} in a Bibliographic Application", crossref = "UC:1998:TIU", pages = "??--??", year = "1998", bibdate = "Wed Aug 19 16:35:12 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc13/program.html", acknowledgement = ack-nhfb, } @Article{Cockburn:1998:OOAb, author = "Alistair Cockburn", title = "Object-Oriented Analysis and Design, Part 2", journal = j-CCCUJ, volume = "16", number = "6", pages = "??--??", month = jun, year = "1998", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:16 MDT 2002", bibsource = "http://www.cuj.com/articles/1998/9806/9806toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Brewing a good cup of Java takes careful design, even in C++.", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Book{Cockcroft:1998:SPT, author = "Adrian Cockcroft and Richard Pettit", title = "{Sun} Performance and Tuning: {Java} and the {Internet}", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "xxxvi + 587", month = feb, year = "1998", ISBN = "0-13-095249-4", ISBN-13 = "978-0-13-095249-3", LCCN = "QA76.8.S86C63 1998", bibdate = "Thu Sep 10 10:50:45 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$45", URL = "http://www.fdds.com/books/books/Cockcroft/Cockcroft.html; http://www.prenhall.com/ptrbooks/ptr_0130952494.html", acknowledgement = ack-nhfb, url-publisher = "http://www.prenhall.com/", } @Article{Codella:1998:SEJ, author = "C. F. Codella and D. N. Dillenberger and D. F. Ferguson and R. D. Jackson and T. A. Mikalsen and I. Silva-Lepe", title = "Support for {Enterprise JavaBeans} in {Component Broker}", journal = j-IBM-SYS-J, volume = "37", number = "4", pages = "502--??", month = "????", year = "1998", CODEN = "IBMSA7", ISSN = "0018-8670", bibdate = "Wed Nov 25 12:24:04 MST 1998", bibsource = "http://www.almaden.ibm.com/journal/sj37-4.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.almaden.ibm.com/journal/sj/374/codella.html", acknowledgement = ack-nhfb, fjournal = "IBM Systems Journal", } @Article{Cohen:1998:QJ, author = "Sonya Freeman Cohen", title = "Quest for {Java}", journal = j-CACM, volume = "41", number = "1", pages = "81--83", month = jan, year = "1998", CODEN = "CACMA2", ISSN = "0001-0782 (print), 1557-7317 (electronic)", ISSN-L = "0001-0782", bibdate = "Thu Jun 4 06:13:01 MDT 1998", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/journals/cacm/1998-41-1/p81-cohen/", acknowledgement = ack-nhfb, fjournal = "Communications of the ACM", keywords = "documentation; management", subject = "{\bf D.2.m} Software, SOFTWARE ENGINEERING, Miscellaneous. {\bf A.0} General Literature, GENERAL.", } @InProceedings{Colby:1998:OCT, author = "Christopher Colby and Lalita Jategaonkar Jagadeesan and Radha Jagadeesan and Konstantin Laufer and Carlos Puchol", title = "Objects and Concurrency in {Triveni}: {A} Telecommunication Case Study in {Java}", crossref = "USENIX:1998:PFU", pages = "??--??", year = "1998", bibdate = "Fri Oct 18 09:16:59 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/coots98/colby.html", acknowledgement = ack-nhfb, } @InProceedings{Colby:1998:OPT, author = "C. Colby and L. J. Jagadeesan and R. Jagadeesan and K. L{\"a}ufer and C. Puchol", booktitle = "Proceedings of the 1998 Usenix Conference on Object Oriented Technologies and Systems", title = "Objects and Processes in {Triveni}: {A} telecommunication case study in {Java}", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "??--??", year = "1998", bibsource = "http://www.math.utah.edu/pub/bibnet/authors/j/jagadeesan-radha.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "To appear.", } @InProceedings{Collberg:1998:MCR, author = "Christian Collberg and Clark Thomborson and Douglas Low", title = "Manufacturing cheap, resilient, and stealthy opaque constructs", crossref = "ACM:1998:CRP", pages = "184--196", year = "1998", bibdate = "Mon May 3 12:57:52 MDT 1999", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/plan/268946/p184-collberg/", acknowledgement = ack-nhfb, keywords = "algorithms; design; languages; security", subject = "{\bf D.2.0} Software, SOFTWARE ENGINEERING, General, Protection mechanisms. {\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Java. {\bf D.2.11} Software, SOFTWARE ENGINEERING, Software Architectures, Information hiding. {\bf D.2.2} Software, SOFTWARE ENGINEERING, Design Tools and Techniques, Flow charts.", } @Article{Cooper:1998:LJJ, author = "Greg Cooper", title = "Letters: {Java JNI}", journal = j-DDJ, volume = "23", number = "1", pages = "10--10", month = jan, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Dec 2 08:43:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @InProceedings{Coors:1998:UVI, author = "V. Coors and V. Jung", title = "Using {VRML} as an Interface to the {3D} Data Warehouse", crossref = "Spencer:1998:PVT", pages = "121--127", year = "1998", bibdate = "Sat Sep 12 09:21:53 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "virtual reality modeling language; VRML", } @Article{Cornelius:1998:UCJ, author = "Barry Cornelius", title = "Using {CORBA} and {JDBC} to produce Three-Tier Systems", journal = j-SIGPLAN, volume = "33", number = "4", pages = "44--??", month = apr, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Wed Jul 1 06:23:08 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.rowan.edu/sigplan/apr199~1.htm", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Book{Cornell:1998:CJBa, author = "Gary Cornell and Cay S. Horstmann", title = "{Core {Java}, Bd.1 Grundlagen}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, month = sep, year = "1998", ISBN = "3-8272-9565-3 (??invalid ISBN??)", ISBN-13 = "978-3-8272-9565-1 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "90 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Cornell:1998:CPJ, author = "Gary Cornell and Kamal Abdali", title = "{CGI} Programming With {Java}", publisher = pub-PH, address = pub-PH:adr, pages = "400", month = apr, year = "1998", ISBN = "0-13-287079-7", ISBN-13 = "978-0-13-287079-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0132870797/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$44.95", URL = "http://www.prenhall.com/allbooks/ptr_0132870797.html", acknowledgement = ack-nhfb, paperback = "yes", } @Book{Couch:1998:AJN, author = "Justin Couch", title = "Advanced {Java} Network Programming", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, month = feb, year = "1998", ISBN = "0-07-913741-5", ISBN-13 = "978-0-07-913741-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$45", acknowledgement = ack-nhfb, } @InProceedings{Cowie:1998:JPDa, author = "James Cowie", title = "{JTED}: Parallel Discrete-Event Simulation in {Java}", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/jted.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/jted.ps", acknowledgement = ack-nhfb, } @Article{Cowie:1998:JPDb, author = "James Cowie", title = "{JTED}: parallel discrete-event simulation in {Java}", journal = j-CPE, volume = "10", number = "11--13", pages = "993--997", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.interscience.wiley.com/jpages/1040-3108/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050414; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050414&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Criscolo:1998:JQH, author = "Mike Criscolo", title = "{Java Q and A}: How Do {I} Queue {Java} Threads?", journal = j-DDJ, volume = "23", number = "10", pages = "127--129", month = oct, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Sep 11 09:12:05 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1998/1998_10/jqa108.txt; http://www.ddj.com/ftp/1998/1998_10/jqa108.zip", abstract = "In examining queuing techniques in Java, Mike presents one approach to multithreading he has implemented, and examines the differences between centralized- and distributed-queuing models. Additional resources include jqa108.txt (listings) and jqa108.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Culverhouse:1998:VJE, author = "Mark Culverhouse", title = "{Visual J++} Edicion Especial", publisher = pub-EDITORIAL-INFORBOOKS, address = pub-EDITORIAL-INFORBOOKS:adr, year = "1998", ISBN = "84-89660-88-3 (??invalid ISBN??)", ISBN-13 = "978-84-89660-88-5 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.intercom.es/ibooks/ibooks.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", acknowledgement = ack-nhfb, language = "Spanish", } @Article{Culwin:1998:EJJ, author = "Fintan Culwin", title = "Editorial --- Justifying {Java}?", journal = j-SIGPLAN, volume = "33", number = "4", pages = "31--??", month = apr, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Wed Jul 1 06:23:08 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.rowan.edu/sigplan/apr199~1.htm", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Book{Culwin:1998:EPU, author = "Fintan Culwin", title = "The essentials of practical user interface construction, using {Java}", publisher = pub-PH, address = pub-PH:adr, pages = "????", year = "1998", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Sep 08 17:34:57 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.scism.sbu.ac.uk/~fintan/publications.html", acknowledgement = ack-nhfb, } @Book{Culwin:1998:JGP, author = "Fintan Culwin", title = "A {Java GUI} Programmers' Primer", publisher = pub-PH, address = pub-PH:adr, pages = "368", month = mar, year = "1998", ISBN = "0-13-908849-0", ISBN-13 = "978-0-13-908849-0", LCCN = "QA76.73.J38C87 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$35.00", URL = "http://www.prenhall.com/books/esm_0139088490.html", acknowledgement = ack-nhfb, } @Book{Culwin:1998:JOF, author = "Fintan Culwin", title = "{Java}: An Object First Approach", publisher = pub-PH, address = pub-PH:adr, pages = "393", year = "1998", ISBN = "0-13-858457-5", ISBN-13 = "978-0-13-858457-3", LCCN = "QA76.73.J38 C86 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$35", URL = "http://www.prenhall.com/ptrbooks/esm_0138584575.html; http://www.scism.sbu.ac.uk/~fintan/publications.html", acknowledgement = ack-nhfb, } @Book{Culwin:1998:OPJ, author = "Fintan Culwin", title = "{Objektorientiertes Programmieren in Java}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, month = may, year = "1998", ISBN = "3-8272-9564-5 (??invalid ISBN??)", ISBN-13 = "978-3-8272-9564-4 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "100 DM", acknowledgement = ack-nhfb, language = "German", } @Article{Culwin:1998:SSS, author = "Fintan Culwin", title = "Special section: selected papers from the {Java} in the computing curriculum conference", journal = j-SIGPLAN, volume = "33", number = "4", pages = "31--33", month = apr, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:46 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Czajkowski:1998:JRA, author = "Grzegorz Czajkowski and Thorsten von Eicken", title = "{JRes}: {A} Resource Accounting Interface for {Java}", journal = j-SIGPLAN, volume = "33", number = "10", pages = "21--35", month = oct, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:52 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Book{Daconta:1998:JJCa, author = "Michael C. Daconta and others", title = "{Java} 1.2 and {Javascript} for {C} and {C++} programmers", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "????", month = feb, year = "1998", ISBN = "0-471-18359-8", ISBN-13 = "978-0-471-18359-4", LCCN = "QA76.73.J38 J3593 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$55", URL = "http://www.wiley.com/compbooks/catalog/18359-8.htm", acknowledgement = ack-nhfb, } @Book{Daconta:1998:JJCb, author = "Michael C. Daconta and others", title = "{Java 1.2} and {JavaScript} for {C} and {C++} Programmers\slash {Microsoft Internet Explorer 4} Site Builder Toolkit", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "????", year = "1998", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Aug 31 17:27:41 1999", bibsource = "http://lcis.booksonline.com/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$94.98", acknowledgement = ack-nhfb, xxnote = "Check year.", } @Article{Dalrymple:1998:LES, author = "Robert A. Dalrymple", title = "{Linux} in Education: Sharing Pedagogy with {Java}", journal = j-LINUX-J, volume = "56", pages = "54--55", month = dec, year = "1998", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Thu Nov 19 17:47:27 MST 1998", bibsource = "http://noframes.linuxjournal.com/lj-issues/issue56/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Article{Danilko:1998:GJF, author = "Brian Danilko", title = "A Graphical {Java} Front End to {C++} Programs", journal = j-CCCUJ, volume = "16", number = "1", pages = "??--??", month = jan, year = "1998", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:13 MDT 2002", bibsource = "http://www.cuj.com/articles/1998/9801/9801toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Mixing Java and C/C++ can give you the best of both worlds, once you learn how.", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @TechReport{Darcy:1998:APE, author = "Joseph D. Darcy and William Kahan", title = "Analysis of {{\em Proposal for Extension to Java Floating Point Semantics, Revision 1}}", institution = "{Java Grande Numerics Working Group}", pages = "18", day = "7", month = aug, year = "1998", bibdate = "Mon May 06 09:08:27 2002", bibsource = "http://www.math.utah.edu/pub/bibnet/authors/k/kahan-william-m.bib; http://www.math.utah.edu/pub/tex/bib/fparith.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sonic.net/~jddarcy/Research/jgrande.pdf", acknowledgement = ack-nhfb, } @MastersThesis{Darcy:1998:BAI, author = "Joseph D. Darcy", title = "{Borneo 1.0}: adding {IEEE 754} floating point support to {Java}", type = "{Master of Science, Plan II}", school = "University of California, Berkeley, Dept. of Electrical Engineering and Computer Sciences", address = "Berkeley, CA, USA", pages = "131", year = "1998", LCCN = "T7.49.1998 D27", bibdate = "Mon May 06 09:01:22 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sonic.net/~jddarcy/Borneo/borneo.pdf", acknowledgement = ack-nhfb, } @InProceedings{Darcy:1998:EJF, author = "Joseph D. Darcy", title = "Evolving {Java}'s Floating Point Support: The Good, The Bad, and the Ugly", crossref = "MacKay:1998:PCT", pages = "??--??", year = "1998", bibdate = "Mon May 06 09:11:13 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "31 slides.", URL = "http://www.sonic.net/~jddarcy/Research/cascon.pdf", acknowledgement = ack-nhfb, } @TechReport{Darcy:1998:WRI, author = "Joseph D. Darcy", title = "Writing robust {IEEE} recommended functions in ``100 Pure {Java\TM{}}''", type = "Report", number = "UCB/CSD-98-1009", institution = "University of California, Berkeley. Computer Science Division", address = "Berkeley, CA, USA", month = aug, year = "1998", bibdate = "Mon May 06 09:03:35 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://sunsite.berkeley.edu/Dienst/UI/2.0/Describe/ncstrl.ucb/CSD-98-1009", acknowledgement = ack-nhfb, } @Book{Davis:1998:AFC, author = "Stephen R. Davis", title = "Application Foundation Class ({AFC}) Programmer's Guide", publisher = pub-MICROSOFT, address = pub-MICROSOFT:adr, pages = "xx + 487", month = jan, year = "1998", ISBN = "1-57231-732-9", ISBN-13 = "978-1-57231-732-1", LCCN = "QA76.625 .D38 1998", bibdate = "Wed Feb 21 07:01:34 2001", bibsource = "http://mspress.microsoft.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$40", URL = "http://mspress.microsoft.com/order/bookpage.asp?title_id=1486", acknowledgement = ack-nhfb, } @Article{Davis:1998:JDR, author = "D. Davis and M. Bart and T. Bennett and S. Edwards", title = "A {Java} Development and Runtime Environment for Reconfigurable Computing", journal = j-LECT-NOTES-COMP-SCI, volume = "1388", pages = "43--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Davis:1998:PMV, author = "Stephen R. Davis", title = "Programming {Microsoft Visual J++ 6.0}", publisher = pub-MICROSOFT, address = pub-MICROSOFT:adr, pages = "????", year = "1998", ISBN = "1-57231-701-9", ISBN-13 = "978-1-57231-701-7", LCCN = "QA76.73.J38D39 1998", bibdate = "Tue Jan 26 18:15:35 1999", bibsource = "http://mspress.microsoft.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$45", acknowledgement = ack-nhfb, } @Article{DDJ:1998:NVN, author = "{DDJ Staff}", title = "News and Views: New Trends in Vaporware; Distance Ed Might Pay Off; Life in the Fast Lane; Making Friends in {Washington}; News on {OpenGL 1.2}; No Discounts for Schools; Let's Do Lunch; Encryption Export Challenge?; {Java} Fissures; Searching for Talent in Science; Nanomedicine", journal = j-DDJ, volume = "23", number = "6", pages = "18--18", month = jun, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat May 30 10:34:02 MDT 1998", bibsource = "http://www.ddj.com/ddj/1998/1998_06/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, annote = "This is a interesting, and critical, commentary on the state of bank loans for funding college education in the USA.", fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{DDJStaff:1998:NVN, author = "{DDJ Staff}", title = "News and Views: New Trends in Vaporware; Distance Ed Might Pay Off; Life in the Fast Lane; Making Friends in {Washington}; News on {OpenGL 1.2}; No Discounts for Schools; Let's Do Lunch; Encryption Export Challenge?; {Java} Fissures; Searching for Talent in Science; Nanomedicine", journal = j-DDJ, volume = "23", number = "6", pages = "18--18", month = jun, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat May 30 10:34:02 MDT 1998", bibsource = "http://www.ddj.com/ddj/1998/1998_06/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, annote = "This is a interesting, and critical, commentary on the state of bank loans for funding college education in the USA.", fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{DDJStaff:1998:NVO, author = "{The DDJ staff}", title = "News \& Views: Online Database Derby Results; Integrated {IC}s; {Java} Gets the Nod; {HP} to go; Drive Capacities Go Even Higher; {DSL} Gets a Boost; School Days; {NC}: The Network Car?; The Bug Itself; {GeezerWare}", journal = j-DDJ, volume = "23", number = "2", pages = "18--18", month = feb, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Jan 06 10:25:12 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{DDJStaff:1998:NVS, author = "{DDJ Staff}", title = "News and Views: {A} {Standard Linux}? Cryptography Contest; Drives Get Smaller {\small and} {\footnotesize Smaller}; {Perl} Conference; Really Embedded Systems; Programmer Shortage?; {Beowulf}: {Linux} Clustering; {Java SPEC} Released", journal = j-DDJ, volume = "23", number = "11", pages = "16--16", month = nov, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Oct 28 18:43:06 MST 1998", bibsource = "http://www.ddj.com/; http://www.math.utah.edu/pub/tex/bib/dr-dobbs-1990.bib; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/linux.bib", URL = "http://www.ddj.com/", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Decker:1998:PJI, author = "Rick Decker and Stuart Hirshfield", title = "programming.java: An Introduction to Programming, Beta Edition", publisher = pub-PWS, address = pub-PWS:adr, pages = "xviii + 574", year = "1998", ISBN = "0-534-95588-6", ISBN-13 = "978-0-534-95588-5", LCCN = "QA76.73.J38D44 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.thomson.com/pws/default.html", price = "US\$36", URL = "http://www.pws.com/compsci/javabook.html", acknowledgement = ack-nhfb, url-publisher = "http://www.thomson.com/pws/default.html", } @Book{Deitel:1998:JHP, author = "Harvey M. Deitel and Paul J. Deitel", title = "{Java} How to Program", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "????", month = aug, year = "1998", ISBN = "0-13-899394-7 (softcover)", ISBN-13 = "978-0-13-899394-8 (softcover)", LCCN = "QA76.73.J38D45 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$45.00", URL = "http://www.prenhall.com/ptrbooks/esm_0138993947.html", acknowledgement = ack-nhfb, } @InProceedings{DeJong:1998:CME, author = "Moses DeJong and Brian Bailey and Joseph A. Konstan", title = "Creating a Multimedia Extension for {Tcl} Using the {Java Media Framework}", crossref = "USENIX:1998:PSA", pages = "??--??", year = "1998", bibdate = "Fri Oct 18 07:49:55 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://db.usenix.org/publications/library/proceedings/tcl98/dejong.html", acknowledgement = ack-nhfb, } @Book{DelGrosso:1998:J, author = "Antonio {Del Grosso}", title = "{Java}", publisher = "vdf Hochschulverlag", address = "????", year = "1998", ISBN = "3-7281-2573-3", ISBN-13 = "978-3-7281-2573-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://vdf.ethz.ch/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "48 DM", URL = "http://vdf.ethz.ch/vdf/info/2573.html", acknowledgement = ack-nhfb, language = "German", } @InProceedings{Demaine:1998:CCP, author = "Erik D. Demaine", title = "Converting {C} Pointers to {Java} References", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/pointers.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/pointers.ps", acknowledgement = ack-nhfb, } @Article{Demaine:1998:CJC, author = "Erik D. Demaine", title = "{C} to {Java}: converting pointers into references", journal = j-CPE, volume = "10", number = "11--13", pages = "851--861", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050394; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050394&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{deMeer:1998:TAE, author = "Hermann {de Meer} and Jan-Peter Richter and Antonio Puliafito and Orazio Tomarchio", title = "Tunnel agents for enhanced {Internet QoS}", journal = j-IEEE-CONCURR, volume = "6", number = "2", pages = "30--39", month = apr # "--" # jun, year = "1998", CODEN = "IECMFX", DOI = "http://dx.doi.org/10.1109/4434.678787", ISSN = "1092-3063 (print), 1558-0849 (electronic)", ISSN-L = "1092-3063", bibdate = "Thu Nov 5 08:27:58 MST 1998", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Univ of Hamburg", affiliationaddress = "Hamburg, Ger", classification = "722.3; 722.4; 723.1.1", fjournal = "IEEE Concurrency", journalabr = "IEEE Concurrency", keywords = "High level languages; Interactive computer systems; Internet; Java programming language; Multiprocessing systems; Quality of service; Tunnel agents; Wide area networks", } @Book{Dennis:1998:MCJ, author = "Gregory C. Dennis and James R. Rubin", title = "Mission-critical {Java} project management: business strategies, applications, and development", publisher = pub-AW, address = pub-AW:adr, pages = "xviii + 245", month = aug, year = "1998", ISBN = "0-201-32573-X", ISBN-13 = "978-0-201-32573-7", LCCN = "HF5548.5.J38 D46 1999", bibdate = "Wed Feb 21 07:02:38 2001", bibsource = "http://www.awl.com/cseng/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35", acknowledgement = ack-nhfb, xxtitle = "Mission Critical {Java}: Developing Real-World Business Applications", } @Book{Descartes:1998:JNM, author = "Descartes", title = "{Java} Native Methods", publisher = pub-ORA, address = pub-ORA:adr, month = apr, year = "1998", ISBN = "1-56592-345-6", ISBN-13 = "978-1-56592-345-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", price = "????", acknowledgement = ack-nhfb, } @Book{Deugo:1998:JGJ, editor = "Dwight Deugo", title = "{Java} Gems: Jewels from {Java} Report", publisher = pub-CUP, address = pub-CUP:adr, pages = "viii + 230", month = jan, year = "1998", ISBN = "0-521-64824-6", ISBN-13 = "978-0-521-64824-0", LCCN = "A76.73.J38 J367 1998", bibdate = "Wed Feb 21 07:03:31 2001", bibsource = "http://www.cup.org; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "UK\pounds20", URL = "http://193.60.94.193/scripts/webbook.asp?isbn=0521648246", acknowledgement = ack-nhfb, } @Article{Diehl:1998:FIC, author = "Stephan Diehl", title = "A Formal Introduction to the Compilation of {Java}", journal = j-SPE, volume = "28", number = "3", pages = "297--327", month = mar, year = "1998", CODEN = "SPEXBL", ISSN = "0038-0644 (print), 1097-024X (electronic)", ISSN-L = "0038-0644", bibdate = "Thu Jul 29 15:11:41 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=1782; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=1782&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Software---Practice and Experience", } @InProceedings{Divjak:1998:DHB, author = "S. Divjak", title = "Design of Hypertext Based Courseware with the Integrated {JAVA} and {VRML} Modules", crossref = "IEEE:1998:MME", volume = "1", pages = "178--181", year = "1998", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Book{Doberenz:1998:JPI, author = "Walter Doberenz and Uwe Druckenm{\"u}ller", title = "{Java: Programmierung interaktiver WWW-Seiten}", publisher = pub-CARL-HANSER, address = pub-CARL-HANSER:adr, edition = "Second", pages = "448", year = "1998", ISBN = "3-446-19047-3", ISBN-13 = "978-3-446-19047-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.hanser.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "59 DM; 54,80 SFr; 431,- {\"O}S", URL = "http://www.buchhandel.de/cgi-bin/bksuche.exe?aktion=full&opacdb=VLB+Buchkatalog&lang=german&uid=12573-02101997-16184600&II=1268266&vcaller=12573&aktionsort=on&sortby=KT; http://www.hanser.de/computer/buecher/do19047.htm", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.hanser.de/", } @Article{Dobson:1998:PEH, author = "Rick Dobson", title = "Programming {ECMAScript}: The Holy Standard?", journal = j-BYTE, volume = "23", number = "7", pages = "47--??", month = jul, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Thu Dec 10 19:10:09 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "An international version of JavaScript can ensure that your scripts will work properly with any browser that supports this standard.", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Doherty:1998:SEU, author = "Don Doherty", title = "Special Edition Using {JBuilder}", publisher = pub-QUE, address = pub-QUE:adr, pages = "????", month = jan, year = "1998", ISBN = "0-7897-0892-2", ISBN-13 = "978-0-7897-0892-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/que/", } @Book{Downing:1998:JRR, author = "Troy Bryan Downing", title = "{Java RMI}: {Remote Method Invocation}", publisher = pub-IDG, address = pub-IDG:adr, pages = "xxi + 298", month = jan, year = "1998", ISBN = "0-7645-8043-4 (softcover)", ISBN-13 = "978-0-7645-8043-7 (softcover)", LCCN = "QA76.73.J38D69 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35.99", URL = "http://www.idgbooks.com/cgi-bin/db/fill_out_template.pl?idgbook:0-7645-8043-4:book-idg::uidg323", acknowledgement = ack-nhfb, xxtitle = "{RMI}: Developing Distributed {Java} Applications with {Remote Method Invocation} and Object Serialization", } @Book{Downing:1998:SSJ, author = "Troy Bryan Downing", title = "Server-Side {Java} Power Guide", publisher = pub-IDG, address = pub-IDG:adr, pages = "????", year = "1998", ISBN = "0-7645-8046-9", ISBN-13 = "978-0-7645-8046-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", acknowledgement = ack-nhfb, url-author = "http://www.webcal.com/downing/index.html", url-publisher = "http://www.idgbooks.com/", } @InProceedings{Dray:1998:RNJ, author = "Jim Dray", title = "Report on the {NIST Java AES} Candidate Algorithm Analysis", crossref = "NIST:1998:FAE", pages = "29", year = "1998", bibdate = "Fri Feb 16 07:31:24 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://csrc.nist.gov/encryption/aes/round1/r1-java.pdf", acknowledgement = ack-nhfb, } @Article{Dreystadt:1998:SJR, author = "John Dreystadt", title = "Storing {Java} in a Relational Database", journal = j-BYTE, volume = "23", number = "6", pages = "61--??", month = jun, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Thu Dec 10 19:10:07 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Java's object-oriented nature makes database programming and maintenance easier.", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Drossopoulou:1998:WJB, author = "Sophia Drossopoulou and David Wragg and Susan Eisenbach", title = "What is {Java} Binary Compatibility?", journal = j-SIGPLAN, volume = "33", number = "10", pages = "341--358", month = oct, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:52 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Book{Duego:1998:JG, editor = "Dwight Duego", title = "{Java} Gems", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "248", year = "1998", ISBN = "0-13-64824-6 (??Invalid checksum??)", ISBN-13 = "0-13-64824-6 (??Invalid checksum??)", LCCN = "????", bibdate = "Mon May 11 09:42:18 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.95", acknowledgement = ack-nhfb, url-publisher = "http://www.prenhall.com/", } @Book{Eckel:1998:TJ, author = "Bruce Eckel", title = "Thinking in {Java}", publisher = pub-PH, address = pub-PH:adr, pages = "1098", year = "1998", ISBN = "0-13-659723-8", ISBN-13 = "978-0-13-659723-0", LCCN = "QA76.73.J38 E25 1998", bibdate = "Tue Feb 20 17:57:44 2001", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.phptr.com/ptrbooks/ptr_0136597238.html http://www.prenhall.com/", price = "????", series = "SunSoft Press Java series", URL = "http://www.eckelobjects.com/javabook.html", acknowledgement = ack-nhfb, url-author = "http://www.EckelObjects.com/", url-publisher = "http://www.prenhall.com/", } @Book{Eckstein:1998:JS, author = "Robert Eckstein and Marc Loy and Dave Wood", title = "{Java} Swing", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxviii + 1227", year = "1998", ISBN = "1-56592-455-X", ISBN-13 = "978-1-56592-455-0", LCCN = "QA76.73.J38 E27 1998", bibdate = "Wed Feb 21 07:06:27 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www1.clbooks.com/asp/BookInfo/BookInfo.asp?theisbn=156592455x", price = "US\$39.95", acknowledgement = ack-nhfb, } @Article{Emery:1998:AAB, author = "David E. Emery and Robert F. Mathis and Karl A. Nyberg", title = "Automating the {Ada} Binding Process for {Java} --- How Far Can We Go?", journal = j-LECT-NOTES-COMP-SCI, volume = "1411", pages = "29--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Feb 5 11:52:10 MST 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t1411.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://link.springer-ny.com/link/service/series/0558/bibs/1411/14110029.htm; http://link.springer-ny.com/link/service/series/0558/papers/1411/14110029.pdf", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Engelbrecht:1998:ITS, author = "R. L. Engelbrecht and D. Kourie", title = "Issues in translating {Smalltalk} to {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1383", pages = "249--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Englander:1998:PCJ, author = "Robert Englander", title = "Programmare con {JavaBeans}", publisher = pub-JACKSON-LIBRI, address = pub-JACKSON-LIBRI:adr, month = feb, year = "1998", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.jacksonlibri.it/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "45000 L.", acknowledgement = ack-nhfb, language = "Italian", } @Article{Esteire:1998:STN, author = "Oscar Aza{\~n}{\'o}n Esteire and Juan Manuel Cueva Lovelle", title = "Set of tools for native code generation for the {Java} virtual machines", journal = j-SIGPLAN, volume = "33", number = "3", pages = "73--79", month = mar, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:45 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Fan:1998:CEM, author = "Ming Fan and Jan Stallaert and Andrew B. Whinston", title = "Creating Electronic Markets", journal = j-DDJ, volume = "23", number = "11", pages = "52, 54--57", month = nov, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Oct 28 18:43:06 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1998/1998_11/fbts.txt", abstract = "Our authors describe a web-based Financial Bundle Trading System that lets you access financial markets using Java applets embedded in web browsers. Additional resources include fbts.txt (listings).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Farley:1998:JDC, author = "James Farley", title = "{Java} Distributed Computing", publisher = pub-ORA, address = pub-ORA:adr, pages = "xiv + 368", year = "1998", ISBN = "1-56592-206-9", ISBN-13 = "978-1-56592-206-8", LCCN = "QA76.9.D5F37 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", price = "US\$30", URL = "http://www.ora.com/catalog/javadc/", acknowledgement = ack-nhfb, } @Article{Farrow:1998:UJ, author = "Rik Farrow", title = "Using {Java}", journal = j-LOGIN, volume = "23", number = "1", pages = "??--??", month = feb, year = "1998", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:29 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/contents/contents.feb98.html", URL = "http://www.usenix.org/publications/java/javaindex.html; http://www.usenix.org/publications/java/usingjava9.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Book{Feiler:1998:CIJ, author = "Jesse Feiler", title = "{ClarisWorks}: The {Internet}, {Java} and Paperless Documents", publisher = pub-AP-PROFESSIONAL, address = pub-AP-PROFESSIONAL:adr, pages = "xxiii + 348", month = jan, year = "1998", ISBN = "0-12-251332-0 (softcover)", ISBN-13 = "978-0-12-251332-9 (softcover)", LCCN = "QA76.76.I57F44 1997", bibdate = "Mon Jun 22 11:13:04 1998", bibsource = "http://www.apnet.com/approfessional/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$31.45", acknowledgement = ack-nhfb, xxnote = "Data Research Associates has title: ClarisWorks : the Internet, new media, and paperless documents", xxtitle = "{ClarisWorks 5.0}: the {Internet}, new media, and paperless documents", } @Book{Felleisen:1998:LJF, author = "Matthias Felleisen and Daniel P. Friedman", title = "A little {Java}, a few patterns", publisher = pub-MIT, address = pub-MIT:adr, pages = "xiv + 179", year = "1998", ISBN = "0-262-56115-8", ISBN-13 = "978-0-262-56115-0", LCCN = "QA76.73.J38F45 1998", bibdate = "Sat Aug 08 09:37:03 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Drawings by Duane Bibby, and foreword by Ralph E. Johnson.", acknowledgement = ack-nhfb, } @InProceedings{Ferrari:1998:JNPa, author = "Adam J. Ferrari", title = "{JPVM}: Network Parallel Computing in {Java}", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/jpvm.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/jpvm.ps", acknowledgement = ack-nhfb, } @Article{Ferrari:1998:JNPb, author = "Adam Ferrari", title = "{JPVM}: network parallel computing in {Java}", journal = j-CPE, volume = "10", number = "11--13", pages = "985--992", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.interscience.wiley.com/jpages/1040-3108/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050413; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050413&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Firesmith:1998:DCJ, author = "Donald G. Firesmith and Greg Hendley and Scott Krutsch and Marshall Stowe", title = "Documenting a complete {Java} application using {OPEN}", publisher = pub-AW, address = pub-AW:adr, pages = "xxiv + 404", year = "1998", ISBN = "0-201-34277-4", ISBN-13 = "978-0-201-34277-2", LCCN = "QA76.64.D63 1998", bibdate = "Wed Dec 02 12:44:41 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$41.35", acknowledgement = ack-nhfb, } @Book{Fish:1998:OPE, author = "David Fish", title = "Official {PowerJ}: Enterprise Applications Development", publisher = pub-VENTANA, address = pub-VENTANA:adr, month = feb, year = "1998", ISBN = "1-85032-921-4", ISBN-13 = "978-1-85032-921-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.vmedia.com/", price = "US\$45", acknowledgement = ack-nhfb, } @Book{Fisher:1998:BJ, author = "Yuval Fisher", title = "Brewing {JavaScript}", publisher = pub-SV, address = pub-SV:adr, pages = "350", day = "1", month = dec, year = "1998", ISBN = "0-387-94816-3", ISBN-13 = "978-0-387-94816-4", LCCN = "????", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0-387-94816-3/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.95", acknowledgement = ack-nhfb, keywords = "(computer program language); JavaScript; technology -- computers and computer technology", paperback = "yes", } @Book{Flanagan:1998:JDG, author = "David Flanagan", title = "{JavaScript}: The Definitive Guide", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "xiv + 776", month = jun, year = "1998", ISBN = "1-56592-392-8", ISBN-13 = "978-1-56592-392-8", LCCN = "A76.73.J39 F53 1998", bibdate = "Wed Feb 21 07:07:47 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.95", URL = "http://www.oreilly.com/catalog/jscript3", acknowledgement = ack-nhfb, } @Book{Flanagan:1998:JEN, author = "David Flanagan", title = "{Java Examples in a Nutshell --- Deutsche Ausgabe}", publisher = pub-ORA, address = pub-ORA:adr, month = mar, year = "1998", ISBN = "3-89721-112-2 (??invalid ISBN??)", ISBN-13 = "978-3-89721-112-4 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.de/", price = "49 DM", URL = "http://www.oreilly.de/german/java/jenut/", acknowledgement = ack-nhfb, language = "German", } @Book{Flanagan:1998:JNDa, author = "David Flanagan", title = "{Java in a Nutshell, Deutsche Ausgabe}", publisher = pub-ORA, address = pub-ORA:adr, pages = "????", year = "1998", ISBN = "3-930673-46-0 (??invalid ISBN??)", ISBN-13 = "978-3-930673-46-9 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.de/", price = "39 DM", URL = "http://www.ora.com/gnn/bus/ora/item/javanut.author.html; http://www.ora.de/", acknowledgement = ack-nhfb, language = "German", } @Book{Flanagan:1998:JNDb, author = "David Flanagan", title = "{Java in a Nutshell (Deutsche Ausgabe), 2. Auflage}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xvi + 638", year = "1998", ISBN = "3-89721-100-9", ISBN-13 = "978-3-89721-100-1", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "49 DM", URL = "http://www.oreilly.de/german/java/javanut2/", acknowledgement = ack-nhfb, language = "German", url-author = "http://www.oreilly.de/german/java/javanut2/autor.html", url-publisher = "http://www.ora.de/", } @Book{Flanagan:1998:JPR, author = "David Flanagan", title = "{JavaScript} Pocket Reference", publisher = pub-ORA, address = pub-ORA:adr, pages = "v + 89", year = "1998", ISBN = "1-56592-521-1", ISBN-13 = "978-1-56592-521-2", LCCN = "QA76.73.J39 F52 1998", bibdate = "Wed Feb 21 07:08:33 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$7.95", URL = "http://www.oreilly.com/catalog/jscriptpr", acknowledgement = ack-nhfb, } @InProceedings{Flatt:1998:CM, author = "Matthew Flatt and Shriram Krishnamurthi and Matthias Felleisen", title = "Classes and mixins", crossref = "ACM:1998:CRP", pages = "171--183", year = "1998", bibdate = "Mon May 3 12:57:52 MDT 1999", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/plan/268946/p171-flatt/", acknowledgement = ack-nhfb, keywords = "algorithms; languages", subject = "{\bf D.1.5} Software, PROGRAMMING TECHNIQUES, Object-oriented Programming. {\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Java. {\bf D.3.3} Software, PROGRAMMING LANGUAGES, Language Constructs and Features. {\bf F.3.3} Theory of Computation, LOGICS AND MEANINGS OF PROGRAMS, Studies of Program Constructs, Type structure. {\bf F.3.2} Theory of Computation, LOGICS AND MEANINGS OF PROGRAMS, Semantics of Programming Languages, Operational semantics.", } @Article{Flint:1998:UJA, author = "Shayne Flint", title = "Using {Java APIs} with Native {Ada} Compilers", journal = j-SIGADA-LETTERS, volume = "18", number = "6", pages = "193--203", month = nov # "\slash " # dec, year = "1998", CODEN = "AALEE5", ISSN = "0736-721X", ISSN-L = "0736-721X", bibdate = "Tue Apr 20 17:47:37 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGADA Ada Letters", } @Book{Flynn:1998:VJP, author = "Jim Flynn and Bill Clarke", title = "{Visual J++}: Programando em {Java}", publisher = pub-MAKRON, address = pub-MAKRON:adr, month = apr, year = "1998", ISBN = "85-346-0805-9 (??invalid ISBN??)", ISBN-13 = "978-85-346-0805-3 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://safe.tesla.com.br/makron/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "R\$89", URL = "http://safe.tesla.com.br/makron/options/livro.asp?id=681", acknowledgement = ack-nhfb, language = "Portuguese", } @Article{For:1998:HHP, author = "G. C. For and W. Furmanski and T. Haupt and E. Akarsu", title = "{HPcc} as High Performance Commodity Computing on Top of Integrated {Java}, {CORBA}, {COM} and {Web} Standards", journal = j-LECT-NOTES-COMP-SCI, volume = "1470", pages = "55--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Ford:1998:MES, author = "Dan Ford", title = "Mutual Exclusion and Synchronization in {Java}: Mimicking {Win32} synchronization mechanisms", journal = j-DDJ, volume = "23", number = "1", pages = "62, 64, 66, 68--70, 73--75", month = jan, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Dec 2 08:43:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Dan discusses Java's concurrency features, presenting classes for mutual exclusion and synchronization that mimic the behavior and interfaces of the synchronization mechanisms available in the Win32 API. Additional resources include: XSYNC.TXT (listings).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Forster:1998:JP, author = "David Forster", title = "The {Java} Primer", publisher = pub-AW, address = pub-AW:adr, pages = "????", month = jan, year = "1998", ISBN = "0-201-58685-1", ISBN-13 = "978-0-201-58685-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$10", acknowledgement = ack-nhfb, } @Article{Forte:1998:SMJ, author = "Dario Forte", title = "The Security Model of {JDK 1.2}", journal = j-LOGIN, volume = "23", number = "6", pages = "??--??", month = oct, year = "1998", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:39 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/contents/contents.oct98.html", URL = "http://www.usenix.org/publications/login/1998-10/jdk.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{Fox:1998:EJH, author = "Geoffrey Fox", title = "Editorial: {Java} for high-performance network computing", journal = j-CPE, volume = "10", number = "11--13", pages = "821--824", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050427; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050427&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{FraminanTorres:1998:GBD, author = "Jos{\'e} Manuel {Frami{\~n}{\'a}n Torres} and Jos{\'e} Miguel Le{\'o}n Blanco", title = "Gestion de Basas de Datos en {Internet JDBC}", publisher = pub-ANAYA-MULTIMEDIA, address = pub-ANAYA-MULTIMEDIA:adr, pages = "544", year = "1998", ISBN = "84-415-0208-0", ISBN-13 = "978-84-415-0208-6", LCCN = "????", bibdate = "Sat May 15 16:53:48 1999", bibsource = "http://www.anaya.es/multimedia/; http://www.edera.es/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "4,495 Ptas.", URL = "http://www2.anaya.es/Catalogo/CGA?act=L&art=2321018&ed=2300", acknowledgement = ack-nhfb, language = "Spanish", } @Article{Franz:1998:JVM, author = "Michael Franz", title = "The {Java Virtual Machine}: {A} Passing Fad?", journal = j-IEEE-SOFTWARE, volume = "15", number = "6", pages = "26--29", month = nov # "\slash " # dec, year = "1998", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/52.730834", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Mon Jan 4 07:38:57 MST 1999", bibsource = "http://computer.org/software/so1998/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://computer.org/software/so1998/s6026abs.htm; http://dlib.computer.org/so/books/so1998/pdf/s6026.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Software", } @Article{Franz:1998:OSB, author = "M. Franz", title = "Open Standards Beyond {Java}: On the Future of Mobile Code for the {Internet}", journal = j-J-UCS, volume = "4", number = "5", pages = "522--??", day = "28", month = may, year = "1998", CODEN = "????", ISSN = "0948-6968", ISSN-L = "0948-6968", bibdate = "Sat Aug 15 12:44:49 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://medoc.springer.de:8000/jucs/jucs_4_5/open_standards_beyond_java; internal&sk=0C220489", acknowledgement = ack-nhfb, fjournal = "J.UCS: Journal of Universal Computer Science", } @Article{Freund:1998:TSO, author = "Stephen N. Freund and John C. Mitchell", title = "A Type System for Object Initialization in the {Java} Bytecode Language", journal = j-SIGPLAN, volume = "33", number = "10", pages = "310--328", month = oct, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:52 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Book{Friedel:1998:JPL, author = "David Friedel and Anthony Potts", title = "{Java} Programming Language Handbook", publisher = pub-IMPRESS, address = pub-IMPRESS:adr, month = mar, year = "1998", ISBN = "4-8443-4865-5", ISBN-13 = "978-4-8443-4865-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.ips.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "3,200 yen", URL = "http://www.ips.co.jp/book/4865/4865.htm", acknowledgement = ack-nhfb, } @Article{Friesenhahn:1998:PWJ, author = "Bob Friesenhahn", title = "Programming --- Writing {JavaScript} Applications --- Some tricks for building useful applications, and some ways to get around this language's limitations", journal = j-BYTE, volume = "23", number = "2", pages = "59--60", month = feb, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Wed Mar 11 09:04:35 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Fuenfrocken:1998:TMJ, author = "S. Fuenfrocken", title = "Transparent Migration of {Java}-Based Mobile Agents: Capturing and Reestablishing the State of {Java} Programs", journal = j-LECT-NOTES-COMP-SCI, volume = "1477", pages = "26--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Jan 5 08:21:58 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Funfrocken:1998:TMJ, author = "Stefan F{\"u}nfrocken", title = "Transparent Migration of {Java}-Based Mobile Agents", journal = j-LECT-NOTES-COMP-SCI, volume = "1477", pages = "26--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Feb 5 11:52:52 MST 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t1477.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://link.springer-ny.com/link/service/series/0558/bibs/1477/14770026.htm; http://link.springer-ny.com/link/service/series/0558/papers/1477/14770026.pdf", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Garber:1998:NBHa, author = "Lee Garber", title = "News Briefs: {HP} Enters the {Java} Fray: Toward a More Intelligent {Web}: Mobile {IP} on the Move: Dispute over Reported {IT} Worker Shortage", journal = j-COMPUTER, volume = "31", number = "6", pages = "19--21", month = jun, year = "1998", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Sat Oct 24 12:36:57 1998", bibsource = "http://computer.org/computer/co1998/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1998/pdf/r6019.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Garber:1998:NBS, author = "Lee Garber", title = "News Briefs: {Sun} Gets {OK} to Propose {Java} Standards; Domain Name Plan Delayed; Encryption Battle Heats Up; Monstor Processes to Debut in 1998; Work Begins on {API} for Digital {TV}; {ISO} Approves {C++ Standard}; New Standard for Parallel Processing Workstations; {IBM} Unveils High-Capacity Disk Technology", journal = j-COMPUTER, volume = "31", number = "1", pages = "21--24", month = jan, year = "1998", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Wed Mar 4 10:07:59 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://pdf.computer.org/co/books/co1998/pdf/r1021.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Book{Geary:1998:GJVa, author = "David M. Geary and Alan L. McClellan", title = "Graphic {Java 1.2}: mastering the {JFC}: Volume 1 --- {AWT}", publisher = pub-SUNSOFT, address = pub-SUNSOFT:adr, edition = "Third", pages = "800", month = aug, year = "1998", ISBN = "0-13-079666-2", ISBN-13 = "978-0-13-079666-0", LCCN = "????", bibdate = "Thu Feb 04 06:34:24 1999", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.phptr.com/ptrbooks/ptr_0130796662.html; http://www.prenhall.com/; http://www.sun.com/books/catalog/Geary3/Geary3.html; http://www1.clbooks.com/asp/BookInfo/BookInfo.asp?theisbn=0130796662", price = "US\$50", series = "SunSoft Press Java series", URL = "http://www.phptr.com/ptrbooks/ptr_0130796662.html; http://www.prenhall.com/books/ptr_0130796662.html; http://www.sun.com/books/catalog/books_comingsoon.html", acknowledgement = ack-nhfb, keywords = "Computer graphics -- Computer programs; Java (Computer program language); object-oriented databases", xxtitle = "Graphic {Java} Volume 1: Mastering the {JFC}", xxtitle = "Graphic {Java 1.2}: mastering the {JFC}: Volume 1 --- {AWT}", } @Book{Geary:1998:GJVc, author = "David Geary", title = "Graphic {Java} Volume 3: {2D API}", publisher = pub-PH, address = pub-PH:adr, edition = "Third", month = jun, year = "1998", ISBN = "0-13-079668-9", ISBN-13 = "978-0-13-079668-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "????", URL = "http://www.prenhall.com/books/ptr_0130796689.html", acknowledgement = ack-nhfb, } @InProceedings{Getov:1998:HPPa, author = "Vladimir Getov and Susan Flynn-Hummel and Sava Mintchev", title = "High-Performance Parallel Programming in {Java}: Exploiting Native Libraries", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/hpjavampi.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/hpjavampi.ps", acknowledgement = ack-nhfb, } @Article{Getov:1998:HPPb, author = "Vladimir Getov and Susan Flynn Hummel and Sava Mintchev", title = "High-performance parallel programming in {Java}: exploiting native libraries", journal = j-CPE, volume = "10", number = "11--13", pages = "863--872", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.interscience.wiley.com/jpages/1040-3108/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050396; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050396&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Gheri:1998:MIO, author = "G. Gheri and J. R. Mosig", title = "The Multilevel Interactive Objects Approach to Model and Mesh Large Planar Antennas and Arrays: {A} {Full-JAVA} Tool", journal = j-LECT-NOTES-COMP-SCI, volume = "1401", pages = "969--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Giavitto:1998:DPJ, author = "J.-L. Giavitto and D. {De Vito} and J.-P. Sansonnet", title = "A Data Parallel {Java} Client-Server Architecture for Data Field Computations over {$Z_n$}", journal = j-LECT-NOTES-COMP-SCI, volume = "1470", pages = "742--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Gibbons:1998:SPJ, author = "Jeremy Gibbons", title = "Structured Programming in {Java}", journal = j-SIGPLAN, volume = "33", number = "4", pages = "40--43", month = apr, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:46 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.rowan.edu/sigplan/apr199~1.htm", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Book{Gilbert:1998:OOD, author = "Stephen Gilbert and Bill McCarthy", title = "Object-Oriented Design in {Java} (Mitchell Waite Signature Series)", publisher = pub-WAITE-GROUP, address = pub-WAITE-GROUP:adr, month = may, year = "1998", ISBN = "1-57169-134-0", ISBN-13 = "978-1-57169-134-7", LCCN = "QA76.73.J38G55 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/waite/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", URL = "http://iq-mcp3.iquest.net/catalog/mcp/PRODUCT/PAGE/15716/bud/1571691340.html", acknowledgement = ack-nhfb, } @InProceedings{Gillam:1998:TBA, author = "Richard Gillam", title = "Text Boundary Analysis in {JDK 1.2}", crossref = "UC:1998:TIU", pages = "??--??", year = "1998", bibdate = "Wed Aug 19 16:35:12 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc13/program.html", acknowledgement = ack-nhfb, } @Article{Gillmor:1998:JWM, author = "Steve Gillmor", title = "{Java} for {Windows}: {Microsoft}'s {Visual J++ 6.0} ties {Java} ever more tightly into the {Windows} platform", journal = j-BYTE, volume = "23", number = "5", pages = "41--41", month = may, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon Oct 26 07:12:15 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Gillmor:1998:PSD, author = "Steve Gillmor", title = "Productivity Software --- {A} Different Desktop for the Workplace --- {Lotus}' {eSuite} uses {JavaBeans}", journal = j-BYTE, volume = "23", number = "2", pages = "41--41", month = feb, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Wed Mar 11 09:04:35 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @InProceedings{Gladychev:1998:CRJa, author = "Pavel Gladychev and Ahmed Patel and Donal O'Mahony", title = "Cracking {RC5} with {Java} applets", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/rc5.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/rc5.ps", acknowledgement = ack-nhfb, } @Article{Gladychev:1998:CRJb, author = "Pavel Gladychev and Ahmed Patel and Donal O'Mahony", title = "Cracking {RC5} with {Java} applets", journal = j-CPE, volume = "10", number = "11--13", pages = "1165--1171", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.interscience.wiley.com/jpages/1040-3108/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050408; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050408&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Glass:1998:OVA, author = "G. Glass", title = "{ObjectSpace} Voyager --- The Agent {ORB} for Java", journal = j-LECT-NOTES-COMP-SCI, volume = "1368", pages = "38--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @InProceedings{Glossner:1998:JSPa, author = "John Glossner and Jesse Thilo and Stamatis Vassiliadis", title = "{Java} Signal Processing: {FFTs} with bytecodes", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/jfft.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/jfft.ps", acknowledgement = ack-nhfb, } @Article{Glossner:1998:JSPb, author = "John Glossner and Jesse Thilo and Stamatis Vassiliadis", title = "{Java} signal processing: {FFTs} with bytecodes", journal = j-CPE, volume = "10", number = "11--13", pages = "1173--1178", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.interscience.wiley.com/jpages/1040-3108/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050412; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050412&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @InProceedings{Goeschka:1998:DAH, author = "K. M. Goeschka and J. Falb and W. Radinger", title = "Database Access with {HTML} and {Java} --- {A} Comparison Based on Practical Experiences", crossref = "IEEE:1998:CPT", pages = "588--595", year = "1998", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Book{Goldberg:1998:JVP, author = "Athomas Goldberg and Troy Downing", title = "{Java VRML} Power Guide", publisher = pub-IDG, address = pub-IDG:adr, pages = "????", month = feb, year = "1998", ISBN = "0-7645-8051-5", ISBN-13 = "978-0-7645-8051-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", acknowledgement = ack-nhfb, url-publisher = "http://www.idgbooks.com/", } @InProceedings{Goldberg:1998:SJL, author = "A. Goldberg", editor = "{ACM}", booktitle = "{5th ACM Conference on Computer and Communications Security: November 3--5, 1998, San Francisco, California}", title = "A Specification of {Java} Loading and Bytecode Verification", publisher = pub-ACM, address = pub-ACM:adr, pages = "49--58", year = "1998", ISBN = "1-58113-007-4", ISBN-13 = "978-1-58113-007-2", LCCN = "QA76.9.A25 A33 1998", bibdate = "Thu Dec 01 06:52:07 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, bookpages = "viii + 160", } @InProceedings{Golden:1998:WWW, author = "B. L. Golden", title = "The {World Wide Web}: {HTML}, {CGI} and {Java} applications in animal breeding", crossref = "Anonymous:1998:GAL", volume = "27", pages = "409--414", year = "1998", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Golm:1998:IRT, author = "Michael Golm and J{\"u}rgen Klein{\"o}der", title = "Implementing Real-Time Actors with {MetaJava}", journal = j-LECT-NOTES-COMP-SCI, volume = "1357", pages = "68--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Feb 5 11:51:33 MST 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t1357.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://link.springer-ny.com/link/service/series/0558/bibs/1357/13570068.htm; http://link.springer-ny.com/link/service/series/0558/papers/1357/13570068.pdf", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Golomb:1998:JQH, author = "Kenneth Golomb and Thomas Sorgie", title = "{Java Q\&A}: How Do {I} Ensure Secure Communications from a {Java} Applet?", journal = j-DDJ, volume = "23", number = "6", pages = "107--109, 124", month = jun, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat May 30 10:34:02 MDT 1998", bibsource = "http://www.ddj.com/ddj/1998/1998_06/index.htm; http://www.ddj.com/ftp/1998/1998_06/jqa698.txt; http://www.ddj.com/ftp/1998/1998_06/jqa698.zip; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Gong:1998:JSM, author = "Li Gong", title = "The {Java} Security Model: Cryptography, Architectures, {APIs}, and Implementations", publisher = pub-AW, address = pub-AW:adr, pages = "xiv + 262", year = "1998", ISBN = "0-201-31000-7 (softcover)", ISBN-13 = "978-0-201-31000-9 (softcover)", LCCN = "QA76.73.J38 G65 1999", bibdate = "Fri Feb 16 11:54:08 2001", bibsource = "http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$36.53", URL = "http://www2.awl.com/cseng/javaseries/security.html", acknowledgement = ack-nhfb, xxnote = "Same ISBN as \cite{Gong:1999:IJP}.", xxtitle = "{Java} Security Architectures, {API}s, and Implementations", } @Article{Gong:1998:SSG, author = "Li Gong and Roland Schemers", title = "Signing, Sealing, and Guarding {Java}{\TM} Objects", journal = j-LECT-NOTES-COMP-SCI, volume = "1419", pages = "206--216", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Feb 5 11:52:14 MST 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t1419.htm; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1998a.bib", URL = "http://link.springer-ny.com/link/service/series/0558/bibs/1419/14190206.htm; http://link.springer-ny.com/link/service/series/0558/papers/1419/14190206.pdf", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Goodrich:1998:DSA, author = "Michael T. Goodrich and Roberto Tamassia", title = "Data Structures and Algorithms in {Java}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "????", month = jan, year = "1998", ISBN = "0-471-19308-9", ISBN-13 = "978-0-471-19308-1", LCCN = "QA76.73.J38G66 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$22", URL = "http://www.wiley.com/college/cs2java/", acknowledgement = ack-nhfb, url-author = "http://www.cs.jhu.edu/~goodrich/home.html", url-publisher = "http://www.wiley.com/", } @Book{Gordon:1998:EJJ, author = "Robert Gordon and Alan McClellan", title = "Essential {JNI}: {Java} Native Interface", publisher = pub-PH, address = pub-PH:adr, pages = "xxvii + 499", year = "1998", ISBN = "0-13-679895-0", ISBN-13 = "978-0-13-679895-8", LCCN = "QA76.73.J38 G665 1998", bibdate = "Sat Apr 29 19:01:11 2000", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$34.95", URL = "http://www.prenhall.com/ptrbooks/ptr_0136798950.html", acknowledgement = ack-nhfb, url-publisher = "http://www.prenhall.com/", } @InProceedings{Gosling:1998:EJN, author = "James Gosling", title = "Extensions to {Java} for Numerical Computation", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://java.sun.com/people/jag/FP.html", acknowledgement = ack-nhfb, } @Article{Gosling:1998:HCS, author = "James Gosling", title = "How Computer Security Works: The {Java} Sandbox", journal = j-SCI-AMER, volume = "279", number = "4", pages = "109--109 (Intl. ed. 78--??)", month = oct, year = "1998", CODEN = "SCAMAC", ISSN = "0036-8733 (print), 1946-7087 (electronic)", ISSN-L = "0036-8733", bibdate = "Tue Jan 26 09:27:45 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.sciam.com/1998/1098issue/1098currentissue.html", acknowledgement = ack-nhfb, fjournal = "Scientific American", } @Book{Gottleber:1998:EHI, author = "Timothy T. Gottleber", title = "Excellent {HTML} with an introduction to {Java} applets", publisher = pub-IRWIN-MCGRAW-HILL, address = pub-IRWIN-MCGRAW-HILL:adr, pages = "xx + 428", year = "1998", ISBN = "0-07-024772-2, 0-07-913675-3", ISBN-13 = "978-0-07-024772-7, 978-0-07-913675-6", LCCN = "QA76.76.H94G68 1998", bibdate = "Fri Sep 11 08:29:11 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, annote = "Contents of CD-ROM disc includes Java Applets, HTML examples and Web publishing software sampler.", keywords = "HTML (Document markup language); Java (Computer program language)", } @Article{Gottschalk:1998:TOI, author = "K. D. Gottschalk", title = "Technical overview of {IBM}'s {Java} initiatives", journal = j-IBM-SYS-J, volume = "37", number = "3", pages = "308--??", month = "????", year = "1998", CODEN = "IBMJAE", ISSN = "0018-8646 (print), 2151-8556 (electronic)", bibdate = "Thu Nov 5 17:12:23 MST 1998", bibsource = "http://www.almaden.ibm.com/journal/sj37-2.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.almaden.ibm.com/journal/sj/373/gottschalk.html", acknowledgement = ack-nhfb, fjournal = "IBM Systems Journal", } @InProceedings{Gray:1998:NLBa, author = "Paul A. Gray and Vaidy S. Sunderam", title = "Native-Language-Based Distributed Computing Across Network and Filesystem Boundaries", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/icet.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/icet.ps", acknowledgement = ack-nhfb, } @Article{Gray:1998:NLBb, author = "Paul A. Gray and Vaidy S. Sunderam", title = "Native-language-based distributed computing across network and filesystem boundaries", journal = j-CPE, volume = "10", number = "11--13", pages = "901--909", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050397; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050397&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @MastersThesis{Gregoire:1998:AVR, author = "David Remi Gregoire", title = "Application of virtual reality modeling language ({VRML}), and the {Java} programming language to conceptual design of industrial tooling", type = "????", school = "????", address = "????", pages = "x + 97", year = "1998", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, annote = "Thesis (M.S. in Computer Science)--University of Wisconsin-- Milwaukee, 1998.", keywords = "Java (Computer program language); Machine-tools -- Design.; VRML (Computer program language)", } @Article{Grehan:1998:FDO, author = "Rick Grehan", title = "The Federated Database --- {Objectivity\slash DB}, a {Java}-based {OODBMS Plus}, {Powersoft}'s component transaction server", journal = j-BYTE, volume = "23", number = "2", pages = "101--102", month = feb, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Wed Mar 11 09:04:35 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Grehan:1998:MJP, author = "Rich Grehan", title = "More {Java} Persistence: {A} look at another {Java}-enable database reveals what's in store for you", journal = j-BYTE, volume = "23", number = "1", pages = "93--94", month = jan, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Wed Mar 11 09:04:35 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Grehan:1998:OMR, author = "Rich Grehan", title = "Object Marries Relational --- {Ardent}'s {Java Relational Binding} turns a relational database into a {Java} object-oriented database management system", journal = j-BYTE, volume = "23", number = "3", pages = "101--102", month = mar, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Wed Mar 11 09:04:35 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Grehan:1998:RJD, author = "Rick Grehan", title = "Rapid {Java} Development", journal = j-BYTE, volume = "23", number = "6", pages = "109--??", month = jun, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Thu Dec 10 19:10:08 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Vision Jade provides tools for building enterprise databases.", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Grehan:1998:TBT, author = "Rick Grehan", title = "{TopLink} Bridges Two Worlds: {A} pure {Java} object-relational database system maps {Java} objects to relational databases", journal = j-BYTE, volume = "23", number = "5", pages = "107--108", month = may, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon May 11 07:38:50 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Gritzalis:1998:SIS, author = "Stefanos Gritzalis and George Aggelis", title = "Security issues surrounding programming languages for mobile code: {JAVA} vs. {Safe-Tcl}", journal = j-OPER-SYS-REV, volume = "32", number = "2", pages = "16--32", month = apr, year = "1998", CODEN = "OSRED8", ISSN = "0163-5980", ISSN-L = "0163-5980", bibdate = "Sat Aug 26 08:55:42 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Operating Systems Review", } @Book{Gulbransen:1998:IJA, author = "David Gulbransen", title = "101 Instant {Java} Applets", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "????", month = mar, year = "1998", ISBN = "1-57521-091-6", ISBN-13 = "978-1-57521-091-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/", } @Book{Gutz:1998:SSU, author = "Steven Gutz", title = "Up to Speed with Swing: User Interfaces with {Java Foundation Classes}", publisher = pub-MANNING, address = pub-MANNING:adr, pages = "xxxviii + 498", month = may, year = "1998", ISBN = "1-884777-64-3", ISBN-13 = "978-1-884777-64-6", LCCN = "QA76.9.U83 G88 1998", bibdate = "Wed Feb 21 07:12:21 2001", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.manning.com/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$43", URL = "http://www.browsebooks.com/Gutz2/index.html", acknowledgement = ack-nhfb, } @Article{Hackvan:1998:QOS, author = "Stig Hackv{\"a}n", title = "Not quite {Open Source}, but close", journal = "Linux Today", day = "10", month = dec, year = "1998", bibdate = "Mon Apr 18 10:22:58 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://linuxtoday.com/news_story.php3?ltsn=1998-12-10-001-05-NW-CY", abstract = "Sun calls the new Java license its Sun Community Source License (SCSL). Precise terms of the new Java license will not be made available until January, 1999.\par SCSL is customized for each different product and Sun already uses SCSL to license its Jini technology.\par ``The Java platform is definitely not free software, but it is more open than it was before. The cost of gaining access to the platform's source code has been greatly reduced and the level of freedom granted to members of the community of SCSL licensees has been greatly increased.''", acknowledgement = ack-nhfb, } @Article{Hagiya:1998:NMD, author = "M. Hagiya and A. Tozawa", title = "On a New Method for Dataflow Analysis of {Java Virtual Machine} Subroutines", journal = j-LECT-NOTES-COMP-SCI, volume = "1503", pages = "17--32", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Jan 5 08:21:58 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Halfhill:1998:HSJ, author = "Tom R. Halfhill", title = "How to Soup Up {Java}: Part 1: The rap on {Java} is that it's too slow. Proponents are inventing ways to speed it up, including better compilers", journal = j-BYTE, volume = "23", number = "5", pages = "60--64, 66, 68, 70, 72, 74", month = may, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon May 11 07:38:50 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Halfhill:1998:SRJ, author = "Tom R. Halfhill", title = "Survey Reveals {Java} Adoption Plans", journal = j-BYTE, volume = "23", number = "3", pages = "26, 30", month = mar, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Wed Mar 11 09:04:35 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Harms:1998:WSP, author = "David Harms and Barton C. Fiske and Jeffrey C. Rice", title = "{Web} Site Programming With {Java} 1.1", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "604", day = "1", month = jan, year = "1998", ISBN = "0-07-913178-6", ISBN-13 = "978-0-07-913178-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0079131786/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$39.95", acknowledgement = ack-nhfb, keywords = "technology -- computers and computer technology; World wide Web (information retrieval system)", paperback = "yes", } @Book{Harold:1998:J, author = "Elliotte Rusty Harold", title = "{JavaBeans}", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xxiii + 355", year = "1998", ISBN = "0-7645-8052-3", ISBN-13 = "978-0-7645-8052-9", LCCN = "QA76.73.J38H3733 1998", bibdate = "Thu Feb 26 10:50:28 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99", URL = "http://www.idgbooks.com/cgi-bin/db/fill_out_template.pl?idgbook:0-7645-8052-3:book-idg::uidg781", acknowledgement = ack-nhfb, } @Book{Harrington:1998:JPP, author = "Jan L. Harrington", title = "{Java} programming: an {IS} perspective", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xx + 460", year = "1998", ISBN = "0-471-19665-7 (paper)", ISBN-13 = "978-0-471-19665-5 (paper)", LCCN = "QA76.73.J38 H374 1998", bibdate = "Wed Jun 17 15:45:37 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$59", acknowledgement = ack-nhfb, annote = "From the book: assumes an understanding of either COBOL, Pascal, Modula-2, C, or C++.", keywords = "java (computer program language)", } @Article{Harsu:1998:LIF, author = "M. Harsu and J. Hautamaeki and K. Koskimies", title = "A Language Implementation Framework in Java", journal = j-LECT-NOTES-COMP-SCI, volume = "1357", pages = "141--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Misc{HAT:1998:HAT, key = "HAT", title = "Heap Analysis Tool", howpublished = pub-SUN, address = pub-SUN:adr, year = "1998", bibdate = "Sat Jun 06 09:52:48 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://java.sun.com/people/billf/heap/", acknowledgement = ack-nhfb, } @Book{Hatton:1998:APP, author = "Tim Hatton", title = "The Awesome Power of {Power++}", publisher = pub-MANNING, address = pub-MANNING:adr, pages = "????", month = may, year = "1998", ISBN = "1-884777-54-6", ISBN-13 = "978-1-884777-54-7", LCCN = "QA76.73.C153H38 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.manning.com/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$44", URL = "http://www.manning.com/Hatton3/index.html", acknowledgement = ack-nhfb, url-publisher = "http://www.manning.com/", } @Article{Haverlock:1998:OSC, author = "Kevin Haverlock", title = "Object Serialization, {C++}, and {Java}: Exchanging data between a sender and a receiver", journal = j-DDJ, volume = "23", number = "8", pages = "32, 34, 36--37", month = aug, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Jul 16 13:01:59 MDT 1998", bibsource = "http://www.ddj.com/ddj/1998/1998_08/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1998/1998_08/serial.zip", abstract = "Kevin presents a technique for exchanging data between Java and C++ using object serialization over a TCP/IP sockets connection.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @InProceedings{Hawblitzel:1998:IMP, author = "Chris Hawblitzel and Chi-Chao Chang and Grzegorz Czajkowski and Deyu Hu and Thorsten von Eicken", title = "Implementing Multiple Protection Domains in {Java}", crossref = "USENIX:1998:PUA", pages = "??--??", year = "1998", bibdate = "Fri Oct 18 08:55:49 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/usenix98/hawblitzel.html", acknowledgement = ack-nhfb, } @Article{Hayashi:1998:TIT, author = "Alden M. Hayashi", title = "Thinking It Through", journal = j-DATAMATION, volume = "44", number = "1", pages = "46--??", month = "????", year = "1998", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Tue Jan 26 09:28:04 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Taking off the Java-tinted glasses", acknowledgement = ack-nhfb, fjournal = "Datamation", } @Book{Heller:1998:JDH, author = "Philip Heller and Simon Roberts", title = "{Java 1.2} Developer's Handbook", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "????", year = "1998", ISBN = "0-7821-2179-9", ISBN-13 = "978-0-7821-2179-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.com/", price = "US\$60", acknowledgement = ack-nhfb, url-publisher = "http://www.sybex.com/", } @InProceedings{Hendin:1998:MVR, author = "O. Hendin and N. W. John and O. Shochet", title = "Medical Volume Rendering over the {WWW} Using {VRML} and {JAVA}", crossref = "Westwood:1998:MMV", volume = "50", pages = "34--40", year = "1998", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Hericko:1998:JDO, author = "Marjan Hericko and Matjaz B. Juric and Ales Zivkovic and Ivan Rozman and Tomaz Domajnko and Marjan Krisper", title = "{Java} and Distributed Object Models: An Analysis", journal = j-SIGPLAN, volume = "33", number = "12", pages = "57--65", month = dec, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:55 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Higham:1998:JMC, author = "L. Higham and J. Kawash", title = "{Java}: Memory Consistency and Process Coordination", journal = j-LECT-NOTES-COMP-SCI, volume = "1499", pages = "201--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Jan 5 08:21:58 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Hightower:1998:WRD, author = "Lauren Hightower", title = "The {Web Report} Database Reporting Tool", journal = j-DDJ, volume = "23", number = "10", pages = "90, 92--93, 95, 113--114", month = oct, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Sep 11 09:12:05 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1998/1998_10/webrept.txt; http://www.ddj.com/ftp/1998/1998_10/webrept.zip", abstract = "The Web Report lets you connect users to ODBC-compliant databases, then lets them create ad hoc queries and reports using the Web as the query-building interface. Lauren knits The Web Report together by using Active Server Pages, JavaScript, and DHTML. Additional resources include webrept.txt (listings) and webrept.zip (source code). PROGRAMMER'S TOOLCHEST", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @InProceedings{Hirano:1998:PEPa, author = "Satoshi Hirano and Yoshiji Yasu and Hirotaka Igarashi", title = "Performance Evaluation of Popular Distributed Object Technologies for {Java}", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/dots.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/dots.ps", acknowledgement = ack-nhfb, } @Article{Hirano:1998:PEPb, author = "Satoshi Hirano and Yoshiji Yasu and Hirotaka Igarashi", title = "Performance evaluation of popular distributed object technologies for {Java}", journal = j-CPE, volume = "10", number = "11--13", pages = "927--940", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.interscience.wiley.com/jpages/1040-3108/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050399; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050399&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @InProceedings{Hiura:1998:IDI, author = "Hideki Hiura", title = "{IIIMF} --- Distributed Input Method Architecture for the {Internet}, Network Computer, and {Java}", crossref = "UC:1998:ASI", pages = "??--??", year = "1998", bibdate = "Thu Aug 20 07:50:28 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc12/program.html", acknowledgement = ack-nhfb, } @Book{Hobbs:1998:APB, author = "Ashton Hobbs", title = "Aprend Program Base de Datos con {JDBC} en 21 Dias", publisher = pub-PH, address = pub-PH:adr, year = "1998", ISBN = "970-17-0084-8 (??invalid ISBN??)", ISBN-13 = "978-970-17-0084-6 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prentice.com.mx/", price = "????", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Hobuss:1998:BAW, author = "James J. Hobuss", title = "Building {Access} Web Sites", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "512", year = "1998", ISBN = "0-13-079830-4", ISBN-13 = "978-0-13-079830-5", LCCN = "QA76.9.D3H589 1998", bibdate = "Wed Jun 17 08:47:35 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses Java, JavaScript, and HTML.", price = "US\$44.95", acknowledgement = ack-nhfb, } @Book{Hobuss:1998:BOW, author = "James J. Hobuss", title = "Building {Oracle} Websites", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xii + 488", year = "1998", ISBN = "0-13-079841-X", ISBN-13 = "978-0-13-079841-1", LCCN = "QA76.625.H64 1998", bibdate = "Wed Jun 17 08:47:35 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses Java, JavaScript, and HTML.", price = "US\$44.95", acknowledgement = ack-nhfb, } @Book{Hobuss:1998:BSW, author = "James J. Hobuss", title = "Building {Sybase} Websites", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxii + 437", year = "1998", ISBN = "0-13-798357-3", ISBN-13 = "978-0-13-798357-5", LCCN = "QA76.625.H642 1998", bibdate = "Wed Jun 17 08:47:35 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses Java, JavaScript, and HTML.", price = "US\$44.95", acknowledgement = ack-nhfb, } @Book{Holder:1998:JGP, author = "Wayne Holder and Doug Bell", title = "{Java} Game Programming for Dummies", publisher = pub-IDG, address = pub-IDG:adr, pages = "xviii + 359", year = "1998", ISBN = "0-7645-0168-2 (softcover)", ISBN-13 = "978-0-7645-0168-5 (softcover)", LCCN = "QA76.76.C672H65 1998", bibdate = "Sat Sep 13 14:36:20 1997", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$22.49", URL = "http://www.idgbooks.com/cgi-bin/db/fill_out_template.pl?idgbook:0-7645-0168-2:book-idg::uidg1388", } @Book{Holmes:1998:PJ, author = "Barry Holmes", title = "Programming with {Java}", publisher = "Jones and Bartlett Publishers", address = "????", month = mar, year = "1998", ISBN = "0-7637-0707-4", ISBN-13 = "978-0-7637-0707-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.jbpub.com/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49", URL = "http://www.jbpub.com/catalog/Detail.CFM?titles__ISBN=0763707074", acknowledgement = ack-nhfb, } @Book{Holzner:1998:DVJ, author = "Steve Holzner", title = "Dominando o {Visual J++} ``{A B}'blia''", publisher = pub-MAKRON, address = pub-MAKRON:adr, month = apr, year = "1998", ISBN = "85-346-0849-0 (??invalid ISBN??)", ISBN-13 = "978-85-346-0849-7 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://safe.tesla.com.br/makron/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "R\$89", URL = "http://safe.tesla.com.br/makron/options/livro.asp?id=655", acknowledgement = ack-nhfb, language = "Portuguese", } @Book{Hoque:1998:CJI, author = "Reaz Hoque", title = "Connecting {JavaBeans} with {InfoBus}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "462", year = "1998", ISBN = "0-471-29652-X", ISBN-13 = "978-0-471-29652-2", LCCN = "QA76.76.A65H67 1998", bibdate = "Sat Oct 09 08:13:10 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/compbooks/", price = "US\$49.99", acknowledgement = ack-nhfb, } @Book{Hoque:1998:PWC, author = "Reaz Hoque and Tarun Sharma", title = "Programming {Web} Components: {JavaBeans} \& {ActiveX}", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "????", month = nov, year = "1998", ISBN = "0-07-912316-3", ISBN-13 = "978-0-07-912316-9", LCCN = "QA76.625.H674 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$50", URL = "http://mcgraw-hill.inforonics.com/cgi/getarec?mgh41710%comp", acknowledgement = ack-nhfb, url-publisher = "http://www.mcgraw-hill.com/", } @Article{Horspool:1998:TCJ, author = "R. Nigel Horspool and Jason Corless", title = "Tailored Compression of {Java} Class Files", journal = j-SPE, volume = "28", number = "12", pages = "1253--1268", month = oct, year = "1998", CODEN = "SPEXBL", ISSN = "0038-0644 (print), 1097-024X (electronic)", ISSN-L = "0038-0644", bibdate = "Thu Jul 29 15:12:01 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=1762; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=1762&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Software---Practice and Experience", } @Book{Horstmann:1998:CCJ, author = "Cay S. Horstmann", title = "Computing Concepts With {Java} Essentials", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "????", year = "1998", ISBN = "0-471-17223-5 (softcover)", ISBN-13 = "978-0-471-17223-9 (softcover)", LCCN = "QA76.H665 1998", bibdate = "Mon Jun 22 11:14:51 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$65.95", URL = "http://www.wiley.com/college/horstmannjava/", acknowledgement = ack-nhfb, } @Book{Horstmann:1998:CJB, author = "Cay S. Horstmann and Gary Cornell", title = "{Core {Java}, Bd.2 Expertenwissen}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, month = sep, year = "1998", ISBN = "3-8272-9566-1 (??invalid ISBN??)", ISBN-13 = "978-3-8272-9566-8 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "90 DM", acknowledgement = ack-nhfb, language = "German", xxauthor = "Gary Cornell and Cay S. Horstmann", } @Book{Horstmann:1998:CJV, author = "Cay S. Horstmann and Gary Cornell", title = "Core {Java} 1.1: Volume 2: Advanced Features", publisher = pub-PH, address = pub-PH:adr, pages = "661", year = "1998", ISBN = "0-13-766965-8 (softcover)", ISBN-13 = "978-0-13-766965-3 (softcover)", LCCN = "QA76.73.J38 C67 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.phptr.com/ptrbooks/ptr_0137669658.html; http://www.prenhall.com/", note = "Includes CD-ROM.", price = "US\$31.45", URL = "http://www.fdds.com/books/books/Horstmann2/Horstmann2.html; http://www.prenhall.com/ptrbooks/ptr_0137669658.html", acknowledgement = ack-nhfb, xxauthor = "Gary Cornell and Cay S. Horstmann", } @Article{Horton:1998:CDC, author = "J. Horton and J. Seberry", title = "Covert Distributed Computing Using {Java} Through {Web} Spoofing", journal = j-LECT-NOTES-COMP-SCI, volume = "1438", pages = "48--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Horwood:1998:PDP, author = "Peter J. Horwood", title = "{PowerJ} Developer's Professional Reference", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, month = may, year = "1998", ISBN = "0-07-913660-5", ISBN-13 = "978-0-07-913660-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$50", URL = "http://mcgraw-hill.inforonics.com/cgi/getarec?mgh41686%new", acknowledgement = ack-nhfb, } @Article{Houlding:1998:CBF, author = "David Houlding", title = "A {CORBA} Bean Framework", journal = j-DDJ, volume = "23", number = "11", pages = "34, 36, 38--40", month = nov, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Oct 28 18:43:06 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1998/1998_11/CORBABeans.exe; http://www.ddj.com/ftp/1998/1998_11/CORBEAN.TXT", abstract = "David presents a framework based on the JavaBeans Standard that provides a layer of abstraction over CORBA -- and, in particular, the CORBA Dynamic Invocation Interface (DII) -- to encapsulate its complexity and facilitate visual rapid application development. Additional resources include CORBABeans.exe (executable) and CORBEAN.TXT (listings).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Misc{Hudson:1998:CPG, author = "Scott E. Hudson and Frank Flannery and C. Scott Ananian and Dan Wang and Andrew W. Appel", title = "{CUP} Parser Generator for {Java}", month = mar, year = "1998", bibdate = "Mon Jun 22 17:01:59 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "From the manual: ``This manual describes the basic operation and use of the Java(tm) Based Constructor of Useful Parsers (CUP for short). CUP is a system for generating LALR parsers from simple specifications. It serves the same role as the widely used program YACC [1] and in fact offers most of the features of YACC. However, CUP is written in Java, uses specifications including embedded Java code, and produces parsers which are implemented in Java.''.", URL = "http://www.cs.princeton.edu/~appel/modern/java/CUP/; http://www.cs.princeton.edu/~appel/modern/java/CUP/manual.html", acknowledgement = ack-nhfb, } @Book{Hughes:1998:AJC, author = "Merlin Hughes and Conrad Hughes", title = "Applied {Java} Cryptography", publisher = pub-MANNING, address = pub-MANNING:adr, month = may, year = "1998", ISBN = "1-884777-63-5", ISBN-13 = "978-1-884777-63-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.manning.com/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$37", acknowledgement = ack-nhfb, } @Article{Hume:1998:BRS, author = "Andrew Hume", title = "Book Review: {{\em Sun Performance and Tuning: Java and the Internet}}", journal = j-LOGIN, volume = "23", number = "6", pages = "??--??", month = oct, year = "1998", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:33 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/contents/contents.oct98.html", URL = "http://www.usenix.org/publications/login/1998-10/sun.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Book{Hume:1998:PCJ, author = "J. N. Patterson Hume and Christine Stephenson", title = "Programming Concepts in {Java}", publisher = "Holt Software Assoc.", address = "????", month = jan, year = "1998", ISBN = "0-921598-28-9", ISBN-13 = "978-0-921598-28-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.holtsoft.com/home.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", URL = "http://www.holtsoft.com/books/java_concepts.html", acknowledgement = ack-nhfb, } @Book{Hunt:1998:EJF, author = "John Hunt", title = "Essentials {JavaBeans} Fast", publisher = pub-SV, address = pub-SV:adr, pages = "xiv + 174", year = "1998", ISBN = "1-85233-032-5", ISBN-13 = "978-1-85233-032-3", LCCN = "QA76.73.J38 H85 1998", bibdate = "Wed Mar 14 09:14:23 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @Book{Hunt:1998:KJA, author = "John Hunt and Alexander McManus", title = "Key {Java}: Advanced Tips and Techniques", publisher = pub-SV, address = pub-SV:adr, pages = "xvii + 331", year = "1998", ISBN = "3-540-76259-0", ISBN-13 = "978-3-540-76259-1", LCCN = "QA76.73.J38 H87 1998", bibdate = "Wed Mar 14 09:18:16 2001", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.springer-ny.com/", price = "????", acknowledgement = ack-nhfb, xxtitle = "Key {Java}: Tips and Techniques", } @Book{Hunter:1998:JSP, author = "Jason Hunter and William Crawford", title = "{Java} Servlet Programming", publisher = pub-ORA, address = pub-ORA:adr, pages = "528", year = "1998", ISBN = "1-56592-391-X", ISBN-13 = "978-1-56592-391-1", LCCN = "????", bibdate = "Thu Feb 04 06:33:19 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www1.clbooks.com/asp/BookInfo/BookInfo.asp?theisbn=156592391x", price = "US\$32.95", URL = "http://www.oreilly.com/catalog/jservlet", acknowledgement = ack-nhfb, } @Article{Iliadis:1998:TSD, author = "J. Iliadis and S. Gritzalis and V. Oikonomou", title = "Towards Secure Downloadable Executable Content: The {Java} Paradigm", journal = j-LECT-NOTES-COMP-SCI, volume = "1516", pages = "117--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Jan 5 08:21:58 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @InProceedings{Jacob:1998:LSPa, author = "Matthias Jacob and Michael Philippsen and Martin Karrenbach", title = "Large-Scale Parallel Geophysical Algorithms in {Java}: {A} Feasibility Study", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/veltran.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/veltran.ps", acknowledgement = ack-nhfb, } @Article{Jacob:1998:LSPb, author = "Matthias Jacob and Michael Philippsen and Martin Karrenbach", title = "Large-scale parallel geophysical algorithms in {Java}: a feasibility study", journal = j-CPE, volume = "10", number = "11--13", pages = "1143--1153", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.interscience.wiley.com/jpages/1040-3108/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050403; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050403&PLACEBO=IE.pdf; http://wwwipd.ira.uka.de/~phlipp/veltran.ps.gz", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Jacobs:1998:RAJ, author = "Bart Jacobs and Joachim van den Berg and Marieke Huisman and Martijn van Berkum and Ulrich Hensel and Hendrik Tews", title = "Reasoning about {Java} classes: preliminary report", journal = j-SIGPLAN, volume = "33", number = "10", pages = "329--340", month = oct, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:52 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Jain:1998:DDO, author = "Lalit Kumar Jain and Mark Abbott", title = "{DOVE}: distributed objects based scientific visualization environment", journal = j-CPE, volume = "10", number = "11--13", pages = "1087--1095", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050410; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050410&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @InProceedings{Jain:1998:DPM, author = "Prashant Jain and Seth Widoff and Douglas C. Schmidt", title = "The Design and Performance of {MedJava}", crossref = "USENIX:1998:PFU", pages = "??--??", year = "1998", bibdate = "Fri Oct 18 09:16:59 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/coots98/jain.html", acknowledgement = ack-nhfb, } @Book{Jardin:1998:SJC, author = "Cary A. Jardin", title = "{Sun Java} 1.1 Certification Exam Guide Book", publisher = pub-QUE, address = pub-QUE:adr, pages = "xiii + 605", month = mar, year = "1998", ISBN = "0-7897-1390-X", ISBN-13 = "978-0-7897-1390-2", LCCN = "QA76.3.J37 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "138,00 DM, US\$70.00", URL = "http://merchant.superlibrary.com:8000/catalog/mcp/PRODUCT/PAGE/07897/bud/078971390X.html; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, xxtitle-1 = "{Sun Java} 1.2 Certification Exam Guide", xxtitle-2 = "{Java 1.1} certification training guide: {Java} programmer certification, {Java} developer certification", } @Book{Jaworski:1998:JU, author = "Jamie Jaworski", title = "{Java} 1.2 Unleashed", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, edition = "Fourth", month = may, year = "1998", ISBN = "1-57521-389-3", ISBN-13 = "978-1-57521-389-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", acknowledgement = ack-nhfb, } @Misc{JDK:1998:JDKa, key = "JDK", title = "{Java Development Kit 1.1.6}", howpublished = pub-SUN, address = pub-SUN:adr, year = "1998", bibdate = "Sat Jun 06 09:49:45 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://java.sun.com/products/jdk/1.1/", acknowledgement = ack-nhfb, } @Misc{JDK:1998:JDKb, key = "JDK", title = "{Java Development Kit 1.2 Beta 3}", howpublished = pub-SUN, address = pub-SUN:adr, year = "1998", bibdate = "Sat Jun 06 09:49:45 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://java.sun.com/products/jdk/1.2/", acknowledgement = ack-nhfb, } @Article{Jenkins:1998:ACW, author = "Charlotte Jenkins and Mike Jackson and Peter Burden and Jon Wallis", title = "Automatic classification of {Web} resources using {Java} and {Dewey Decimal Classification}", journal = j-COMP-NET-ISDN, volume = "30", number = "1--7", pages = "646--648", day = "1", month = apr, year = "1998", CODEN = "CNISE9", ISSN = "0169-7552", ISSN-L = "0169-7552", bibdate = "Fri Sep 24 20:22:05 MDT 1999", bibsource = "http://www.elsevier.com/cgi-bin/cas/tree/store/cna/cas_free/browse/browse.cgi?year=1998&volume=30&issue=1-7; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.elsevier.com/cas/tree/store/comnet/sub/1998/30/1-7/1846.pdf", acknowledgement = ack-nhfb, fjournal = "Computer Networks and ISDN Systems", } @Book{Jenkins:1998:ADT, author = "Michael S. Jenkins", title = "Abstract Data Types in {Java}", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "388", year = "1998", ISBN = "0-07-913270-7", ISBN-13 = "978-0-07-913270-3", LCCN = "QA76.73.J38J45 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$39.95", URL = "http://mcgraw-hill.inforonics.com/cgi/getarec?mgh31409%comp", acknowledgement = ack-nhfb, } @Article{Jensen:1998:CGJ, author = "T. Jensen and D. {Le Metayer} and T. Thorn", title = "Coarse-grained {Java} Security Policies", journal = j-LECT-NOTES-COMP-SCI, volume = "1543", pages = "296--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Wed Sep 15 10:01:31 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1998b.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", keywords = "ECOOP; mobility; object-oriented programming", } @Book{Jensen:1998:JED, author = "Cary Jensen and Blake Stone and Loy Anderson", title = "{JBuilder} Essentials: The Developer's Guide to {Java} Programming with {Borland}'s {JBuilder}", publisher = pub-OSBORNE, address = pub-OSBORNE:adr, pages = "xxii + 528", year = "1998", ISBN = "0-07-882223-8", ISBN-13 = "978-0-07-882223-0", LCCN = "????", bibdate = "Mon Jun 22 09:32:01 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.osborne.com/", price = "US\$35", acknowledgement = ack-nhfb, } @Article{Jepsen:1998:AAJ, author = "T. C. Jepsen and Z. Zhang", title = "An {ATM API} for {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1430", pages = "167--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @TechReport{JGF:1998:MJW, author = "{Java Grande Forum}", title = "Making {Java} work for high-end computing", type = "Technical report", number = "TR-1", institution = "????", address = "????", year = "1998", bibdate = "Sun May 28 18:40:45 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.javagrande.org/reports.htm", acknowledgement = ack-nhfb, } @Misc{JMA:1998:JMA, key = "JMA", title = "{Java Media APIs}", howpublished = pub-SUN, address = pub-SUN:adr, year = "1998", bibdate = "Sat Jun 06 09:54:19 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://java.sun.com/products/java-media/", acknowledgement = ack-nhfb, } @Article{Joch:1998:IGP, author = "Alan Joch", title = "{IDBC}'s Growing Pains: {Java} Database Connectivity: Developers need more than promises", journal = j-BYTE, volume = "23", number = "5", pages = "112M, 112N, 112P", month = may, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon May 11 07:38:50 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Johann:1998:JJB, author = "Michael Johann", title = "{JBuilder: {Java} Beans, JDBC, RMI}", publisher = pub-AWV, address = pub-AWV:adr, month = mar, year = "1998", ISBN = "3-8372-1319-8 (??invalid ISBN??)", ISBN-13 = "978-3-8372-1319-5 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "80 DM", URL = "http://www.addison-wesley.de/katalog/item.ppml?id=00264", acknowledgement = ack-nhfb, language = "German", xxnote = "??First author may be missing??", } @InProceedings{Johnson:1998:WBM, author = "C. W. Johnson and G. Oser and A. J. Abedor", title = "{Web} Browser as Medical Educator\slash Researcher Using {HTML} and {JavaScript}", crossref = "Chute:1998:AMI", pages = "1023--??", year = "1998", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Jones:1998:JIA, author = "Carol A. Jones", title = "The {Java} Internationalization {API}: Global software for the global village", journal = j-DDJ, volume = "23", number = "1", pages = "54, 56--69, 103--104", month = jan, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Dec 2 08:43:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "``Internationalization'' is the process of preparing programs to run in other languages. Carol examines Java's Internationalization API and shows how you can use it to design global software. Additional resources include: How do I Write an International Application? (Java Q\&A), by Cliff Berg, GLOBAL.TXT (listings), and GLOBAL.ZIP (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Joshi:1998:JJF, author = "Daniel Joshi and Pavel A. Vorobiev", title = "{JFC}, {Java} Foundation Classes", publisher = pub-IDG, address = pub-IDG:adr, month = may, year = "1998", ISBN = "0-7645-8041-8", ISBN-13 = "978-0-7645-8041-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", acknowledgement = ack-nhfb, } @Book{Joshi:1998:JPR, author = "Daniel Joshi", title = "The {Java} Programmer's Reference", publisher = pub-VENTANA, address = pub-VENTANA:adr, month = feb, year = "1998", ISBN = "1-56604-857-5", ISBN-13 = "978-1-56604-857-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.vmedia.com/", price = "US\$50", acknowledgement = ack-nhfb, } @Misc{JPA:1998:JPA, key = "JPA", title = "{Java} Products \& {APIs}", howpublished = pub-SUN, address = pub-SUN:adr, year = "1998", bibdate = "Sat Jun 06 09:55:30 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://java.sun.com/products/", acknowledgement = ack-nhfb, } @Misc{JRE:1998:DJR, key = "JRE", title = "Downloading the {Java Runtime Environment Version 1.1}", howpublished = pub-SUN, address = pub-SUN:adr, year = "1998", bibdate = "Sat Jun 06 09:59:29 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://java.sun.com/products/jdk/1.1/jre/index.html", acknowledgement = ack-nhfb, } @InProceedings{Judd:1998:DDOa, author = "Glenn Judd and Mark Clement and Quinn Snell", title = "{DOGMA}: {Distributed Object Group Management Architecture}", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/dogma.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/dogma.ps", acknowledgement = ack-nhfb, } @Article{Judd:1998:DDOb, author = "Glenn Judd and Mark Clement and Quinn Snell", title = "{DOGMA}: distributed object group metacomputing architecture", journal = j-CPE, volume = "10", number = "11--13", pages = "977--983", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050409; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050409&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Juhne:1998:AJB, author = "Jesper J{\"u}hne and Anders T. Jensen and Kaj Gr{\o}nb{\ae}k", title = "{Ariadne}: a {Java}-based guided tour system for the {World Wide Web}", journal = j-COMP-NET-ISDN, volume = "30", number = "1--7", pages = "131--139", day = "1", month = apr, year = "1998", CODEN = "CNISE9", ISSN = "0169-7552", ISSN-L = "0169-7552", bibdate = "Fri Sep 24 20:22:05 MDT 1999", bibsource = "http://www.elsevier.com/cgi-bin/cas/tree/store/cna/cas_free/browse/browse.cgi?year=1998&volume=30&issue=1-7; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.elsevier.com/cas/tree/store/comnet/sub/1998/30/1-7/1935.pdf", acknowledgement = ack-nhfb, fjournal = "Computer Networks and ISDN Systems", } @Book{Jun:1998:J, author = "Yoo Hong Jun", title = "{Java}", publisher = "Gijutsu Hyoron Co., Ltd.", address = "????", month = may, year = "1998", ISBN = "4-7741-0591-0", ISBN-13 = "978-4-7741-0591-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.gihyo.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "1880 yen", URL = "http://www.gihyo.co.jp/syoseki/may/bn-5d.htm", acknowledgement = ack-nhfb, language = "Japanese", } @InProceedings{Kahan:1998:HJF, author = "William Kahan and University of California at Berkeley", title = "How {Java}'s Floating-Point Hurts Everyone Everywhere", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/javahurt.pdf", acknowledgement = ack-nhfb, } @InProceedings{Kahan:1998:HJFa, author = "William Kahan", title = "How {Java}'s Floating-Point Hurts Everyone Everywhere", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/javahurt.pdf", acknowledgement = ack-nhfb, } @TechReport{Kahan:1998:HJFb, author = "W. Kahan and Joseph D. Darcy", title = "How {Java}'s Floating-Point Hurts Everyone Everywhere", type = "Technical Report", institution = "Department of Mathematics and Department of Electrical Engineering and Computer Science, University of California, Berkeley", address = "Berkeley, CA, USA", pages = "80", day = "18", month = jun, year = "1998", bibdate = "Sat Sep 12 18:53:11 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.berkeley.edu/~wkahan/JAVAhurt.pdf; http://www.cs.berkeley.edu/~wkahan/JAVAhurt.ps", acknowledgement = ack-nhfb, annote = "The authors deliver a biting criticism of Java for its failure to use the 80-bit temporary real format on Intel x86 architectures, failure to use multiply-add instructions when available, and failure to compute float subexpressions in double precision.", } @Article{Kalev:1998:PCA, author = "Danny Kalev", title = "Porting a {C++} Application to {Java}", journal = j-CCCUJ, volume = "16", number = "2", pages = "??--??", month = feb, year = "1998", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:14 MDT 2002", bibsource = "http://www.cuj.com/articles/1998/9802/9802toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "There's more to porting code to Java than just changing the keywords, as you might have guessed.", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Book{Kamin:1998:ICS, author = "Samuel N. Kamin and M. Dennis Mickunas and Edward M. Reingold", title = "An Introduction to Computer Science Using {Java}", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "????", year = "1998", ISBN = "0-07-034224-5", ISBN-13 = "978-0-07-034224-8", LCCN = "QA76.73.J38K36 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$55", acknowledgement = ack-nhfb, } @Article{Kappel:1998:DLP, author = "G. Kappel and B. Schroeder", title = "Distributed Light-Weight Persistence in {Java} --- {A} Tour on {RMI}- and {CORBA}-Based Solutions", journal = j-LECT-NOTES-COMP-SCI, volume = "1460", pages = "411--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Kappel:1998:DLW, author = "G. Kappel and B. Schroeder", title = "Distributed Light-Weight Persistence in {Java} --- {A} Tour on {RMI}- and {CORBA}-Based Solutions", journal = j-LECT-NOTES-COMP-SCI, volume = "1460", pages = "411--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @InProceedings{Karl:1998:BGBa, author = "Holger Karl", title = "Bridging the Gap between Distributed Shared Memory and Message Passing", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/bridging.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/bridging.ps", acknowledgement = ack-nhfb, } @Article{Karl:1998:BGBb, author = "Holger Karl", title = "Bridging the gap between distributed shared memory and message passing", journal = j-CPE, volume = "10", number = "11--13", pages = "887--900", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050425; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050425&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Kassab:1998:TFJ, author = "L. L. Kassab and S. J. Greenwald", title = "Towards Formalizing the {Java} Security Architecture of {JDK 1.2}", journal = j-LECT-NOTES-COMP-SCI, volume = "1485", pages = "191--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Jan 5 08:21:58 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @InProceedings{Keren:1998:APPa, author = "Arie Keren and Amnon Barak", title = "Adaptive Placement of Parallel {Java} Agents in a Scalable Computing Cluster", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/agents.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/agents.ps", acknowledgement = ack-nhfb, } @Article{Keren:1998:APPb, author = "Arie Keren and Amnon Barak", title = "Adaptive placement of parallel {Java} agents in a scalable computing cluster", journal = j-CPE, volume = "10", number = "11--13", pages = "971--976", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.interscience.wiley.com/jpages/1040-3108/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050404; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050404&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Keyes:1998:DHS, author = "Jessica Keyes", title = "DataCasting: How to Stream Databases over the {Web} (including the {JDBC})", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xvii + 555", year = "1998", ISBN = "0-07-034678-X", ISBN-13 = "978-0-07-034678-9", LCCN = "QA76.9.D3K35898 1998", bibdate = "Mon Jun 22 09:36:19 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$40", URL = "http://www.betabooks.mcgraw-hill.com/keyes2/index.htm", acknowledgement = ack-nhfb, url-author = "http://www.pbg.mcgraw-hill.com/computing/authors/keyes.html", url-publisher = "http://www.mcgraw-hill.com/", } @InProceedings{Ki:1998:CSD, author = "Byeongseob Ki and Scott Klasky", title = "Collaborative Scientific Data Visualization", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/scivis.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/scivis.ps", acknowledgement = ack-nhfb, } @Article{Ki:1998:S, author = "Byeongseob Ki and Scott Klasky", title = "Scivis", journal = j-CPE, volume = "10", number = "11--13", pages = "1107--1115", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050426; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050426&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Kirby:1998:LRJ, author = "Graham Kirby and Ron Morrison and David Stemple", title = "Linguistic Reflection in {Java}", journal = j-SPE, volume = "28", number = "10", pages = "1045--1077", month = aug, year = "1998", CODEN = "SPEXBL", ISSN = "0038-0644 (print), 1097-024X (electronic)", ISSN-L = "0038-0644", bibdate = "Thu Jul 29 15:11:57 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10007353; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10007353&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Software---Practice and Experience", } @Book{Kiuttu:1998:OIJ, author = "Petri Kiuttu", title = "Opeta itsellesi {Java JBuilder}", publisher = "Suomen Atk-kustannus Oy", address = "????", month = may, year = "1998", ISBN = "951-762-642-8", ISBN-13 = "978-951-762-642-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.satku.fi/", price = "????", URL = "http://www.satku.fi/kirjat/4jbuilder.htm", acknowledgement = ack-nhfb, language = "Finnish", } @Article{Kleinoder:1998:MPA, author = "J{\"u}rgen Klein{\"o}der and Michael Golm", title = "{MetaJava} --- {A} Platform for Adaptable Operating-System Mechanisms", journal = j-LECT-NOTES-COMP-SCI, volume = "1357", pages = "507--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Feb 5 11:51:33 MST 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t1357.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://link.springer-ny.com/link/service/series/0558/bibs/1357/13570507.htm; http://link.springer-ny.com/link/service/series/0558/papers/1357/13570507.pdf", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Kleinoeder:1998:MPA, author = "J. Kleinoeder and M. Golm", title = "{MetaJava} --- {A} Platform for Adaptable Operating-System Mechanisms", journal = j-LECT-NOTES-COMP-SCI, volume = "1357", pages = "507--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Klute:1998:JPD, author = "Rainer Klute", title = "{JDBC in der Praxis: Datenbankanwendungen in Intranet und Internet; [Entwicklungssoftware und Tools: Java development kit (JDK), Java servlet development kit (JSDK), PostgreSQL u.v.m.]}", publisher = pub-AW-LONGMAN, address = pub-AW-LONGMAN:adr, pages = "287 (est.)", year = "1998", ISBN = "3-8273-1301-5", ISBN-13 = "978-3-8273-1301-0", LCCN = "????", bibdate = "Sat Mar 09 15:52:50 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", acknowledgement = ack-nhfb, } @Book{Knecht:1998:JWE, author = "Joachim Knecht", title = "{Java Workshop 2.0: ein Einf{\"u}hrungskurs in die Programmierung}", publisher = pub-DPUNKT-VERLAG, address = pub-DPUNKT-VERLAG:adr, pages = "x + 267", year = "1998", ISBN = "3-920993-65-9", ISBN-13 = "978-3-920993-65-2", LCCN = "????", bibdate = "Mon Jun 22 12:17:15 1998", bibsource = "http://www.dpunkt.de/welcome.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "68 DM", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.dpunkt.de/welcome.html", xxtitle = "{WWW-Oberfl{\"a}chen mit Java. Ein Einf{\"u}hrungskurs in die Programmierung}", } @Book{Knudsen:1998:JC, author = "Jonathan B. Knudsen", title = "{Java} Cryptography", publisher = pub-ORA, address = pub-ORA:adr, pages = "xvi + 344", month = may, year = "1998", ISBN = "1-56592-402-9", ISBN-13 = "978-1-56592-402-4", LCCN = "QA76.73.J38 K59 1999", bibdate = "Mon Dec 08 09:03:25 2003", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", price = "US\$29.95", URL = "http://www.ora.com/catalog/javacrypt/", acknowledgement = ack-nhfb, } @Article{Knudsen:1998:JHH, author = "Jonathan Knudsen", title = "{JavaTalk}: Horseshoes, hand grenades and random numbers", journal = j-SUNSERVER, volume = "12", number = "1", pages = "16--17", month = jan, year = "1998", ISSN = "1091-4986", bibdate = "Wed Jan 14 08:24:51 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Book{Koffman:1998:PSJ, author = "Elliot B. Koffman and Ursula Wolz", title = "Problem Solving with {Java}", publisher = pub-AW, address = pub-AW:adr, month = aug, year = "1998", ISBN = "0-201-35743-7", ISBN-13 = "978-0-201-35743-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.awl.com/cseng/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://cseng.aw.com/bookdetail.qry?ISBN=0-201-35743-7&ptype=0", acknowledgement = ack-nhfb, } @Article{Konchady:1998:IJ, author = "Manu Konchady", title = "An Introduction to {JDBC}", journal = j-LINUX-J, volume = "55", pages = "??--??", month = nov, year = "1998", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Fri Oct 9 08:35:26 MDT 1998", bibsource = "http://www.linuxjournal.com/issue55/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "ftp://ftp.ssc.com/pub/lj/listings/issue55/2846.tgz", abstract = "A description of the basics and the benefits of using the Java Database Connectivity toolkit.", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Book{Kooijmans:1998:IJ, author = "Alex Louwe Kooijmans", title = "Integrating {Java} with {OS\slash 390}", publisher = pub-IBM-REDBOOKS, address = pub-IBM-REDBOOKS:adr, month = may, year = "1998", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.redbooks.ibm.com/", price = "????", URL = "http://www.redbooks.ibm.com/SG245142/sg245142.html", acknowledgement = ack-nhfb, } @Book{Koosis:1998:JPD, author = "Donald Koosis and David Koosis", title = "{Java} Programming for Dummies", publisher = pub-IDG, address = pub-IDG:adr, edition = "Third", pages = "xxiv + 375", month = jun, year = "1998", ISBN = "0-7645-0388-X", ISBN-13 = "978-0-7645-0388-7", LCCN = "QA76.73.J38 K66 1998", bibdate = "Wed Apr 28 14:04:13 1999", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$30", acknowledgement = ack-nhfb, } @Article{Koved:1998:EJS, author = "L. Koved and A. J. Nadalin and D. Neal and T. Lawson", title = "The evolution of {Java} security", journal = j-IBM-SYS-J, volume = "37", number = "3", pages = "349--??", month = "????", year = "1998", CODEN = "IBMJAE", ISSN = "0018-8646 (print), 2151-8556 (electronic)", bibdate = "Thu Nov 5 17:12:23 MST 1998", bibsource = "http://www.almaden.ibm.com/journal/sj37-2.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.almaden.ibm.com/journal/sj/373/koved.html", acknowledgement = ack-nhfb, fjournal = "IBM Systems Journal", } @InProceedings{Krall:1998:MEHa, author = "Andreas Krall and Mark Probst", title = "Monitors and Exceptions: How to implement {Java} efficiently", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/cacao.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/cacao.ps", acknowledgement = ack-nhfb, } @Article{Krall:1998:MEHb, author = "Andreas Krall and Mark Probst", title = "Monitors and exceptions: how to implement {Java} efficiently", journal = j-CPE, volume = "10", number = "11--13", pages = "837--850", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.interscience.wiley.com/jpages/1040-3108/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050393; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050393&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Krintz:1998:OET, author = "Chandra Krintz and Brad Calder and Han Bok Lee and Benjamin G. Zorn", title = "Overlapping execution with transfer using non-strict execution for mobile programs", journal = j-SIGPLAN, volume = "33", number = "11", pages = "159--169", year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sat May 1 15:51:26 MDT 1999", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/asplos/291069/p159-krintz/", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", keywords = "design; experimentation; languages; measurement; performance; standardization; theory; verification", subject = "{\bf C.1.4} Computer Systems Organization, PROCESSOR ARCHITECTURES, Parallel Architectures, Mobile processors. {\bf C.2.5} Computer Systems Organization, COMPUTER-COMMUNICATION NETWORKS, Local and Wide-Area Networks, Internet. {\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Java. {\bf F.1.2} Theory of Computation, COMPUTATION BY ABSTRACT DEVICES, Modes of Computation, Parallelism and concurrency. {\bf D.4.3} Software, OPERATING SYSTEMS, File Systems Management. {\bf K.6.2} Computing Milieux, MANAGEMENT OF COMPUTING AND INFORMATION SYSTEMS, Installation Management, Benchmarks.", } @InProceedings{Krishnaswamy:1998:EIJ, author = "Vijaykumar Krishnaswamy and Dan Walther and Sumeer Bhola and Ethendranath Bommaiah and George Riley and Brad Topol and Mustaque Ahamad", title = "Efficient Implementation of {Java Remote Method Invocation} ({RMI})", crossref = "USENIX:1998:PFU", pages = "??--??", year = "1998", bibdate = "Fri Oct 18 09:16:59 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/coots98/krishnaswamy.html", acknowledgement = ack-nhfb, } @Article{Kroeker:1998:NTC, author = "Kirk L. Kroeker", title = "New Tools: Component Technology: {4Developers}' Tool for Managing {ActiveX} and {COM} files; {SoftWired}'s {Java}-based Object Delivery {API}", journal = j-COMPUTER, volume = "31", number = "12", pages = "121--121", month = dec, year = "1998", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Wed Dec 2 14:13:05 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1998/pdf/rz118.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Kroeker:1998:NTM, author = "Kirk L. Kroeker", title = "New Tools: Software Development: {Rational Software}'s Development Tools for {Ada}, {Artlandia}'s {Mathematica} Graphics Tool, {ISE}'s {EiffelBase} Library Available for Free, {Annasoft System}'s {Windows CE} Development Tool; Hardware Development: {White Mountain}'s {DSP} Tools, {Analogy}'s Mixed-Signal {IC} Simulator, {Dynamic Soft Analysis}' Thermal Analysis Tool; New Development: {Framework Technologies}' Project Management System, {CAI}'s Message Broker, {Gordian}'s Network Redirector Software; Component Technology: {Black \& White}'s Usage Control Software for Multi-{ORB} {CORBA} Implementations, {IONA Technologies}' Middleware Development Tools, {GreenTree Technologies}' {ActiveX} Controls, {KL Group}'s {JavaBeans} with Automatic Data Binding", journal = j-COMPUTER, volume = "31", number = "10", pages = "110--114", month = oct, year = "1998", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Tue Oct 6 18:50:08 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1998/pdf/rx110.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Kroeker:1998:NTSc, author = "Kirk L. Kroeker", title = "New Tools: Software Development: {TakeFive Software}'s Source Code Tool; {RST}'s Test Tools; {Blue Sky}'s Help File Authoring Solution. Hardware Development: {Green Hills Software}'s Single-Source Solution for Tools and {RTOS}; {Tanner ERA}'s Interconnect Design Tools; {Xynetix Design Systems}' Autorouter. Net Development: {Aonix}'s {Web}-to-Legacy Tool; {Inktomi}'s Commercial Network Cache. Component Technology: {Visual Edge}'s Enterprise Application Integration Products; {Rogue Wave Software}'s Suite of {JavaBeans} Components", journal = j-COMPUTER, volume = "31", number = "7", pages = "90--93", month = jul, year = "1998", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Tue Jul 7 07:46:32 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1998/pdf/r7090.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Kroeker:1998:NTSe, author = "Kirk L. Kroeker", title = "New Tools: Software Development: {Rational Software}'s Development Tools for {Ada}, {Artlandia}'s {Mathematica} Graphics Tool, {ISE}'s {EiffelBase} Library Available for Free, {Annasoft System}'s {Windows CE} Development Tool. Hardware Development: {White Mountain}'s {DSP} Tools, {Analogy}'s Mixed-Signal {IC} Simulator, {Dynamic Soft Analysis}' Thermal Analysis Tool; Net Development: {Framework Technologies}' Project Management System, {CAI}'s Message Broker, {Gordian}'s Network Redirector Software; Component Technology: {Black \& White}'s Usage Control Software for Multi-{ORB} {CORBA} Implementations, {IONA Technologies}' Middleware Development Tools, {GreenTree Technologies}' {ActiveX} Controls, {KL Group}'s {JavaBeans} with Automatic Data Binding", journal = j-COMPUTER, volume = "31", number = "10", pages = "110--114", month = oct, year = "1998", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Tue Oct 6 18:50:08 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1998/pdf/rx110.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Kroeker:1998:NTSf, author = "Kirk L. Kroeker", title = "New Tools: Software Development: {Galorath}'s Parametric Estimation Tool; {Uniscape}'s Multilingual {API} and Runtime Library; {Object International}'s {UML} Modeler; {ObjecTime Limited}'s Real-Time Code Generation Tool. Hardware Development: {Diab Industry}'s {Java} Compiler for Embedded Systems; {Verilog}'s Embedded Systems Tool; {Intusoft}'s Simulation-Based Test Synthesis Tool. Net Development: {Rational Software}'s {Web}-Based Load-Testing Tool; {IONA Technologies}' {Internet} Security Tool; {Sonic Systems}' {ICSA}-Certified Low-Cost Firewall", journal = j-COMPUTER, volume = "31", number = "11", pages = "113--116", month = nov, year = "1998", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Thu Oct 29 07:11:28 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1998/pdf/ry113.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Book{Kruger:1998:GJ, author = "Guido Kruger", title = "Go to {Java} 1.2", publisher = pub-AWV, address = pub-AWV:adr, month = aug, year = "1998", ISBN = "3-8273-1370-8 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1370-6 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "80 DM", acknowledgement = ack-nhfb, language = "German", } @Article{Kukuk:1998:NPR, author = "Amy Kukuk", title = "New Products: {Raritan MasterConsole MX4, Raritan Computer, Inc.; VRtuoso, Bittco Solutions; Debian GNU/Linux ARM, Debian GNU/Linux; LinuxCAD, Software Forge, Inc.; Perspective for Java, Three D Graphics; MetaCard 2.2, MetaCard Corp.; EtherPage Version 3.0, Personal Productivity Tools, Inc.; D 3 Linux v.7.1, Pick Systems}", journal = j-LINUX-J, volume = "56", pages = "80, 95", month = dec, year = "1998", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Thu Nov 19 17:47:27 MST 1998", bibsource = "http://noframes.linuxjournal.com/lj-issues/issue56/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @InProceedings{Kumhyr:1998:DIC, author = "David B. Kumhyr", title = "Developing an International Calendar in {Java}", crossref = "UC:1998:TIU", pages = "??--??", year = "1998", bibdate = "Wed Aug 19 16:35:12 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc13/program.html", acknowledgement = ack-nhfb, } @Book{Ladd:1998:AVJ, author = "Scott Robert Ladd", title = "{Active {Visual J++} --- Web-Programmierung mit {ActiveX} und Java}", publisher = "Microsoft Press Germany", address = "????", month = mar, year = "1998", ISBN = "3-86063-393-7", ISBN-13 = "978-3-86063-393-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.microsoft.com/germany/mspress/", price = "80 DM", URL = "http://194.120.227.99/prd.i/pgen/press/FT16VFE47AS12P2E008MJ7W11XNLKLWL/product.html; isbn=3-86063-393-7", acknowledgement = ack-nhfb, language = "German", } @Book{Ladd:1998:JA, author = "Scott Robert Ladd", title = "{Java} Algorithms", publisher = pub-OMH, address = pub-OMH:adr, pages = "????", month = jan, year = "1998", ISBN = "0-07-913696-6", ISBN-13 = "978-0-07-913696-1", LCCN = "QA76.73.J38L33 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.osborne.com/", price = "US\$45", URL = "http://mcgraw-hill.inforonics.com/cgi/getarec?mgh42092%comp", acknowledgement = ack-nhfb, url-publisher = "http://www.osborne.com/", xxtitle = "{Java} Algorithms (Java Masters)", } @Book{Ladd:1998:UHJ, author = "Eric Ladd and Jim O'Donnell", title = "Using {HTML 4.0}, {Java} 1.1, and {JavaScript} 1.2", publisher = pub-QUE, address = pub-QUE:adr, edition = "Second", pages = "xxix + 1395", year = "1998", ISBN = "0-7897-1477-9", ISBN-13 = "978-0-7897-1477-0", LCCN = "QA76.76.H94L333 1998", bibdate = "Fri Sep 11 08:29:11 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, alttitle = "Using HTML 4, Java 1.1, and JavaScript 1.2 HTML 4.0, Java 1.1, and JavaScript 1.2", keywords = "HTML (Document markup language); Java (Computer program language); JavaScript (Computer program language)", } @Book{Lafore:1998:DSA, author = "Robert Lafore", title = "Data Structures and Algorithms in {Java}", publisher = pub-WAITE-GROUP, address = pub-WAITE-GROUP:adr, pages = "xxi + 625", month = mar, year = "1998", ISBN = "1-57169-095-6", ISBN-13 = "978-1-57169-095-1", LCCN = "QA76.9.D35L34 1998", bibdate = "Mon Jun 22 16:01:21 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/waite/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", series = "Mitch Waite Signature Series", URL = "http://merchant.superlibrary.com:8000/catalog/mcp/PRODUCT/PAGE/15716/bud/1571690956.html", acknowledgement = ack-nhfb, } @Book{Lafore:1998:GAJ, author = "Robert Lafore", title = "Gegevensstructuren, Algortihmen, {Java}", publisher = pub-ACADEMIC-SERVICE, address = pub-ACADEMIC-SERVICE:adr, month = apr, year = "1998", ISBN = "90-395-0927-1", ISBN-13 = "978-90-395-0927-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.acaserv.nl; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "fl. 85", URL = "http://acaserv.nl/bestel/5_0927.htm", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Lange:1998:PDM, author = "Danny B. Lange and Mitsuru Oshima", title = "Programming and Deploying Mobile Agents with {Java} Aglets", publisher = pub-AW, address = pub-AW:adr, pages = "xxiv + 225", month = sep, year = "1998", ISBN = "0-201-32582-9", ISBN-13 = "978-0-201-32582-9", LCCN = "????", bibdate = "Wed Oct 07 07:58:48 1998", bibsource = "http://www.awl.com/cseng/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$33", acknowledgement = ack-nhfb, } @Article{Launay:1998:FPP, author = "P. Launay and J.-L Pazat", title = "A Framework for Parallel Programming in {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1401", pages = "628--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Launay:1998:GDP, author = "P. Launay and J.-L Pazat", title = "Generation of Distributed Parallel {Java} Programs", journal = j-LECT-NOTES-COMP-SCI, volume = "1470", pages = "729--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Lawton:1998:NBS, author = "George Lawton", title = "News Briefs: {Sun} Joins Tetherless Network Fray; Private Doorbells: Solution to Encryption Controversy; {Web} Extensions Promise Distributed Computing; {Wall Street} Conducts Major {Y2K} Test; {Sun} Prepares to Submit First {Java} Standard; {Netscape} Loses More Ground in Browser War", journal = j-COMPUTER, volume = "31", number = "10", pages = "17--19", month = oct, year = "1998", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Tue Oct 6 18:50:08 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1998/pdf/rx017.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Book{Lea:1998:CPJ, author = "Doug Lea", title = "Concurrent Programming in {Java}", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "448", month = dec, year = "1998", ISBN = "0-201-31009-0 (softcover)", ISBN-13 = "978-0-201-31009-2 (softcover)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.aw.com/devpress/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Ledru:1998:JIL, author = "Pascal Ledru", title = "{JSpace}: implementation of a {Linda} System in {Java}", journal = j-SIGPLAN, volume = "33", number = "8", pages = "48--50", month = aug, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:50 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Ledru:1998:TSJ, author = "Pascal Ledru", title = "A Traveling Salesman in {Java}", journal = j-SIGPLAN, volume = "33", number = "8", pages = "51--56", month = aug, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:50 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Book{Lemay:1998:AJD, author = "Laura Lemay and Charles L. Perkins", title = "Aprendiendo {Java} 1.1 en 21 Dias", publisher = pub-PH, address = pub-PH:adr, edition = "Second", year = "1998", ISBN = "970-17-0054-6 (??invalid ISBN??)", ISBN-13 = "978-970-17-0054-9 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prentice.com.mx/", price = "????", URL = "http://www.mcl.com.mx/sotano/prentice.fm$Retrive?RecID=2743&html=HTMLRecord1", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Lemay:1998:TYJa, author = "Laura Lemay", title = "Teach Yourself {Java} 1.1 in 21 Days", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, edition = "Third", month = jun, year = "1998", ISBN = "1-57521-390-7", ISBN-13 = "978-1-57521-390-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$30", URL = "http://iq-mcp3.iquest.net/catalog/mcp/PRODUCT/PAGE/15752/bud/1575213907.html", acknowledgement = ack-nhfb, } @Book{Lemay:1998:TYJb, author = "Laura Lemay and Rogers Cadenhead", title = "Teach Yourself {Java 1.2} in 21 Days", publisher = pub-SAMS, address = pub-SAMS:adr, edition = "Third", year = "1998", ISBN = "1-57521-390-7", ISBN-13 = "978-1-57521-390-3", LCCN = "QA76.73.J38 L448 1998", bibdate = "Tue Aug 31 17:42:43 1999", bibsource = "http://lcis.booksonline.com/; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Revised edition, with same ISBN, of {\em Teach Yourself {Java} 1.1 in 21 Days}.", acknowledgement = ack-nhfb, } @InProceedings{Leong:1998:UJI, author = "Kok Yong Leong", title = "{Unicode}, {Java} and Input Methods", crossref = "UC:1998:ASI", pages = "??--??", year = "1998", bibdate = "Thu Aug 20 07:50:28 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc12/program.html", acknowledgement = ack-nhfb, } @InProceedings{Leroy:1998:SPT, author = "Xavier Leroy and Fran{\c{c}}ois Rouaix", title = "Security properties of typed applets", crossref = "ACM:1998:CRP", pages = "391--403", year = "1998", bibdate = "Mon May 3 12:57:52 MDT 1999", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/plan/268946/p391-leroy/", acknowledgement = ack-nhfb, keywords = "languages; security; theory; verification", subject = "{\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Java. {\bf F.3.3} Theory of Computation, LOGICS AND MEANINGS OF PROGRAMS, Studies of Program Constructs, Type structure. {\bf F.4.1} Theory of Computation, MATHEMATICAL LOGIC AND FORMAL LANGUAGES, Mathematical Logic, Lambda calculus and related systems. {\bf D.3.1} Software, PROGRAMMING LANGUAGES, Formal Definitions and Theory.", } @Article{Leuschel:1998:SAP, author = "Michael Leuschel and B. Martens and D. de Schreye", title = "Some achievements and prospects in partial deduction", journal = j-COMP-SURV, volume = "30", number = "3es", pages = "4:1--4:??", month = sep, year = "1998", CODEN = "CMSVAN", DOI = "http://doi.acm.org/10.1145/292469.292471", ISSN = "0360-0300 (print), 1557-7341 (electronic)", ISSN-L = "0360-0300", bibdate = "Thu Jun 19 10:06:21 MDT 2008", bibsource = "http://www.acm.org/pubs/contents/journals/surveys/; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Article 4.", URL = "http://www.acm.org:80/pubs/citations/journals/surveys/1998-30-3es/a4-leuschel/", abstract = "Internet programming languages such as Java present new challenges to garbage-collection design. The spectrum of garbage-collection schema for linked structures distributed over a network are reviewed here. Distributed garbage collectors are classified first because they evolved from single-address-space collectors. This taxonomy is used as a framework to explore distribution issues: locality of action, communication overhead and indeterministic communication latency.", acknowledgement = ack-nhfb, articleno = "4", fjournal = "ACM Computing Surveys", keywords = "automatic storage reclamation; distributed; distributed file systems; distributed memories; distributed object-oriented management; memory management; network communication; object-oriented databases; reference counting", } @Article{Lewis:1998:BCJa, author = "Ted Lewis", title = "Binary Critic: {Java Holy War '98}", journal = j-COMPUTER, volume = "31", number = "3", pages = "128, 126--127", month = mar, year = "1998", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Wed Mar 4 10:07:59 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://pdf.computer.org/co/books/co1998/pdf/r3128.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Book{Lewis:1998:JSS, author = "John Lewis and William Loftus", title = "{Java} software solutions: foundations of program design", publisher = pub-AW, address = pub-AW:adr, pages = "xxii + 857", year = "1998", ISBN = "0-201-57164-1", ISBN-13 = "978-0-201-57164-6", LCCN = "QA76.73.J38L49 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0201571641/wholesaleproductA/; http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$48.36", URL = "http://www.awl.com/cseng/titles/0-201-57164-1", acknowledgement = ack-nhfb, keywords = "computer; Java (computer program language); software; technology -- computers and computer technology", paperback = "yes", xxtitle = "Software Systems Using {Java}: Programming and Problem Solving", } @Book{Lewis:1998:PJI, author = "Geoffrey Lewis and Steven Barber and Ellen Siegel", title = "Programming with {Java IDL}: Developing {Web} Applications with {Java} and {CORBA}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xiv + 322", year = "1998", ISBN = "0-471-24797-9", ISBN-13 = "978-0-471-24797-5", LCCN = "QA76.625.L483 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$35", URL = "http://www.wiley.com/compbooks/catalog/24797-9.htm", acknowledgement = ack-nhfb, url-publisher = "http://www.wiley.com/", xxtitle = "Programming with {Java IDL}", } @InProceedings{Li:1998:DVU, author = "L. Li and A. Barnes", title = "Data Visualization Using {Java} and {VRML}", crossref = "Anonymous:1998:SUG", pages = "911--916", year = "1998", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Book{Li:1998:JDS, author = "Liwu Li", title = "{Java}, Data Structures and Programming", publisher = pub-SV, address = pub-SV:adr, pages = "440", month = mar, year = "1998", ISBN = "3-540-63763-X", ISBN-13 = "978-3-540-63763-9", LCCN = "????", bibdate = "Thu Jul 09 14:57:12 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.springer-ny.com/", price = "US\$49.95", acknowledgement = ack-nhfb, } @Article{Liang:1998:DCL, author = "Sheng Liang and Gilad Bracha", title = "Dynamic Class Loading in the {Java Virtual Machine}", journal = j-SIGPLAN, volume = "33", number = "10", pages = "36--44", month = oct, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:52 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @InProceedings{Lindenberg:1998:JIM, author = "Norbert Lindenberg", title = "{Java} Input Method Framework", crossref = "UC:1998:TIU", pages = "??--??", year = "1998", bibdate = "Wed Aug 19 16:35:12 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc13/program.html", acknowledgement = ack-nhfb, } @Article{Linthicum:1998:JES, author = "David S. Linthicum", title = "{Java} Evolves: With solid standards and tools, {Java} is becoming important in enterprise and embedded development", journal = j-BYTE, volume = "23", number = "1", pages = "60--60", month = jan, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Wed Mar 11 09:04:35 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @InProceedings{Little:1998:JTI, author = "M. C. Little and S. K. Shrivastava", title = "{Java} Transactions for the {Internet}", crossref = "USENIX:1998:PFU", pages = "??--??", year = "1998", bibdate = "Fri Oct 18 09:16:59 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/coots98/little.html", acknowledgement = ack-nhfb, } @Book{Lloyd:1998:ONV, author = "Doug Lloyd", title = "Official {Netscape Visual JavaScript Book}", publisher = pub-VENTANA, address = pub-VENTANA:adr, pages = "xxiv + 436", year = "1998", ISBN = "1-56604-761-7 (softcover)", ISBN-13 = "978-1-56604-761-6 (softcover)", LCCN = "QA76.73.J39 L56 1997", bibdate = "Thu Apr 02 09:00:27 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99, CDN\$69.99", } @Article{Lutz:1998:NBN, author = "Michael J. Lutz", title = "New Books: Network Management with Scripts; {Ethernet} Backbone; {Web} Technologies; Total Cache Knowledge; Putting on the Constraints; {Java GUI} Details; Doing Business on the Net; Programming {Netscape}", journal = j-COMPUTER, volume = "31", number = "7", pages = "89--89", month = jul, year = "1998", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Tue Jul 7 07:46:32 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1998/pdf/r7089.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Lutz:1998:NBPb, author = "Michael J. Lutz", title = "New Books: Programming for High-End {JavaBeans}; {Intel} Secrets; {Ada} and Concurrency; Data-Modeling Primer; Technology and Economics; Dissecting a Microprocessor; Real-World {ATM}; When Computers Run Amok", journal = j-COMPUTER, volume = "31", number = "10", pages = "109--109", month = oct, year = "1998", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Tue Oct 6 18:50:08 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1998/pdf/rx109.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Book{MacGreggor:1998:JNS, author = "Robert MacGreggor", title = "{Java} Network Security", publisher = pub-PH, address = pub-PH:adr, pages = "xii + 232", year = "1998", ISBN = "0-13-761529-9", ISBN-13 = "978-0-13-761529-2", LCCN = "QA76.73.J38J378 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$30", URL = "http://www.prenhall.com/ptrbooks/ptr_0137615299.html", acknowledgement = ack-nhfb, url-publisher = "http://www.prenhall.com/", } @Article{Mackenzie:1998:LPS, author = "Don Mackenzie and Andrew J. Gryc and Graziano {Lo Russo} and Gary Clouse and C. J. Hinke and Bruce E. Hogman and Thomas Fleischer and John Graham-Cumming", title = "Letters: The Passport System Does Work; Real-Time Sound; {C++} Versus {Java}; Online Op-Ed; Hard Encryption; {Y2K}; VerCheck Update", journal = j-DDJ, volume = "23", number = "12", pages = "12, 16--17", month = dec, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Nov 4 06:53:48 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Macketanz:1998:JRP, author = "R. Macketanz and W. Karl", title = "{JVX} --- {A} Rapid Prototyping System Based on {Java} and {FPGAs}", journal = j-LECT-NOTES-COMP-SCI, volume = "1482", pages = "99--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Mahmoud:1998:DPJ, author = "Qusay H. Mahmoud", title = "Distributed Programming with {Java}", publisher = pub-MANNING, address = pub-MANNING:adr, month = oct, year = "1998", ISBN = "1-884777-65-1", ISBN-13 = "978-1-884777-65-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.manning.com/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$44", URL = "http://www.manning.com/Mahmoud/index.html", acknowledgement = ack-nhfb, } @Book{Main:1998:DSO, author = "Michael Main", title = "Data Structures and Other Objects Using {Java}", publisher = pub-AW, address = pub-AW:adr, pages = "xxxii + 768", year = "1998", ISBN = "0-201-35744-5", ISBN-13 = "978-0-201-35744-8", LCCN = "QA76.73.J38M33 1999", bibdate = "Tue Mar 09 16:48:20 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.awl-he.com/titles/26621.html", acknowledgement = ack-nhfb, } @Article{Marceau:1998:LWJ, author = "Carla Marceau", title = "Letters: Why is {Java} Dangerous?", journal = j-IEEE-SOFTWARE, volume = "15", number = "3", pages = "10--10", month = may # "\slash " # jun, year = "1998", CODEN = "IESOEG", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Sat May 23 07:29:57 MDT 1998", bibsource = "http://computer.org/software/so1998/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/so/books/so1998/pdf/s3010.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Software", } @Article{Martin:1998:JGB, author = "Peter Martin", title = "{Java}, the Good, the Bad and the Ugly", journal = j-SIGPLAN, volume = "33", number = "4", pages = "34--39", month = apr, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:46 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.rowan.edu/sigplan/apr199~1.htm", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Martins:1998:JIW, author = "P. Martins and L. M. Silva and J. Silva", title = "A {Java} Interface for {WMPI}", journal = j-LECT-NOTES-COMP-SCI, volume = "1497", pages = "121--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Jan 5 08:21:58 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Maso:1998:JLVa, author = "Brian Maso", title = "{Java} 1.1, Level 1 Video", publisher = "KeyStone Learning Systems", address = "????", year = "1998", bibdate = "Thu Feb 04 06:42:29 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www1.clbooks.com/asp/BookInfo/BookInfo.asp?theisbn=VT10018356", note = "Video Training: Order number VT10018356.", price = "US\$71.95", acknowledgement = ack-nhfb, } @Book{Maso:1998:JLVb, author = "Brian Maso", title = "{Java} 1.1, Level 2 Video", publisher = "KeyStone Learning Systems", address = "????", year = "1998", bibdate = "Thu Feb 04 06:42:29 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www1.clbooks.com/asp/BookInfo/BookInfo.asp?theisbn=VT10018357", note = "Video Training: Order number VT10018357.", price = "US\$71.95", acknowledgement = ack-nhfb, } @Book{Maso:1998:JLVc, author = "Brian Maso", title = "{Java} 1.1, Level 3 Video", publisher = "KeyStone Learning Systems", address = "????", year = "1998", bibdate = "Thu Feb 04 06:42:29 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www1.clbooks.com/asp/BookInfo/BookInfo.asp?theisbn=VT10018358", note = "Video Training: Order number VT10018358.", price = "US\$89.95", acknowledgement = ack-nhfb, } @Book{Maso:1998:JLVd, author = "Brian Maso", title = "{Java} 1.1, Level 4 Video", publisher = "KeyStone Learning Systems", address = "????", year = "1998", bibdate = "Thu Feb 04 06:42:29 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www1.clbooks.com/asp/BookInfo/BookInfo.asp?theisbn=VT10018359", note = "Video Training: Order number VT10018359.", price = "US\$89.95", acknowledgement = ack-nhfb, } @Book{Maso:1998:JLVe, author = "Brian Maso", title = "{Java} 1.1, Level 5 Video", publisher = "KeyStone Learning Systems", address = "????", year = "1998", bibdate = "Thu Feb 04 06:42:29 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www1.clbooks.com/asp/BookInfo/BookInfo.asp?theisbn=VT10018360", note = "Video Training: Order number VT10018360.", price = "US\$89.95", acknowledgement = ack-nhfb, } @Book{Maso:1998:JLVf, author = "Brian Maso", title = "{Java} 1.1, Level 6 Video", publisher = "KeyStone Learning Systems", address = "????", year = "1998", bibdate = "Thu Feb 04 06:42:29 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www1.clbooks.com/asp/BookInfo/BookInfo.asp?theisbn=VT10018361", note = "Video Training: Order number VT10018361.", price = "US\$89.95", acknowledgement = ack-nhfb, } @InProceedings{Mauve:1998:TTA, author = "M. Mauve", title = "{TeCo3D}: a {3D} telecooperation application based on {VRML} and {Java} [3654-22]", crossref = "Kandlur:1998:MCN", number = "3654", pages = "240--251", year = "1998", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Book{McCarthy:1998:BWJ, author = "Martin McCarthy and Alligator Descartes", title = "Building {$3$D} worlds in {Java} and {VRML}", publisher = "Prentice Hall Europe", address = "New York, NY, USA", pages = "382", year = "1998", ISBN = "0-13-748625-1 (paperback)", ISBN-13 = "978-0-13-748625-0 (paperback)", LCCN = "QA76.73.J38M3527 1998", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, annote = "One computer laser optical disc in pocket attached to inside back cover.", keywords = "Computer graphics.; Java (Computer program language); VRML (Computer program language)", } @Book{McCarthy:1998:RAB, author = "Martin McCarthy and Alligator Descartes", title = "Reality architecture: building {3D} worlds with {Java} and {VRML}", publisher = pub-PH, address = pub-PH:adr, pages = "xiv + 382", year = "1998", ISBN = "0-13-748625-1", ISBN-13 = "978-0-13-748625-0", LCCN = "QA76.73.J38M3527 1998", bibdate = "Fri Sep 11 08:29:11 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, annote = "System requirements: Windows 95/NT ; CD-ROM drive.", keywords = "Computer graphics; Java (Computer program language); VRML (Document markup language)", } @Book{McCarthy:1998:UEA, author = "Pat McCarthy", title = "Unlimited Enterprise Access: {Java} and {VisualAge} Generator", publisher = pub-IBM-REDBOOKS, address = pub-IBM-REDBOOKS:adr, month = jun, year = "1998", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.redbooks.ibm.com/", price = "????", URL = "http://www.redbooks.ibm.com/SG245246/sg245246.html", acknowledgement = ack-nhfb, } @Book{McCarty:1998:OPJ, author = "Bill McCarty and Stephan Gilbert", title = "Objectgeorienteerd programmeren in {Java} 1.1", publisher = pub-ACADEMIC-SERVICE, address = pub-ACADEMIC-SERVICE:adr, pages = "ca. 1000", month = jan, year = "1998", ISBN = "90-395-0856-9", ISBN-13 = "978-90-395-0856-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.acaserv.nl; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "fl. 119,00", URL = "http://acaserv.nl/bestel/5_0856.htm", acknowledgement = ack-nhfb, language = "Dutch", } @Book{McCarty:1998:VDS, author = "Bill McCarty", title = "{Visual Developer SQL} Database Programming with {Java}: Creating Fast, Efficient Database Applications for the {Web}", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "xvii + 493", year = "1998", ISBN = "1-57610-176-2", ISBN-13 = "978-1-57610-176-6", LCCN = "QA76.9.D3M39367 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99, CDN\$55.99", URL = "http://www.coriolis.com/cgi-win/KBSearch.exe; http://www.coriolis.com/site/msie/books/ind/hpjsqudp.htm", acknowledgement = ack-nhfb, } @Article{McCluskey:1998:JPa, author = "Glen McCluskey", title = "{Java} Performance", journal = j-LOGIN, volume = "23", number = "4", month = jun, year = "1998", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:35 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/contents/contents.jun98.html", URL = "http://www.usenix.org/publications/login/1998-6/jperf.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{McCluskey:1998:JPb, author = "Glen McCluskey", title = "{Java} Performance", journal = j-LOGIN, volume = "23", number = "5", pages = "??--??", month = aug, year = "1998", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:37 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/contents/contents.aug98.html", URL = "http://www.usenix.org/publications/login/1998-8/java_perf.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{McCluskey:1998:JPc, author = "Glen McCluskey", title = "{Java} Performance", journal = j-LOGIN, volume = "23", number = "6", pages = "??--??", month = oct, year = "1998", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:39 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/contents/contents.oct98.html", URL = "http://www.usenix.org/publications/login/1998-10/java_performance.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{McCluskey:1998:JPd, author = "Glen McCluskey", title = "{Java} {I/O} Performance", journal = j-LOGIN, volume = "23", number = "7", pages = "??--??", month = dec, year = "1998", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:41 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/contents/contents.dec98.html", URL = "http://www.usenix.org/publications/login/1998-12/javaio.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{McCreary:1998:VVG, author = "C. McCreary and L. Barowski", title = "{VGJ}: Visualizing Graphs Through Java", journal = j-LECT-NOTES-COMP-SCI, volume = "1547", pages = "454--455", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Wed Sep 15 10:01:31 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1998b.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", keywords = "graph drawing", } @Article{McDowell:1998:RGJ, author = "C. E. McDowell", title = "Reducing garbage in {Java}", journal = j-SIGPLAN, volume = "33", number = "9", pages = "84--86", month = sep, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:51 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{McDowell:1998:UJC, author = "C. E. McDowell and E. A. Baldwin", title = "Unloading {Java} Classes That Contain Static Fields", journal = j-SIGPLAN, volume = "33", number = "1", pages = "56--60", month = jan, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:43 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @InProceedings{McFarland:1998:DIA, author = "Tom McFarland", title = "Developing Internationalized Applications\slash Applets with {Java}", crossref = "UC:1998:ASI", pages = "??--??", year = "1998", bibdate = "Thu Aug 20 07:50:28 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc12/program.html", acknowledgement = ack-nhfb, } @InProceedings{McFarland:1998:DIS, author = "Tom McFarland", title = "Developing Internationalized Software with {Java}", crossref = "UC:1998:TIU", pages = "??--??", year = "1998", bibdate = "Wed Aug 19 16:35:12 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc13/program.html", acknowledgement = ack-nhfb, } @Article{McGhan:1998:CPP, author = "Harlan McGhan and Mike O'Connor", title = "Computing Practices: {PicoJava}: {A} Direct Execution Engine For {Java} Bytecode", journal = j-COMPUTER, volume = "31", number = "10", pages = "22--30", month = oct, year = "1998", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Tue Oct 6 18:50:08 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1998/pdf/rx022.pdf; http://www.computer.org/computer/co1998/rx022abs.htm", acknowledgement = ack-nhfb, fjournal = "Computer", } @Book{McGraw:1998:SJG, author = "Gary McGraw and Edward Felten", title = "Securing {Java}: Getting Down to Business with Mobile Code", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xii + 324", year = "1998", ISBN = "0-471-31952-X", ISBN-13 = "978-0-471-31952-8", LCCN = "QA76.73.J38 M354 1999", bibdate = "Wed Feb 21 07:14:48 2001", bibsource = "http://www.javaworld.com/javaworld/jw-08-1998/jw-08-12bug.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, annote = "Originally published under title: {\em Java security}. 1997.", } @Article{McKeeman:1998:LJC, author = "Bill McKeeman", title = "A Lexer for {Java} in {C++}", journal = j-CCCUJ, volume = "16", number = "1", pages = "??--??", month = jan, year = "1998", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:13 MDT 2002", bibsource = "http://www.cuj.com/articles/1998/9801/9801toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "McKeeman gives us a lexer for Java that's reusable in all sorts of interesting ways.", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @InProceedings{Mehta:1998:EES, author = "Nimisha V. Mehta and Karen R. Sollins", title = "Expanding and Extending the Security Features of {Java}", crossref = "USENIX:1998:SUS", pages = "??--??", year = "1998", bibdate = "Fri Oct 18 09:16:59 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/sec98/mehta.html", acknowledgement = ack-nhfb, } @InProceedings{Mercuri:1998:UHJ, author = "R. Mercuri and N. Herrmann and J. Popyack", title = "Using {HTML} and {JavaScript} in Introductory Programming Courses", crossref = "Joyce:1998:PTN", volume = "30", number = "1", pages = "176--180", year = "1998", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Messer:1998:BJU, author = "Robert Messer and Steven R. Rakitin and Charles Ashbacher", title = "Bookshelf: {Java}, the Universe, and Everything: {{\em Java How to Program with an Introduction to J++}}; {{\em Software Quality Assurance and Measurement: A Worldwide Perspective}}; {{\em Object Solutions: Managing the Object-Oriented Process}}", journal = j-IEEE-SOFTWARE, volume = "15", number = "3", pages = "115--118", month = may # "\slash " # jun, year = "1998", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/MS.1998.676986", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Sat May 23 07:29:57 MDT 1998", bibsource = "http://computer.org/software/so1998/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/so/books/so1998/pdf/s3115.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Software", } @Misc{Metamorphic:1998:MCC, author = "{Metamorphic}", title = "{Metamorphic COBOL Converter}: {COBOL} to {Visual Basic}, {COBOL} to {C++}, {COBOL Caffeinator} (a {COBOL} to {Java} Converter)", publisher = "Metamorphic Computing Corp.", address = "14 East 4th Street, Suite 602, New York, NY 10012, USA", year = "1998", bibdate = "Mon Apr 27 12:36:25 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "This is an expensive commercial translator, available as a service charged by lines converted, or as a complete product to run locally.", URL = "http://www.metamorphic.com/default.htm; http://www.metamorphic.com/html/cobol.html", acknowledgement = ack-nhfb, } @Book{Middendorf:1998:JPR, author = "Stefan Middendorf and Reiner Singer", title = "{Java Programmierhandbuch und Referenz Ertweitungen}", publisher = pub-DPUNKT-VERLAG, address = pub-DPUNKT-VERLAG:adr, month = apr, year = "1998", ISBN = "3-920993-87-X", ISBN-13 = "978-3-920993-87-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.dpunkt.de/welcome.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "78 DM", acknowledgement = ack-nhfb, language = "German", } @Article{Midkiff:1998:OAR, author = "S. P. Midkiff and J. E. Moreira and M. Snir", title = "Optimizing array reference checking in {Java} programs", journal = j-IBM-SYS-J, volume = "37", number = "3", pages = "409--??", month = "????", year = "1998", CODEN = "IBMJAE", ISSN = "0018-8646 (print), 2151-8556 (electronic)", bibdate = "Thu Nov 5 17:12:23 MST 1998", bibsource = "http://www.almaden.ibm.com/journal/sj37-2.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.almaden.ibm.com/journal/sj/373/midkiff.html", acknowledgement = ack-nhfb, fjournal = "IBM Systems Journal", } @InProceedings{Miller:1998:MVJ, author = "Kevin Miller", title = "{Microsoft VM} for {Java}", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Invited talk.", acknowledgement = ack-nhfb, } @Book{Miller:1998:VMB, author = "Gregory R. Miller and Stephen C. Cooper", title = "Visual mechanics: beams and stress states", publisher = "PWS Publishing Company", address = "Boston, MA, USA", pages = "x + 149", year = "1998", ISBN = "0-534-95587-8", ISBN-13 = "978-0-534-95587-8", LCCN = "TA660.B4 M55 1998", bibdate = "Mon Apr 10 10:43:48 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Girders; Mathematical models; Data processing; Structural analysis (Engineering); Strains and stresses; Java virtual machine", } @Article{Millet:1998:PGT, author = "Laurent Millet and Ted Baker", title = "Porting the {GNAT} Tasking Runtime System to the {Java Virtual Machine}", journal = j-LECT-NOTES-COMP-SCI, volume = "1411", pages = "19--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Feb 5 11:52:10 MST 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t1411.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://link.springer-ny.com/link/service/series/0558/bibs/1411/14110019.htm; http://link.springer-ny.com/link/service/series/0558/papers/1411/14110019.pdf", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Miyoshi:1998:RTJ, author = "Akihiko Miyoshi and Takuro Kitayama and Hideyuki Tokuda", title = "A Real-Time {Java} Server for Real-Time {Mach}", journal = j-PARALLEL-DIST-COMP-PRACT, volume = "1", number = "2", pages = "??--??", month = "????", year = "1998", CODEN = "????", ISSN = "1097-2803", bibdate = "Fri Dec 19 08:14:12 MST 2003", bibsource = "http://www.cs.okstate.edu/~pdcp/vols/vol01/vol01no2.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.okstate.edu/~pdcp/vols/vol01/vol01no2abs.html#miyoshi", acknowledgement = ack-nhfb, fjournal = "PDCP: Parallel and Distributed Computing Practices", } @Article{Mohseni:1998:OSG, author = "Piroz Mohseni", title = "Operating Systems --- {Glasgow} Enhances {JavaBeans}", journal = j-BYTE, volume = "23", number = "2", pages = "51--52", month = feb, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Wed Mar 11 09:04:35 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "This next generation of {Java} components adds hierarchical structure, transparent data handling, and drag and drop.", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Moore:1998:JQH, author = "L. Richard Moore", title = "{Java Q\&A}: How Do {I} Create a Streaming Audio {Java} Applet?", journal = j-DDJ, volume = "23", number = "5", pages = "122--124", month = may, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Apr 1 16:59:28 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1998/1998_05/jqa598.txt; http://www.ddj.com/ftp/1998/1998_05/jqa598.zip", abstract = "Streaming audio refers to audio that can be downloaded at the same speed it is played. Rick presents idtAudio, a streaming audio applet written in Java. Additional resources include JQA598.TXT (listings) and jqa598.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Moreira:1998:CFC, author = "J. E. Moreira and S. P. Midikiff and M. Gupta", title = "A comparison of {Fortran}, {C}/{C++}, and {Java} for numerical computing", journal = j-IEEE-APM, volume = "40", number = "5", pages = "102--105", month = oct, year = "1998", CODEN = "IAPMEZ", DOI = "http://dx.doi.org/10.1109/74.736311", ISSN = "1045-9243", ISSN-L = "1045-9243", bibdate = "Sun May 28 18:24:52 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "IEEE Antennas and Propagation Magazine", remark = "Discusses performance impact of Java's prohibiting expression-code rearrangement.", } @Article{Morgan:1998:BDA, author = "Bryan Morgan", title = "Building Distributed Applications with {Java} and {CORBA}", journal = j-DDJ, volume = "23", number = "4", pages = "94, 96--99, 104--105", month = apr, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Mar 6 18:42:46 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1998/1998_04/corbajav.txt; http://www.ddj.com/ftp/1998/1998_04/corbajav.zip", abstract = "Bryan examines the concepts behind CORBA-based development using Borland's JBuilder and Visigenic's VisiBroker for Java. Additional resources include corbajav.txt (listings) and corbajav.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Morgan:1998:UJ, author = "Michael Morgan", title = "Using {Java} 1.2", publisher = pub-QUE, address = pub-QUE:adr, pages = "xi + 843", month = jun, year = "1998", ISBN = "0-7897-1627-5", ISBN-13 = "978-0-7897-1627-9", LCCN = "QA76.73.J38 M6725 1998", bibdate = "Wed Feb 21 07:16:12 2001", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$30", URL = "http://iq-mcp3.iquest.net/catalog/mcp/PRODUCT/PAGE/07897/bud/0789716275.html", acknowledgement = ack-nhfb, } @Article{Mosley:1998:PJB, author = "David H. Mosley", title = "Perspectives for {Java}-Based Computational Quantum Chemistry", journal = j-IJQC, volume = "70", number = "1", pages = "159--165", month = "????", year = "1998", CODEN = "IJQCB2", ISSN = "0020-7608 (print), 1097-461X (electronic)", ISSN-L = "0020-7608", bibdate = "Tue Aug 3 08:33:48 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: {\em The Ninth International Congress of Quantum Chemistry (Part I of II)}. Issue Edited by Keiji Morokuma, Ernest R. Davidson, Henry F. Schaefer III.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=74360; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=74360&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "International Journal of Quantum Chemistry", } @Article{Mosley:1998:PJC, author = "D. H. Mosley", title = "Perspectives for {Java}-Based Computational Quantum Chemistry", journal = j-IJQC, volume = "70", number = "1", pages = "159--??", month = "????", year = "1998", CODEN = "IJQCB2", ISSN = "0020-7608 (print), 1097-461X (electronic)", ISSN-L = "0020-7608", bibdate = "Sat Oct 10 17:04:49 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "International Journal of Quantum Chemistry", } @Book{Moss:1998:JS, author = "Karl Moss", title = "{Java} Servlets", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, month = jul, year = "1998", ISBN = "0-07-913779-2", ISBN-13 = "978-0-07-913779-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$45", URL = "http://www.pbg.mcgraw-hill.com/betabooks/moss/moss-home.html", acknowledgement = ack-nhfb, } @Article{Munsil:1998:RSU, author = "Wes Munsil and Chia-Jiu Wang", title = "Reducing stack usage in {Java} bytecode execution", journal = j-COMP-ARCH-NEWS, volume = "26", number = "1", pages = "7--11", month = mar, year = "1998", CODEN = "CANED2", DOI = "http://doi.acm.org/10.1145/1216461.1216464", ISSN = "0163-5964 (print), 1943-5851 (electronic)", ISSN-L = "0163-5964", bibdate = "Tue Jun 17 12:06:32 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "For many years, the Tomasulo method of dynamically scheduling instructions for execution in a load/store processor has been known and used. This paper presents an adaptation of the Tomasulo method to a stack-based processor architecture, and illustrates its use in a software simulator of a subset of the Java Virtual Machine. Experimental results show that the adapted Tomasulo method reduces stack usage, in some cases eliminating it altogether. This method should be of interest to computer architects and those involved in the implementation and use of the Java programming language.", acknowledgement = ack-nhfb, fjournal = "ACM SIGARCH Computer Architecture News", } @Book{Murray:1998:JHU, author = "William H. Murray and Chris H. Pappas", title = "{Javascript} and {HTML 4.0} user's resource", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "????", year = "1998", ISBN = "0-13-977422-X", ISBN-13 = "978-0-13-977422-5", LCCN = "QA76.73.J39M87 1998", bibdate = "Fri Sep 11 08:29:11 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "HTML (Document markup language); JavaScript (Computer program language)", } @Article{Naughton:1998:BJA, author = "Patrick Naughton", title = "{Basic} to {Java}: Assembling a Career", journal = j-IEEE-SOFTWARE, volume = "15", number = "1", pages = "14--17", month = jan # "\slash " # feb, year = "1998", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/MS.1998.646824", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Mon Mar 16 13:33:16 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/so/books/so1998/pdf/s1014.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Software", } @Book{Naughton:1998:JCR, author = "Patrick Naughton and Herbert Schildt", title = "{Java 1.1}: The Complete Reference", publisher = pub-OSBORNE, address = pub-OSBORNE:adr, edition = "Second", pages = "xxiv + 1028", year = "1998", ISBN = "0-07-882436-2", ISBN-13 = "978-0-07-882436-4", LCCN = "QA76.73.J38N378 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0078822319/wholesaleproductA/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.osborne.com/", price = "US\$39.99, CDN\$57.95", URL = "http://www.osborne.com/program/java11cr.htm", acknowledgement = ack-nhfb, paperback = "yes", } @Book{Negrino:1998:JWW, author = "Tom Negrino and Dori Smith", title = "{JavaScript} for the {World Wide Web}", publisher = pub-PEACHPIT, address = pub-PEACHPIT:adr, edition = "Second", pages = "xii + 195", year = "1998", ISBN = "0-201-69648-7", ISBN-13 = "978-0-201-69648-6", LCCN = "QA76.73.J39 N44 1998", bibdate = "Sat Jan 02 11:16:12 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$17.95", acknowledgement = ack-nhfb, annote = "Second edition, with new authors, of \cite{Gesing:1996:JWW}.", } @Book{Nelson:1998:JFC, author = "Matthew Nelson", title = "{Java} Foundation Classes ({JFC})", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, month = mar, year = "1998", ISBN = "0-07-913758-X", ISBN-13 = "978-0-07-913758-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$45", URL = "http://mcgraw-hill.inforonics.com/cgi/getarec?mgh50918%comp", acknowledgement = ack-nhfb, } @Book{Nemirovski:1998:AJ, author = "German Nemirovski and Michael Heise", title = "{Algorithmen in Java}", publisher = pub-AW, address = pub-AW:adr, pages = "????", year = "1998", ISBN = "3-8273-1234-5 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1234-1 (??invalid ISBN??)", LCCN = "????", bibdate = "Mon Mar 02 18:44:18 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "40 DM", URL = "http://www.addison-wesley.de/", acknowledgement = ack-nhfb, language = "German", } @Article{Neophytou:1998:NDJ, author = "N. Neophytou and P. Evripidou", title = "{Net-dbx}: {A} {Java} Powered Tool for Interactive Debugging of {MPI} Programs Across the {Internet}", journal = j-LECT-NOTES-COMP-SCI, volume = "1470", pages = "181--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Neophytou:1998:NJP, author = "N. Neophytou and P. Evripidou", title = "{Net-dbx}: {A} {Java} Powered Tool for Interactive Debugging of {MPI} Programs Across the {Internet}", journal = j-LECT-NOTES-COMP-SCI, volume = "1470", pages = "181--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Neou:1998:HCJ, author = "Vivian Neou", title = "{HTML 4.0 CD} with {JavaScript}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "496", year = "1998", ISBN = "0-13-095783-6", ISBN-13 = "978-0-13-095783-2", LCCN = "????", bibdate = "Wed Jun 17 07:32:45 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$49.95", URL = "http://www.phptr.com/ptrbooks/ptr_0130957836.html", acknowledgement = ack-nhfb, publishersnote = "From Dynamic HTML to JavaScript and beyond, now's the time to leverage the new Web technology that's out there waiting for you. In this book, best-selling author Vivian Neou demonstrates the proven techniques you need to build state-of-the-art multimedia Web sites-and gives you HTML 4 and JavaScript tools and templates for delivering perfect pages fast!", } @Book{Newman:1998:JSE, author = "Alex Newman", title = "{Java 1.2 Special Edition}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, month = mar, year = "1998", ISBN = "3-8272-1032-1 (??invalid ISBN??)", ISBN-13 = "978-3-8272-1032-6 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "90 DM", URL = "http://www.mut.ch/html/v2/Produkt-Information.htx?&x_pp=204%2e94%2e76%2e206VanW4xQbKi&x_pk=Direkt-Fr&x_stichwort=java&x_suchsprache=A&x_search=T&x_artikelnr=21032", acknowledgement = ack-nhfb, language = "German", } @InProceedings{Nikander:1998:JBC, author = "Pekka Nikander and Arto Karila", title = "A {Java} Beans Component Architecture for Cryptographic Protocols", crossref = "USENIX:1998:SUS", pages = "??--??", year = "1998", bibdate = "Fri Oct 18 09:16:59 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/sec98/nikander.html", acknowledgement = ack-nhfb, } @Article{Nilsen:1998:ARC, author = "Kelvin Nilsen", title = "Adding real-time capabilities to {Java}", journal = j-CACM, volume = "41", number = "6", pages = "49--56", month = jun, year = "1998", CODEN = "CACMA2", ISSN = "0001-0782 (print), 1557-7317 (electronic)", ISSN-L = "0001-0782", bibdate = "Thu Jun 4 06:13:01 MDT 1998", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/journals/cacm/1998-41-6/p49-nilsen/", acknowledgement = ack-nhfb, fjournal = "Communications of the ACM", } @Article{Nilsen:1998:PSF, author = "Kelvin Nilsen", title = "{picoPERC}: {A} Small-Footprint Dialect of {Java}", journal = j-DDJ, volume = "23", number = "3", pages = "50, 52--54", month = mar, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Mar 6 18:42:46 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1998/1998_03/javabj.zip", abstract = "picoPERC is a Java subset in which the core Virtual Machine implementation fits in less than 64 KB of memory. This 64-KB footprint is nearly 1/16th the size of JavaSoft's yet-to-be-defined Embedded Java and over 50 times smaller than typical Enterprise Java implementations. Additional resources include JAVABJ.ZIP (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @InProceedings{Nipkow:1998:JTS, author = "Tobias Nipkow and David von Oheimb", title = "Java$_{\rm light}$ is type-safe-definitely", crossref = "ACM:1998:CRP", pages = "161--170", year = "1998", bibdate = "Mon May 3 12:57:52 MDT 1999", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/plan/268946/p161-nipkow/", acknowledgement = ack-nhfb, keywords = "design; languages; verification", subject = "{\bf F.3.3} Theory of Computation, LOGICS AND MEANINGS OF PROGRAMS, Studies of Program Constructs, Type structure. {\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Java. {\bf F.3.1} Theory of Computation, LOGICS AND MEANINGS OF PROGRAMS, Specifying and Verifying and Reasoning about Programs, Mechanical verification. {\bf D.3.1} Software, PROGRAMMING LANGUAGES, Formal Definitions and Theory.", } @Book{Nixon:1998:OOP, author = "Nixon", title = "Object Oriented Programming With {Java}", publisher = pub-VENTANA, address = pub-VENTANA:adr, month = jun, year = "1998", ISBN = "1-85032-336-4", ISBN-13 = "978-1-85032-336-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.vmedia.com/", price = "US\$40", acknowledgement = ack-nhfb, } @Book{Nolan:1998:DJ, author = "Godfrey Nolan", title = "Decompiling {Java}", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, month = jun, year = "1998", ISBN = "0-07-913767-9", ISBN-13 = "978-0-07-913767-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$45", URL = "http://www.pbg.mcgraw-hill.com/betabooks/nolan/index.html", acknowledgement = ack-nhfb, } @Misc{NWGJGF:1998:PDI, author = "{Numerics Working Group, Java Grande Forum}", title = "Public Draft: Improving {Java} for Numerical Computation", howpublished = "World-Wide Web document.", day = "30", month = oct, year = "1998", bibdate = "Wed Dec 17 21:50:39 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://math.nist.gov/javanumerics/reports/jgfnwg-01.html", acknowledgement = ack-nhfb, } @Book{Oaks:1998:JS, author = "Scott Oaks", title = "{Java} Security", publisher = pub-ORA, address = pub-ORA:adr, pages = "xv + 454", month = may, year = "1998", ISBN = "1-56592-403-7", ISBN-13 = "978-1-56592-403-1", LCCN = "A76.73.J38 O247 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", price = "US\$32.95", URL = "http://www.oreilly.com/catalog/javasec", acknowledgement = ack-nhfb, } @InProceedings{OConner:1998:CLS, author = "John O'Conner", title = "Comparing Locale Support in the {Java} and {Win32} Platforms", crossref = "UC:1998:TIU", pages = "??--??", year = "1998", bibdate = "Wed Aug 19 16:35:12 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc13/program.html", acknowledgement = ack-nhfb, } @InProceedings{Okutsu:1998:WRJ, author = "Masayoshi Okutsu and Norbert Lindenberg", title = "World Ready {Java} --- The Next Step --- Part 2: Input Method Framework", crossref = "UC:1998:ASI", pages = "??--??", year = "1998", bibdate = "Thu Aug 20 07:50:28 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc12/program.html", acknowledgement = ack-nhfb, } @Article{ONeel:1998:BRD, author = "Bruce O'Neel", title = "Book Review: {{\em Designing with JavaScript}}", journal = j-LOGIN, volume = "23", number = "4", pages = "??--??", month = jun, year = "1998", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:33 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/contents/contents.jun98.html", URL = "http://www.usenix.org/publications/login/1998-6/heinle.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Book{ONeil:1998:JPG, author = "Joseph O'Neil", title = "{JavaBeans} Programming from the Ground Up", publisher = pub-OSBORNE, address = pub-OSBORNE:adr, pages = "xxiv, 487", month = mar, year = "1998", ISBN = "0-07-882477-X", ISBN-13 = "978-0-07-882477-7", LCCN = "QA76.73.J38 O817 1998", bibdate = "Wed Feb 21 07:18:42 2001", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.osborne.com/", note = "Edited by Herb Schildt.", price = "US\$35", URL = "http://www.osborne.com/program/javabeans.htm", acknowledgement = ack-nhfb, } @Article{Orchard:1998:BPE, author = "David Orchard", title = "Better Performance with Exceptions in {Java} --- You can use the language's runtime error checking to improve a program's performance", journal = j-BYTE, volume = "23", number = "3", pages = "53--54", month = mar, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Wed Mar 11 09:04:35 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Orfali:1998:CSP, author = "Robert Orfali and Dan Harkey", title = "Client\slash Server Programming with {Java} and {CORBA}", publisher = pub-WILEY, address = pub-WILEY:adr, edition = "Second", pages = "832", month = jan, year = "1998", ISBN = "0-471-24578-X", ISBN-13 = "978-0-471-24578-0", LCCN = "QA76.9.C55 O73 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$49.99", URL = "http://www.wiley.com/compbooks/catalog/24578-X.htm", acknowledgement = ack-nhfb, } @Book{Orfali:1998:IC, author = "Robert Orfali", title = "Instant {CORBA}", publisher = pub-AWV, address = pub-AWV:adr, month = jan, year = "1998", ISBN = "3-8273-1325-2 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1325-6 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "80 DM", URL = "http://www.addison-wesley.de/katalog/item.ppml?id=00270", acknowledgement = ack-nhfb, language = "German", } @Article{Paepcke:1998:IDL, author = "Andreas Paepcke and Chen-Chuan K. Chang and Terry Winograd and H{\'e}ctor Garc{\'\i}a-Molina", title = "Interoperability for digital libraries worldwide", journal = j-CACM, volume = "41", number = "4", pages = "33--42", month = apr, year = "1998", CODEN = "CACMA2", ISSN = "0001-0782 (print), 1557-7317 (electronic)", ISSN-L = "0001-0782", bibdate = "Thu Jun 4 06:13:01 MDT 1998", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/journals/cacm/1998-41-4/p33-paepcke/", acknowledgement = ack-nhfb, fjournal = "Communications of the ACM", keywords = "design; languages; measurement; reliability; security; standardization", subject = "{\bf H.3.7} Information Systems, INFORMATION STORAGE AND RETRIEVAL, Digital Libraries, Systems issues. {\bf C.2.4} Computer Systems Organization, COMPUTER-COMMUNICATION NETWORKS, Distributed Systems, Distributed applications. {\bf D.2.12} Software, SOFTWARE ENGINEERING, Interoperability, Distributed objects. {\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Java.", } @Book{Parr:1998:AXR, author = "Terence John Parr and John Lilley and Scott Stanchfield", title = "{ANTLR 2.xx} Reference Manual", publisher = "????", address = "????", pages = "v + 310", year = "1998", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Sat Sep 13 14:59:59 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "ANTLR \cite{Parr:1995:APL} is a redesign and rewrite of PCCTS \cite{Parr:1996:LLT} in Java. ANTLR generates parsers in C++ and Java. This book is still in preparation, and the title has not been settled.", price = "US\$34.95", URL = "http://www.parr-research.com/antlr/doc.html; http://www.parr-research.com/antlr/doc/antlr2story.html; http://www.parr-research.com/antlr/parr.phd.thesis.ps.zip; http://www.parr-research.com/antlr/performance.html", acknowledgement = ack-nhfb, } @Article{Passerone:1998:MRS, author = "C. Passerone and C. Sansoe and L. Lavagno and R. McGeer and J. Martin and R. Passerone and A. Sangiovanni-Vincentelli", title = "Modeling reactive systems in {Java}", journal = j-TODAES, volume = "3", number = "4", pages = "515--523", month = oct, year = "1998", CODEN = "ATASFO", ISSN = "1084-4309 (print), 1557-7309 (electronic)", ISSN-L = "1084-4309", bibdate = "Fri Jul 27 10:05:33 MDT 2001", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/articles/journals/todaes/1998-3-4/p515-passerone/p515-passerone.pdf; http://www.acm.org/pubs/citations/journals/todaes/1998-3-4/p515-passerone/", abstract = "We present an application of the Java TM programming language to specify and implement reactive real-time systems. We have developed and tested a collection of classes and methods to describe concurrent modules and their asynchronous communication by means of signals. The control structures are closely patterned after those of the synchronous language {\em Esterel}, succinctly describing concurrency, sequencing and preemption. We show the user-friendliness and efficiency of the proposed technique by using an example from the automotive domain.", acknowledgement = ack-nhfb, fjournal = "ACM Transactions on Design Automation of Electronic Systems (TODAES)", generalterms = "Design; Languages; Theory", keywords = "high level design; Java; prototyping; simulation", subject = "Hardware --- Logic Design --- Design Aids (B.6.3): {\bf Hardware description languages}; Computing Methodologies --- Simulation and Modeling --- Model Validation and Analysis (I.6.4); Computer Applications --- Physical Sciences and Engineering (J.2): {\bf Electronics}; Computer Applications --- Computer-Aided Engineering (J.6): {\bf Computer-aided design (CAD)}", } @Article{Pastor:1998:OOC, author = "O. Pastor and V. Pelechano and E. Insfran and J. Gomez", title = "From Object Oriented Conceptual Modeling to Automated Programming in {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1507", pages = "183--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Jan 5 08:21:58 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Pattison:1998:MVJ, author = "Ted Pattison", title = "{Microsoft Visual J++ Datenbank-Workshop}", publisher = "Microsoft Press Germany", address = "????", month = mar, year = "1998", ISBN = "3-86063-438-0", ISBN-13 = "978-3-86063-438-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.microsoft.com/germany/mspress/", price = "98 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Pattison:1998:VJD, author = "Ted Pattison", title = "{Visual J++} Database Programming", publisher = pub-MICROSOFT, address = pub-MICROSOFT:adr, month = feb, year = "1998", ISBN = "1-57231-689-6", ISBN-13 = "978-1-57231-689-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://mspress.microsoft.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", acknowledgement = ack-nhfb, } @Article{Payne:1998:IAJ, author = "Jeffery E. Payne and Michael A. Schatz and Matthew Schmid", title = "Implementing Assertions for {Java}: Finding bugs early", journal = j-DDJ, volume = "23", number = "1", pages = "40, 42--44", month = jan, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Dec 2 08:43:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Assertions act like watchdogs that assist you in finding bugs earlier in the development process. Our authors show how you implement assertions for Java. Additional resources include: ASSERT.TXT (listings).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Pedrick:1998:PVC, author = "Doug Pedrick and others", title = "Programming with {VisiBroker} ({CORBA} \& {JDBC})", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xvi + 435", month = feb, year = "1998", ISBN = "0-471-23901-1", ISBN-13 = "978-0-471-23901-7", LCCN = "QA76.73.J38 P79 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$45", URL = "http://www.wiley.com/compbooks/catalog/23901-1.htm", acknowledgement = ack-nhfb, } @Article{Petit-Bianco:1998:JGC, author = "Alexandre Petit-Bianco", title = "{Java} Garbage Collection For Real-Time Systems", journal = j-DDJ, volume = "23", number = "10", pages = "20--22, 24, 26--29", month = oct, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Sep 11 09:12:05 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1998/1998_10/kaffe.zip", abstract = "The software specifications and hardware constraints of real-time systems result in unique problems when it comes to garbage collection. Alexandre examines the issues involved in choosing a garbage-collection scheme for real-time systems, then describes the garbage collector used by Kaffe, a freely available Java virtual machine. Additional resources include kaffe.zip (executable).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Pfitzmann:1998:JBD, author = "A. Pfitzmann and A. Schill and A. Westfeld and G. Wicke and G. Wolf and J. Z{\"o}llner", title = "A {Java}-Based Distributed Platform for Multilateral Security", journal = j-LECT-NOTES-COMP-SCI, volume = "1402", pages = "52--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Feb 5 11:52:02 MST 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t1402.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://link.springer-ny.com/link/service/series/0558/bibs/1402/14020052.htm; http://link.springer-ny.com/link/service/series/0558/papers/1402/14020052.pdf", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Pitt:1998:JQH, author = "W. David Pitt", title = "{Java Q and A}: How Do {I} Use Servlets?", journal = j-DDJ, volume = "23", number = "12", pages = "122, 124--125", month = dec, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Nov 4 06:53:48 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ddj/1998/1998_12/../../../ftp/1998/1998_12/jqa128.txt; http://www.ddj.com/ddj/1998/1998_12/../../../ftp/1998/1998_12/jqa128.zip", abstract = "Java servlets are classes that implement the Servlet interface and can be invoked by a web page that defines a URL containing the class name of a servlet. David discusses two ways you can use servlet technology to create server-based Java applications with the ability to interact with web-based clients using HTML or serialized Java objects. Additional resources include jqa128.txt (listings) and jqa128.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Pitt:1998:VPJ, author = "W. David Pitt", title = "The Visitor Pattern and a {Java} Grep Utility", journal = j-DDJ, volume = "23", number = "6", pages = "30, 32, 93", month = jun, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Sat May 30 10:34:02 MDT 1998", bibsource = "http://www.ddj.com/ddj/1998/1998_06/index.htm; http://www.ddj.com/ftp/1998/1998_06/jgrep.txt; http://www.ddj.com/ftp/1998/1998_06/jgrep.zip; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Polan:1998:TNU, author = "M. G. Polan", title = "Technical note: Using the {San Francisco} frameworks with {VisualAge} for {Java}", journal = j-IBM-SYS-J, volume = "37", number = "2", pages = "215--??", month = "????", year = "1998", CODEN = "IBMJAE", ISSN = "0018-8646 (print), 2151-8556 (electronic)", bibdate = "Thu Nov 5 17:04:57 MST 1998", bibsource = "http://www.almaden.ibm.com/journal/sj37-2.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.almaden.ibm.com/journal/sj/372/polan.html", acknowledgement = ack-nhfb, fjournal = "IBM Systems Journal", } @Article{Pont:1998:SWJ, author = "Michael J. Pont", title = "Soapbox: Why {Java} is Dangerous", journal = j-IEEE-SOFTWARE, volume = "15", number = "1", pages = "20--22", month = jan # "\slash " # feb, year = "1998", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/MS.1998.646825", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Mon Mar 16 13:33:16 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/so/books/so1998/pdf/s1020.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Software", } @Book{Poo:1998:OOP, author = "Danny C. C. Poo and Derek B. K. (Derek Beng Kee) Kiong", title = "Object-Oriented Programming in {Java}", publisher = pub-SV, address = pub-SV:adr, pages = "xvii + 316", year = "1998", ISBN = "981-3083-96-4", ISBN-13 = "978-981-3083-96-7", LCCN = "QA76.64.P65 1998", bibdate = "Wed Mar 14 08:35:11 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Guest contributor: Dennis Lee.", price = "US\$24.95", acknowledgement = ack-nhfb, } @Book{Port:1998:SSI, author = "Dan Port", title = "{SIM} --- {Systems Integration Methodology} with {Java} Examples", publisher = pub-SV, address = pub-SV:adr, pages = "????", month = feb, year = "1998", ISBN = "0-387-98359-7", ISBN-13 = "978-0-387-98359-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.springer-ny.com/", price = "US\$55", acknowledgement = ack-nhfb, url-publisher = "http://www.springer-ny.com/", } @Article{Posegga:1998:BCV, author = "J. Posegga and H. Vogt", title = "Byte Code Verification for {Java} Smart Cards Based on Model Checking", journal = j-LECT-NOTES-COMP-SCI, volume = "1485", pages = "175--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Jan 5 08:21:58 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Powers:1998:DWP, author = "Shelley Powers and others", title = "Dynamic {Web} Publishing Unleashed ({HTML}, {Java} Script, {CGI}, {Java}, Style Sheets)", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, edition = "Second", pages = "xxviii + 844", year = "1998", ISBN = "1-57521-363-X", ISBN-13 = "978-1-57521-363-7", LCCN = "TK5105.888.D96 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", URL = "http://iq-mcp3.iquest.net/catalog/mcp/PRODUCT/PAGE/15752/bud/157521363X.html", acknowledgement = ack-nhfb, xxnote = "Duplicate ISBN with \cite{Croft:1997:HJA}.", } @Article{Prigozhin:1998:LDC, author = "Alexander Prigozhin and Steve Johnson and Jonathan Rosenne and Sy Wong and Scott Raney and Andreas Eder and Arthur Nunes", title = "Letters: Design by Contract; The Standardization Process; International {Java}; To: {\tt }; The {Metacard} Language; Symbolic Integration", journal = j-DDJ, volume = "23", number = "4", pages = "10, 12", month = apr, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Mon Jun 22 17:50:52 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Purdy:1998:JQ, author = "Jason W. Purdy", title = "{Java Q and A}: How Does {Java} Drag-and-Drop Work?", journal = j-DDJ, volume = "23", number = "11", pages = "127--130", month = nov, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Oct 28 18:43:06 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1998/1998_11/JQA118.TXT; http://www.ddj.com/ftp/1998/1998_11/JQA118.ZIP", abstract = "Jason examines the drag-and-drop (DnD) capabilities of both JavaSoft's Java Foundation Classes (JFC) and Microsoft's Windows Foundation Classes (WFC). Additional resources include JQA118.TXT (listings) and JQA118.ZIP (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Raje:1998:CCE, author = "Rajeev R. Raje and Michael Boyles and Shiaofen Fang", title = "{CEV}: collaborative environment for visualization using {Java RMI}", journal = j-CPE, volume = "10", number = "11--13", pages = "1079--1085", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050406; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050406&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Raje:1998:DIC, author = "R. R. Raje and S. Mukhopadhyay and M. Boyles and N. Patel and A. Papiez", title = "On designing and implementing a collaborative system using the distributed-object model of {Java-RMI}", journal = j-PARALLEL-DIST-COMP-PRACT, volume = "1", number = "4", pages = "??--??", month = "????", year = "1998", CODEN = "????", ISSN = "1097-2803", bibdate = "Fri Dec 19 08:14:13 MST 2003", bibsource = "http://www.cs.okstate.edu/~pdcp/vols/vol01/vol01no4.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.okstate.edu/~pdcp/vols/vol01/vol01no4abs.html#raje", acknowledgement = ack-nhfb, fjournal = "PDCP: Parallel and Distributed Computing Practices", } @Article{Rao:1998:UJa, author = "Prithvi Rao", title = "Using {Java}", journal = j-LOGIN, volume = "23", number = "4", month = jun, year = "1998", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:35 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/contents/contents.jun98.html", URL = "http://www.usenix.org/publications/java/usingjava11.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{Rao:1998:UJb, author = "Prithvi Rao", title = "Using {Java}", journal = j-LOGIN, volume = "23", number = "5", pages = "??--??", month = aug, year = "1998", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:37 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/contents/contents.aug98.html", URL = "http://www.usenix.org/publications/java/usingjava12.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{Rao:1998:UJc, author = "Prithvi Rao", title = "Using {Java}", journal = j-LOGIN, volume = "23", number = "6", pages = "??--??", month = oct, year = "1998", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:39 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/contents/contents.oct98.html", URL = "http://www.usenix.org/publications/java/usingjava13.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{Rao:1998:UJS, author = "Prithvi Rao", title = "Using {Java}: Security Outside the {JVM}", journal = j-LOGIN, volume = "23", number = "7", pages = "??--??", month = dec, year = "1998", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:41 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/contents/contents.dec98.html", URL = "http://www.usenix.org/publications/java/usingjava14.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Book{Razavi:1998:JJC, author = "Behfar Razavi", title = "{JavaStations} and {Java} Computing", publisher = pub-PH, address = pub-PH:adr, month = may, year = "1998", ISBN = "0-13-887423-9", ISBN-13 = "978-0-13-887423-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$40", URL = "http://www.prenhall.com/ptrbooks/ptr_0138874239.html", acknowledgement = ack-nhfb, } @Article{Redfern:1998:JAM, author = "Heather Redfern", title = "{Java} assists in monitoring of jet development", journal = j-SUNSERVER, volume = "12", number = "1", pages = "15--15", month = jan, year = "1998", ISSN = "1091-4986", bibdate = "Wed Jan 14 08:24:51 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SunServer", } @Book{Reese:1998:JJ, author = "George Reese", title = "{JDBC} et {Java}", publisher = pub-ORA, address = pub-ORA:adr, month = feb, year = "1998", ISBN = "2-84177-042-7", ISBN-13 = "978-2-84177-042-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.editions-oreilly.fr/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "220 FF", URL = "http://www.editions-oreilly.fr/international/france/prog/java-jdbc.html", acknowledgement = ack-nhfb, language = "French", } @Article{Renshaw:1998:BNA, author = "David S. Renshaw", title = "Building Network Apps --- Making Components Portable with {JavaBeans} --- {A} key to integrated solutions across multiple platforms", journal = j-BYTE, volume = "23", number = "2", pages = "81--84, 86--88", month = feb, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Wed Mar 11 09:04:35 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Article{Reus:1998:VCO, author = "B. Reus and A. Knapp and P. Cenciarelli and M. Wirsing", title = "Verifying a compiler optimization for Multi-Threaded {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1376", pages = "402--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Rinard:1998:DIE, author = "Martin C. Rinard and Monica S. Lam", title = "The Design, Implementation, and Evaluation of {Jade}", journal = j-TOPLAS, volume = "20", number = "3", pages = "483--??", month = may, year = "1998", CODEN = "ATPSDT", ISSN = "0164-0925 (print), 1558-4593 (electronic)", ISSN-L = "0164-0925", bibdate = "Sat Jan 2 10:45:15 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM Transactions on Programming Languages and Systems", } @Book{Roberts:1998:JCS, author = "Simon Roberts and Philip Heller", title = "{Java} 1.1 Certification Study Guide", publisher = pub-SYBEX, address = pub-SYBEX:adr, month = aug, year = "1998", ISBN = "0-7821-2330-9", ISBN-13 = "978-0-7821-2330-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.com/", price = "US\$55", acknowledgement = ack-nhfb, } @Article{Robinson:1998:JP, author = "G. S. Robinson", title = "{Java} and the {PAS} Process", journal = j-IEEE-MICRO, volume = "18", number = "1", pages = "4--5", month = jan # "\slash " # feb, year = "1998", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/40.653001", ISSN = "0272-1732 (print), 1937-4143 (electronic)", ISSN-L = "0272-1732", bibdate = "Thu Dec 14 06:08:58 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; Science Citation Index database (1980--2000)", acknowledgement = ack-nhfb, fjournal = "IEEE Micro", } @Book{Rodrigues:1998:APJ, author = "Lawrence H. Rodrigues", title = "Awesome Power of {JavaBeans}", publisher = pub-MANNING, address = pub-MANNING:adr, pages = "xxiii + 545", month = may, year = "1998", ISBN = "1-884777-56-2", ISBN-13 = "978-1-884777-56-1", LCCN = "QA76.73.J38R64 1998", bibdate = "Sat Oct 31 09:40:00 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.manning.com/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$45", URL = "http://www.manning.com/Rodrigues/index.html", acknowledgement = ack-nhfb, xxtitle = "Awesome Power of {Java Beans}", } @Article{Rooker:1998:BRJ, author = "Terry Rooker", title = "Book Review: {{\em Java Network Security}}", journal = j-LOGIN, volume = "23", number = "6", pages = "??--??", month = oct, year = "1998", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:33 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/contents/contents.oct98.html", URL = "http://www.usenix.org/publications/login/1998-10/java_sec.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Book{Rosenberger:1998:TYC, author = "Jeremy Rosenberger", title = "Teach Yourself {CORBA} in 21 Days", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xiv + 452", month = jan, year = "1998", ISBN = "0-672-31208-5", ISBN-13 = "978-0-672-31208-3", LCCN = "QA76.9.O35R67 1998", bibdate = "Sat Oct 31 09:41:08 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/sams/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$30", URL = "http://merchant.superlibrary.com:8000/catalog/hg/PRODUCT/PAGE/06723/bud/0672312085.html", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/sams/", xxtitle = "Teach Yourself {CORBA} in 14 Days", } @Article{Rousselle:1998:PTD, author = "Philip Rousselle", title = "Programmer's Toolchest: Dynamic Distributed Systems In {Java}", journal = j-DDJ, volume = "23", number = "4", pages = "88, 90--92, 102--104", month = apr, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Mar 6 18:42:46 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1998/1998_04/sojournr.txt; http://www.ddj.com/ftp/1998/1998_04/sojournr.zip", abstract = "Phil examines dynamic distributed Java programming techniques by presenting and `Sojourner', a load-balancing system that uses Voyager distributed computing infrastructure from Objectspace. Additional resources include sojournr.txt (listings) and sojournr.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Rubin:1998:JIS, author = "B. S. Rubin and A. R. Christ and K. A. Bohrer", title = "{Java} and the {IBM San Francisco} project", journal = j-IBM-SYS-J, volume = "37", number = "3", pages = "365--??", month = "????", year = "1998", CODEN = "IBMJAE", ISSN = "0018-8646 (print), 2151-8556 (electronic)", bibdate = "Thu Nov 5 17:12:23 MST 1998", bibsource = "http://www.almaden.ibm.com/journal/sj37-2.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.almaden.ibm.com/journal/sj/373/rubin.html", acknowledgement = ack-nhfb, fjournal = "IBM Systems Journal", } @InProceedings{Ruskin:1998:NIT, author = "K. J. Ruskin", title = "New {Internet} technology: {HTML} tools, {Java}, teleconferencing, and streaming multimedia", crossref = "Ikeda:1998:SAT", volume = "1168", pages = "229--234", year = "1998", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @InProceedings{Ryner:1998:JKF, author = "Stephen Wood {Ryner, Jr.} and Nobuko Chikamatsu", title = "{Java Kanji Flashcard 500}: {Kanji}, {Java} and the {World Wide Web}", crossref = "UC:1998:ASI", pages = "??--??", year = "1998", bibdate = "Thu Aug 20 07:50:28 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc12/program.html", acknowledgement = ack-nhfb, } @Book{Sadun:1998:JC, author = "Erica Sadun", title = "{Die JavaScript CD}", publisher = "Midas Verlag", address = "Z{\"u}rich, Switzerland", pages = "????", year = "1998", ISBN = "3-907020-40-5", ISBN-13 = "978-3-907020-40-1", LCCN = "????", bibdate = "Tue Mar 03 09:35:26 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "79 DM", acknowledgement = ack-nhfb, language = "German", } @Article{Sakharov:1998:TCP, author = "Alex Sakharov", title = "Technical Correspondence: Processing Recursive Data Types in {Java}", journal = j-SIGPLAN, volume = "33", number = "12", pages = "33--33", month = dec, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Thu Jan 14 15:02:28 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Sander:1998:HPC, author = "V. Sander and D. Erwin and V. Huber", title = "High-Performance Computer Management Based on {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1401", pages = "526--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Sanders:1998:PP, author = "James Sanders", title = "Products for Practitioners: {Windows DLLs}; {Windows} Memory Manager; Middleware Support; Remote Server; {Java} Decompiler; {Java} Connectivity; {Java} Quick Reference; Terminal Emulator", journal = j-IEEE-SOFTWARE, volume = "15", number = "4", pages = "83--86", month = jul # "\slash " # aug, year = "1998", CODEN = "IESOEG", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Tue Jul 7 08:58:23 MDT 1998", bibsource = "http://computer.org/software/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/so/books/so1998/pdf/s4083.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Software", } @Article{Sanders:1998:PPC, author = "James Sanders", title = "Products For Practitioners: {Cach{\'e}}; {SQml Web 1.0}; {Temporal Rover}; {Solutions: Schedule}; {Installshield Java Edition}", journal = j-IEEE-SOFTWARE, volume = "15", number = "1", pages = "103, 102", month = jan # "\slash " # feb, year = "1998", CODEN = "IESOEG", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Mon Mar 16 13:33:16 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/so/books/so1998/pdf/s1103.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Software", } @Article{Sanders:1998:PPW, author = "James Sanders", title = "Products for Practitioners: {Windows DLLs}; {Windows} Memory Manager; Middleware Support; Remote Server; {Java} Decompiler; {Java} Connectivity; {Java} Quick Reference; Terminal Emulator", journal = j-IEEE-SOFTWARE, volume = "15", number = "4", pages = "83--86", month = jul # "\slash " # aug, year = "1998", CODEN = "IESOEG", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Tue Jul 7 08:58:23 MDT 1998", bibsource = "http://computer.org/software/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/so/books/so1998/pdf/s4083.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Software", } @Article{Sarmenta:1998:BWB, author = "L. F. G. Sarmenta", title = "{Bayanihan}: {Web}-Based Volunteer Computing Using {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1368", pages = "444--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Thu Apr 30 12:35:29 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @InProceedings{Sarmenta:1998:TBBa, author = "Luis F. G. Sarmenta and Satoshi Hirano and Stephen A. Ward", title = "Towards {Bayanihan}: Building an Extensible Framework for Volunteer Computing Using {Java}", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/bayanihan.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/bayanihan.ps", acknowledgement = ack-nhfb, } @Article{Sarmenta:1998:TBBb, author = "Luis F. G. Sarmenta and Satoshi Hirano and Stephen A. Ward", title = "Towards {Bayanihan}: building an extensible framework for volunteer computing using {Java}", journal = j-CPE, volume = "10", number = "11--13", pages = "1015--1019", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.interscience.wiley.com/jpages/1040-3108/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050419; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050419&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Schader:1998:JEO, author = "M. Schader and L. Schmidt-Thieme", title = "{Java: Einf{\"u}hrung in die objektorientierte Programmierung}", publisher = pub-SV, address = pub-SV:adr, month = jun, year = "1998", ISBN = "3-540-63770-2", ISBN-13 = "978-3-540-63770-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.springer.de/", price = "45 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Scholten:1998:J, author = "Scholten", title = "{Java}", publisher = pub-AW-NL, address = pub-AW-NL:adr, month = jan, year = "1998", ISBN = "90-6789-938-0", ISBN-13 = "978-90-6789-938-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.adweslo.nl/explorer.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "fl. 50", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Schulz:1998:JSS, author = "Paul Schulz", title = "{Java 1.2. Schnell und sicher zum Ziel}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, month = may, year = "1998", ISBN = "3-453-14251-9", ISBN-13 = "978-3-453-14251-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "20 DM", acknowledgement = ack-nhfb, language = "German", } @InProceedings{Schwab:1998:AJCa, author = "Matthias Schwab and Joel Schroeder", title = "Algebraic {Java} classes for numerical optimization", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/jest.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/jest.ps", acknowledgement = ack-nhfb, } @Article{Schwab:1998:AJCb, author = "Matthias Schwab and Joel Schroeder", title = "Algebraic {Java} classes for numerical optimization", journal = j-CPE, volume = "10", number = "11--13", pages = "1155--1164", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.interscience.wiley.com/jpages/1040-3108/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050405; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050405&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Sedgewick:1998:AJ, author = "Robert Sedgewick", title = "Algorithms in {Java}, Parts 1--4", publisher = pub-AW, address = pub-AW:adr, edition = "Third", pages = "720 (est)", year = "1998", ISBN = "0-201-36120-5", ISBN-13 = "978-0-201-36120-9", LCCN = "QA76.73.J38S4 1998", bibdate = "Tue Mar 09 16:46:19 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.awl-he.com/titles/26809.html", acknowledgement = ack-nhfb, } @Article{Seshadri:1998:JQH, author = "Govind Seshadri", title = "{Java Q and A}: How Do {I} Implement Callbacks with {Java}'s {RMI}?", journal = j-DDJ, volume = "23", number = "3", pages = "123--124, 137--138", month = mar, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Mar 6 18:42:46 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1998/1998_03/jqa398.txt", abstract = "Java's Remote Method Invocation brings distributed-object computing to Java. Govind examines the intricacies of enabling true peer-to-peer Java RMI interaction. He then presents a step-by-step approach to implementing callbacks. Cliff Berg will return next month. Additional resources include JQA398.TXT (listings).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Sevenich:1998:JAP, author = "Richard Sevenich and Rick Price", title = "{JavaLanche}: An Avalanche Predictor", journal = j-LINUX-J, volume = "51", pages = "??--??", month = jul, year = "1998", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Fri Oct 9 08:35:26 MDT 1998", bibsource = "http://www.linuxjournal.com/issue51/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Here's how Fuzzy Logic is being used to predict avalanches.", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Book{Shaffer:1998:PID, author = "Clifford A. Shaffer", title = "A Practical Introduction to Data Structures and Algorithm Analysis: {Java} Edition", publisher = pub-PH, address = pub-PH:adr, pages = "xvii + 488", year = "1998", ISBN = "0-13-660911-2", ISBN-13 = "978-0-13-660911-7", LCCN = "QA76.9.D35S45 1998", bibdate = "Mon Jun 22 09:52:17 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$54.95", URL = "http://www.prenhall.com/books/esm_0136609112.html", acknowledgement = ack-nhfb, url-publisher = "http://www.prenhall.com/", } @Book{Shahi:1998:CVM, author = "Avantika Shahi", title = "A cybertheatre a virtual movie zone designed using {VRML} and {JavaScript}", publisher = "????", address = "????", pages = "44", year = "1998", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, annote = "Final project in UCLA School of Architecture. Project (M. Arch.)--UCLA, 1998.", keywords = "Cinematography -- Scientific applications.; JAVA (Computer program language); Technology and the arts.; VRML (Computer program language)", } @Book{Sharma:1998:JPE, author = "Rajiv Sharma and Vivek Sharma", title = "{Java} programming by example", publisher = pub-CUP, address = pub-CUP:adr, pages = "xi + 430", year = "1998", ISBN = "0-521-64442-9", ISBN-13 = "978-0-521-64442-6", LCCN = "QA76.73.J38 S455 1998", bibdate = "Wed Apr 28 14:04:45 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Sienkiewicz:1998:UJ, author = "Mark Sienkiewicz", title = "Using {Java}", journal = j-LOGIN, volume = "23", number = "2", pages = "??--??", month = apr, year = "1998", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:31 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/contents/contents.apr98.html", URL = "http://www.usenix.org/publications/java/usingjava10.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{Singal:1998:JF, author = "Sandeep Singal and Binh Nguyen", title = "The {Java} factor", journal = j-CACM, volume = "41", number = "6", pages = "34--37", month = jun, year = "1998", CODEN = "CACMA2", ISSN = "0001-0782 (print), 1557-7317 (electronic)", ISSN-L = "0001-0782", bibdate = "Thu Jun 4 06:13:01 MDT 1998", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/journals/cacm/1998-41-6/p34-singal/", acknowledgement = ack-nhfb, fjournal = "Communications of the ACM", } @Article{Singhal:1998:JFI, author = "Sandeep Singhal and Binh Nguyen", title = "The {Java} factor: Introduction", journal = j-CACM, volume = "41", number = "6", pages = "34--37", month = jun, year = "1998", CODEN = "CACMA2", ISSN = "0001-0782 (print), 1557-7317 (electronic)", ISSN-L = "0001-0782", bibdate = "Thu Jun 4 06:13:01 MDT 1998", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/journals/cacm/1998-41-6/p34-singal/", acknowledgement = ack-nhfb, fjournal = "Communications of the ACM", } @Book{Siple:1998:CGJ, author = "Matthew D. Siple", title = "The Complete Guide to {Java} Database Programming with {FDBC}: {JDBC}, {ODBC} \& {SQL}", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, month = jan, year = "1998", ISBN = "0-07-913286-3 (softcover)", ISBN-13 = "978-0-07-913286-4 (softcover)", LCCN = "QA76.625 .S557 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$44.95", series = "Java Masters Series", URL = "http://mcgraw-hill.inforonics.com/cgi/getarec?mgh31395%comp", acknowledgement = ack-nhfb, xxtitle = "The Complete Guide to {Java} Database Programming: {JDBC}, {ODBC} \& {SQL}", } @Book{Siyan:1998:VJP, author = "Karanjit Siyan", title = "{Visual J++ f{\"u}r Profis}", publisher = pub-ACADEMIC-SERVICE-VERLAG, address = pub-ACADEMIC-SERVICE-VERLAG:adr, year = "1998", ISBN = "3-932073-12-6 (??invalid ISBN??)", ISBN-13 = "978-3-932073-12-0 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "98 DM", acknowledgement = ack-nhfb, language = "German", } @Article{Solorzano:1998:PPJ, author = "Jose H. Solorzano and Suad Alagi{\'c}", title = "Parametric Polymorphism for {Java}: {A} Reflective Solution", journal = j-SIGPLAN, volume = "33", number = "10", pages = "216--225", month = oct, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:52 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Sood:1998:JQW, author = "Mukul Sood", title = "{Java Q and A}: What is {Swing}?", journal = j-DDJ, volume = "23", number = "9", pages = "111--114, 125", month = sep, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Aug 05 10:12:23 1998", bibsource = "http://www.ddj.com/ddj/1998/1998_09/index.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1998/1998_09/jqa998.txt; http://www.ddj.com/ftp/1998/1998_09/jqa998.zip", abstract = "Swing is a collection of lightweight components built on top of the Java Abstract Windowing Toolkit (AWT). Mukul zeros in on Swing's {\em JTable\/} components, and explains how the Model-View-Controller architecture applies to it.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Sood:1998:PTE, author = "Mukul Sood", title = "Programmer's Toolchest: Examining {JDBC} Drivers: Current drivers fit into our of four categories", journal = j-DDJ, volume = "23", number = "1", pages = "82, 84--87", month = jan, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Dec 2 08:43:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "JDBC, short for ``Java Database Connectivity,'' provides a programming-level interface for communicating with databases in a uniform way. Mukul discusses the different categories of JDBC drivers, then compares them in terms of performance. Additional resources include: SQL Access Group's Call-Level Interface, by Roger Sippl", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @InProceedings{Souder:1998:JCBa, author = "Dan Souder and Morgan Herrington and Rajat P. Garg and Dennis DeRyke", title = "{JSPICE}: {A} Component-based Distributed {Java} Front-End For {SPICE}", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/jspice.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/jspice.ps", acknowledgement = ack-nhfb, } @Article{Souder:1998:JCBb, author = "Dan Souder and Morgan Herrington and Rajat P. Garg and Dennis Deryke", title = "{JSPICE}: a component-based distributed {Java} front-end for {SPICE}", journal = j-CPE, volume = "10", number = "11--13", pages = "1131--1141", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.interscience.wiley.com/jpages/1040-3108/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050401; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050401&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Sowizral:1998:JAS, author = "Henry Sowizral and Kevin Rushforth and Michael Deering", title = "The {Java} 3{D API} Specification", publisher = pub-AW, address = pub-AW:adr, pages = "xx + 482", year = "1998", ISBN = "0-201-32576-4", ISBN-13 = "978-0-201-32576-8", LCCN = "QA76.73.J38S69 1997", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35", acknowledgement = ack-nhfb, url-publisher = "http://www.aw.com/", } @Book{Standish:1998:DSJ, author = "Thomas A. Standish", title = "Data Structures in {Java}", publisher = pub-AW, address = pub-AW:adr, pages = "xvii + 555", year = "1998", ISBN = "0-201-30564-X (hardcover)", ISBN-13 = "978-0-201-30564-7 (hardcover)", LCCN = "QA76.73.J38 S78 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.95", URL = "http://cseng.aw.com/bookdetail.qry?ISBN=0%2D201%2D30564%2DX&ptype=0; http://www.awl.com/cseng/titles/0-201-30564-X", acknowledgement = ack-nhfb, keywords = "data structures (computer science); java (computer program language)", url-author = "http://cseng.aw.com/authordetail.qry?AuthorID=386", url-publisher = "http://www.aw.com/", } @Article{Stankovic:1998:JNP, author = "N. Stankovic and K. Zhang", title = "{Java} and Network Parallel Processing", journal = j-LECT-NOTES-COMP-SCI, volume = "1497", pages = "239--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Jan 5 08:21:58 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Stanton:1998:TBT, author = "Scott Stanton", title = "{Tclblend}: Blending {Tcl} and {Java}", journal = j-DDJ, volume = "23", number = "2", pages = "50, 52--54, 100--101", month = feb, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Mon Feb 09 12:29:24 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "TclBlend, a scripting language based on Tcl and Java, introduces new Tcl commands that let you directly manipulate Java objects without having to write any Java code. TclBlend also provides access to the Tcl interpreter interfaces through a set of Java classes.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @InProceedings{Stata:1998:TSJ, author = "Raymie Stata and Mart{\'\i}n Abadi", title = "A type system for {Java} bytecode subroutines", crossref = "ACM:1998:CRP", pages = "149--160", year = "1998", bibdate = "Mon May 3 12:57:52 MDT 1999", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/plan/268946/p149-stata/", acknowledgement = ack-nhfb, keywords = "algorithms; languages; verification", subject = "{\bf F.3.3} Theory of Computation, LOGICS AND MEANINGS OF PROGRAMS, Studies of Program Constructs, Type structure. {\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Java. {\bf D.3.3} Software, PROGRAMMING LANGUAGES, Language Constructs and Features, Procedures, functions, and subroutines. {\bf F.3.2} Theory of Computation, LOGICS AND MEANINGS OF PROGRAMS, Semantics of Programming Languages.", } @Article{Steele:1998:JAI, author = "G. L. Steele", title = "{Java} Applications and Implementations", journal = j-LECT-NOTES-COMP-SCI, volume = "1368", pages = "18--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Steiner:1998:OJM, author = "Andreas Steiner and Adrian Kobler and Moira C. Norrie", title = "{OMS\slash Java} : Model Extensibility of {OODBMS} for Advanced Application Domains", journal = j-LECT-NOTES-COMP-SCI, volume = "1413", pages = "115--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Feb 5 11:52:11 MST 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t1413.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://link.springer-ny.com/link/service/series/0558/bibs/1413/14130115.htm; http://link.springer-ny.com/link/service/series/0558/papers/1413/14130115.pdf", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Steyer:1998:JK, author = "Ralph Steyer", title = "{Java 1.2 Kompendium}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, pages = "700", year = "1998", ISBN = "3-8272-5317-9", ISBN-13 = "978-3-8272-5317-0", LCCN = "????", bibdate = "Tue Mar 03 09:52:23 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "89,95 DM", URL = "http://www.mut.ch/html/buchinfo.htx?&x_pp=dJgxRqA9wlAYNijX&x_az=10&x_pk=VpLvjnsx7b5V&x_pa=B&x_pr=oS&x_bestell=25317&x_stichwort=Steyer&x_sprache=A&x_start=1&x_gefunden=1&x_query=&x_lastpage=buchfund&x_soft=&x_suchewo=A; http://www.mut.ch/profit.htx?&x_pk=kd84mf7ms9dm", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.mut.ch/", } @Article{Studt:1998:OOO, author = "Tim Studt", title = "Open, Object-Oriented Software Deal with Drug Design: {CORBA-Java} application framework can handle the data crunch in bioinformatics, while allowing for upgrades without having to worry about installation problems", journal = j-RES-DEV, volume = "40", number = "9", pages = "67--68", month = aug, year = "1998", CODEN = "REDEEA", ISSN = "0746-9179", bibdate = "Sat Aug 15 17:17:37 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Research \& Development", } @Article{Swaine:1998:PPJ, author = "Michael Swaine", title = "Programming Paradigms: {Java} and Other Weapons of War", journal = j-DDJ, volume = "23", number = "1", pages = "107--109", month = jan, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Dec 2 08:43:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Will the next killer app really be a ``FUDchecker''? And, if so, will it be written in Java?", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Swaine:1998:PPSb, author = "Michael Swaine", title = "Programming Paradigms: {Sun} Dreams of {Jini}", journal = j-DDJ, volume = "23", number = "11", pages = "113--114, 117", month = nov, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Oct 28 18:43:06 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/", abstract = "Michael examines Jini, Sun's system architecture for distributed computing. Jini embodies a model for how devices and software connect on a network and how distributed systems can operate.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Swildens:1998:PMA, author = "Eric Swildens and Selena Sol", title = "Programming With {Microsoft AFC}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xviii + 573", month = jan, year = "1998", ISBN = "0-471-24891-6", ISBN-13 = "978-0-471-24891-0", LCCN = "QA76.73.J38 S94 1998", bibdate = "Wed Feb 21 07:24:27 2001", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$50", URL = "http://www.wiley.com/compbooks/catalog/24891-6.htm", acknowledgement = ack-nhfb, } @TechReport{Taivalsaari:1998:IJV, author = "Antero Taivalsaari", title = "Implementing a {Java Virtual Machine} in the {Java} programming language", volume = "98-64", institution = "Sun Microsystems", address = "Palo Alto, CA, USA", pages = "23", month = mar, year = "1998", LCCN = "QA76.8.S86.S65", bibdate = "Mon Apr 10 10:43:19 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; library.mit.edu:9909/mit01", series = "SMLI TR", abstract = "JavaInJava is a Java virtual machine written in the Java programming language. The system was built at Sun Microsystems Laboratories in order to examine the feasibility of constructing high-quality virtual machines using the Java programming language and to experiment with new virtual machine implementation techniques. In this paper we describe the overall architecture of JavaInJava and summarize a number of interesting technical issues that were encountered during its implementation.", acknowledgement = ack-nhfb, subject = "Java (Computer program language); Virtual computer systems", } @InProceedings{Takagi:1998:NMPa, author = "Hiromitsu Takagi and Satoshi Matsuoka and Hidemoto Nakada and Satoshi Sekiguchi and Mitsuhisa Satoh and Umpei Nagashima", title = "{Ninflet}: a Migratable Parallel Objects Framework using {Java}", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/ninflet.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/ninflet.ps", acknowledgement = ack-nhfb, } @Article{Takagi:1998:NMPb, author = "Hiromitsu Takagi and Satoshi Matsuoka and Hidemoto Nakada and Satoshi Sekiguchi and Mitsuhisa Satoh and Umpei Nagashima", title = "{Ninflet}: a migratable parallel objects framework using {Java}", journal = j-CPE, volume = "10", number = "11--13", pages = "1063--1078", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.interscience.wiley.com/jpages/1040-3108/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050423; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050423&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Taylor:1998:CJW, author = "Christopher Taylor and Tim Kimmet", title = "Core {Java Web} Server", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "608", year = "1998", ISBN = "0-13-080559-9", ISBN-13 = "978-0-13-080559-1", LCCN = "????", bibdate = "Thu Jan 21 18:58:23 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", URL = "http://www.phptr.com/ptrbooks/ptr_0130805599.html", acknowledgement = ack-nhfb, publishersnote = "Dynamic, flexible and easy-to-use, the Java Web Server is the first full-fledged Web server that's written in Java and supports Sun's exciting new servlets. {\em Core Java Web Server\/} is the experienced developer's code-packed guide to using this hot new technology. Learn why Java Web Server is the ideal platform for next-generation Web applications.", xxnote = "Check pages and year??", } @Article{Taylor:1998:IPU, author = "Pamela J. Taylor", title = "{Internet} Programming: Using {NetRexx}", journal = j-DDJ, volume = "23", number = "4", pages = "84--87, 101", month = apr, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Mar 6 18:42:46 MST 1998", bibsource = "http://www.math.utah.edu/pub/mirrors/ftp.ira.uka.de/bibliography/Compiler/java.bib; http://www.math.utah.edu/pub/mirrors/ftp.ira.uka.de/bibliography/Compiler/JAVA/java.bib; http://www.math.utah.edu/pub/mirrors/ftp.ira.uka.de/bibliography/Misc/dr-dobbs.bib; http://www.math.utah.edu/pub/mirrors/ftp.ira.uka.de/bibliography/Misc/DR-DOBBS/dr-dobbs-1990.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1998/1998_04/netrexx.txt", abstract = "NetRexx is a programming language designed to make programming the Java Virtual Machine easier than with Java. Although NetRexx syntax is derived from Rexx, NetRexx is strongly typed, making it first-rate for programming the JVM and allowing access primitive (binary) datatypes. Additional resources include netrexx.txt (listings).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Teig:1998:LJD, author = "Oyvind Teig", title = "Letters: {Java} Deadlock", journal = j-DDJ, volume = "23", number = "1", pages = "10--10", month = jan, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Dec 2 08:43:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Tessem:1998:RJC, author = "B. Tessem and R. A. Whitehurst and C. L. Powell", title = "Retrieval of {Java} Classes for Case-Based Reuse", journal = j-LECT-NOTES-COMP-SCI, volume = "1488", pages = "148--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Jan 5 08:21:58 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @InProceedings{Thiruvathukal:1998:RRMa, author = "George K. Thiruvathukal and Lovely S. Thomas and Andy T. Korczynski", title = "{Reflective Remote Method Invocation}", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/reflective.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/reflective.ps", acknowledgement = ack-nhfb, } @Article{Thiruvathukal:1998:RRMb, author = "G. K. Thiruvathukal and L. S. Thomas and A. T. Korczynski", title = "Reflective remote method invocation", journal = j-CPE, volume = "10", number = "11--13", pages = "911--925", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050398; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050398&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Thompson:1998:JIP, author = "Carol Thompson", title = "{Java} on {IA-64} --- {A} peek into the future of {Java} performance on {Intel}'s {Merced} and beyond", journal = j-UNIX-REVIEW, volume = "16", number = "11", pages = "41--48", month = "????", year = "1998", CODEN = "UNRED5", ISSN = "0742-3136", bibdate = "Tue Feb 06 18:32:54 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; OCLC Article1st database", acknowledgement = ack-nhfb, fjournal = "UNIX review", } @TechReport{Tolksdorf:1998:PLJ, author = "Robert Tolksdorf", title = "Programming Languages for the {Java Virtual Machine}", institution = "Technische Universit{\"a}t Berlin, Fachbereich 13, Informatik, Formale Methoden, Logik und Programmierung (FLP), Sekr. FR 6-10", address = "Franklinstra{\ss}e 28/29, D-10587 Berlin, Germany", year = "1998", bibdate = "Tue Feb 09 05:47:54 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "World-Wide Web document with pointers to more than 60 compilers and translators between various programming languages and Java.", URL = "http://grunge.cs.tu-berlin.de/~tolk/vmlanguages.html", acknowledgement = ack-nhfb, } @Book{Topley:1998:CJF, author = "Kim Topley", title = "Core {Java} Foundation Classes ({JFC})", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxxv + 1168", month = may, year = "1998", ISBN = "0-13-080301-4", ISBN-13 = "978-0-13-080301-6", LCCN = "QA76.73.J38 T67 1998", bibdate = "Wed Feb 21 07:25:05 2001", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", note = "Includes CD-ROM.", price = "US\$49.95", URL = "http://www.prenhall.com/ptrbooks/ptr_0130803014.html", acknowledgement = ack-nhfb, xxtitle = "Core {Java Foundation Classes}", } @Misc{TowerTechnology:1998:TJB, author = "{Tower Technology}", title = "{TowerJ 2.0 Java} bytecode compiler", year = "1998", bibdate = "Tue Feb 24 16:30:07 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "The (commercial) TowerJ compiler translates Java source and Java bytecodes to Java bytecodes, native executables, or native shared libraries, for Windows NT/95, SPARC Solaris and SunOS, IBM AIX, HP/UX on PA/RISC, SGI IRIX and Linux.", URL = "http://www.twr.com/java/java-products.html", acknowledgement = ack-nhfb, } @Article{Tremblett:1998:JRJ, author = "Paul Tremblett", title = "{Java Reflection}: Not just for tool developers", journal = j-DDJ, volume = "23", number = "1", pages = "36, 38--39, 99--101", month = jan, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Dec 2 08:43:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "With the JDK 1.1 Reflection API, you can not only discover the fields, methods and constructors of loaded classes, but also dynamically manipulate them within the basic security framework. Chris Howard adds a note on the relationship between reflection and JavaBeans. Additional resources include: REFLECT.TXT (listings).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Tsirikos:1998:CSD, author = "D. Tsirikos and T. Markousis and I. Mouroulis and M. Hatzopoulos and M. Vazirgiannis and Y. Stavrakas", title = "A Client-Server Design for Interactive Multimedia Documents Based on {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1483", pages = "248--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Feb 5 11:52:56 MST 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t1483.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://link.springer-ny.com/link/service/series/0558/bibs/1483/14830248.htm; http://link.springer-ny.com/link/service/series/0558/papers/1483/14830248.pdf", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Tuck:1998:TYJ, author = "Devon Tuck", title = "Teach Yourself {Java} 1.1 in 21 Days, {Sun} Certification Exam Preparation Guide", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, month = jan, year = "1998", ISBN = "1-57521-365-6 (softcover)", ISBN-13 = "978-1-57521-365-1 (softcover)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", acknowledgement = ack-nhfb, } @Article{Tucker:1998:RJC, author = "Andrew Tucker", title = "Reading {Java} Class Files in {C++}", journal = j-CCCUJ, volume = "16", number = "4", pages = "??--??", month = apr, year = "1998", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:15 MDT 2002", bibsource = "http://www.cuj.com/articles/1998/9804/9804toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Here's a helpful utility for dismantling the executable form of a Java program.", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Tunkelang:1998:JJI, author = "D. Tunkelang", title = "{JIGGLE}: {Java Interactive General Graph Layout Environment}", journal = j-LECT-NOTES-COMP-SCI, volume = "1547", pages = "413--422", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Wed Feb 21 07:25:31 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1998b.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", keywords = "graph drawing", } @Book{Turner:1998:JAA, author = "E. Shane Turner and others", title = "{Java}: Activities and Applications on the Superhighway", publisher = "South-Western Educational Publishing", address = "Cincinnati, OH, USA", pages = "viii + 181", year = "1998", ISBN = "0-538-68012-1", ISBN-13 = "978-0-538-68012-7", LCCN = "QA76.73.J38J3598 1997", bibdate = "Wed Feb 21 06:48:37 2001", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.thomson.com/swpco/default.html", price = "US\$19.95", series = "DF-Computer Applications Ser", acknowledgement = ack-nhfb, xxauthor = "Karl Barksdale", xxtitle-1 = "{Java} Activities: Applets on the Superhighway", xxtitle-2 = "{Java} programming basics for the {Internet}", } @Book{Turner:1998:JPB, author = "E. Shane Turner and others", title = "{Java} programming basics for the {Internet}", publisher = "South-Western Educational Publishing", address = "Cincinnati, OH", pages = "????", year = "1998", ISBN = "0-538-68012-1", ISBN-13 = "978-0-538-68012-7", LCCN = "QA76.73.J38 J379 1998", bibdate = "Wed Apr 28 14:08:14 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Tyma:1998:WWU, author = "Paul Tyma", title = "Why are we using {Java} again?", journal = j-CACM, volume = "41", number = "6", pages = "38--42", month = jun, year = "1998", CODEN = "CACMA2", ISSN = "0001-0782 (print), 1557-7317 (electronic)", ISSN-L = "0001-0782", bibdate = "Thu Jun 4 06:13:01 MDT 1998", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/journals/cacm/1998-41-6/p38-tyma/", acknowledgement = ack-nhfb, fjournal = "Communications of the ACM", } @Article{Tzruya:1998:PID, author = "Yoav Tzruya and Mordecai Ben-Ari", title = "A Portable Implementation of the {Distributed Systems Annex} in {Java}", journal = j-SIGADA-LETTERS, volume = "18", number = "6", pages = "204--211", month = nov # "\slash " # dec, year = "1998", CODEN = "AALEE5", ISSN = "0736-721X", ISSN-L = "0736-721X", bibdate = "Tue Apr 20 17:47:37 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGADA Ada Letters", } @Article{Ungar:1998:PNC, author = "David Ungar and Lars Bak and Jesse Fang and John Duimovich and Scott Meyer", title = "Panel 2: The New Crop of {Java Virtual Machines}", journal = j-SIGPLAN, volume = "33", number = "10", pages = "179--182", month = oct, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Thu Nov 5 06:59:51 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Book{VanderVeer:1998:NVJ, author = "Emily A. {Vander Veer}", title = "{Netscape Visual JavaScript} for dummies", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xxvi + 380", year = "1998", ISBN = "0-7645-0286-7", ISBN-13 = "978-0-7645-0286-6", LCCN = "QA76.73.J39V3624 1998", bibdate = "Sat Oct 31 09:41:27 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.99", URL = "http://www.idgbooks.com/cgi-bin/db/fill_out_template.pl?idgbook:0-7645-0286-7:book-idg::uidg323", acknowledgement = ack-nhfb, } @InProceedings{vanHalderen:1998:FWBa, author = "Berry A. W. van Halderen and Benno J. Overeinder", title = "{Fornax}: Web-based Distributed Discrete Event Simulation in {Java}", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/fornax.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/fornax.ps", acknowledgement = ack-nhfb, } @Article{VanHalderen:1998:FWBb, author = "Berry A. W. {Van Halderen} and Benno J. Overeinder", title = "{Fornax}: {Web}-based distributed discrete event simulation in {Java}", journal = j-CPE, volume = "10", number = "11--13", pages = "957--970", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050402; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050402&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{vanHoff:1998:JGB, author = "Arthur {van Hoff}", title = "{Java}: Getting Down to Business: Is {IS} ready for real applications?", journal = j-DDJ, volume = "23", number = "1", pages = "20--22, 24", month = jan, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Dec 2 08:43:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "A Java pioneer looks at the state of the art, Java-wise, and wonders if it is ready for prime-time business applications. Additional resources include: Java and Internet Programming, by Arthur van Hoff.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Varela:1998:WAJ, author = "Carlos A. Varela and Gul A. Agha", title = "What after {Java? From} objects to actors", journal = j-COMP-NET-ISDN, volume = "30", number = "1--7", pages = "573--577", day = "1", month = apr, year = "1998", CODEN = "CNISE9", ISSN = "0169-7552", ISSN-L = "0169-7552", bibdate = "Fri Sep 24 20:22:05 MDT 1999", bibsource = "http://www.elsevier.com/cgi-bin/cas/tree/store/cna/cas_free/browse/browse.cgi?year=1998&volume=30&issue=1-7; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.elsevier.com/cas/tree/store/comnet/sub/1998/30/1-7/1890.pdf", acknowledgement = ack-nhfb, fjournal = "Computer Networks and ISDN Systems", } @Article{Varvitsiotis:1998:EJT, author = "A. Varvitsiotis and D. Polemi and A. Marsh", title = "{EUROMED-JAVA}: Trusted Third Party Services for Securing Medical {Java} Applets", journal = j-LECT-NOTES-COMP-SCI, volume = "1485", pages = "209--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Jan 5 08:21:58 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Varvitsiotis:1998:ETT, author = "A. Varvitsiotis and D. Polemi and A. Marsh", title = "{EUROMED-JAVA}: Trusted Third Party Services for Securing Medical {Java} Applets", journal = j-LECT-NOTES-COMP-SCI, volume = "1485", pages = "209--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Jan 5 08:21:58 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Vermillion:1998:MRL, author = "Colleen Vermillion", title = "Media Reviews: Learning {Java} basics: {{\em Java 1.2 and JavaScript for C and C++ Programmers} by Michael C. Daconta et al. (John Wiley \& Sons,1998, \$54.99, ISBN 0-471-18359-8)}", journal = j-IEEE-MULTIMEDIA, volume = "5", number = "4", pages = "83--83", month = oct # "--" # dec, year = "1998", CODEN = "IEMUE4", ISSN = "1070-986X (print), 1941-0166 (electronic)", ISSN-L = "1070-986X", bibdate = "Mon Jan 29 16:05:15 MST 2001", bibsource = "http://www.computer.org/multimedia/mu1998/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/mu/books/mu1998/pdf/u4083.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE MultiMedia", } @Article{Vijaykrishnan:1998:OAS, author = "N. Vijaykrishnan and N. Ranganathan and R. Gadekarla", title = "Object-Oriented Architectural Support for a {Java} Processor", journal = j-LECT-NOTES-COMP-SCI, volume = "1445", pages = "330--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Vijaykrishnan:1998:OOA, author = "N. Vijaykrishnan and N. Ranganathan and R. Gadekarla", title = "Object-Oriented Architectural Support for a {Java} Processor", journal = j-LECT-NOTES-COMP-SCI, volume = "1445", pages = "330--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Feb 5 11:52:32 MST 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t1445.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://link.springer-ny.com/link/service/series/0558/bibs/1445/14450330.htm; http://link.springer-ny.com/link/service/series/0558/papers/1445/14450330.pdf", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Vogel:1998:JPC, author = "Andreas Vogel and Keith Duddy", title = "{Java} Programming With {CORBA}", publisher = pub-WILEY, address = pub-WILEY:adr, edition = "Second", pages = "496", month = feb, year = "1998", ISBN = "0-471-24765-0", ISBN-13 = "978-0-471-24765-4", LCCN = "QA76.73.J38V64 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$34.99", URL = "http://www.wiley.com/compbooks/catalog/24765-0.htm", acknowledgement = ack-nhfb, } @InProceedings{Vogt:1998:JBV, author = "H. Vogt and J. Possegga", booktitle = "{Proc. OOPSLA'98 Workshop on Formal Underpinnings of the Java Paradigm, Vancouver, October 18--22, 1998}", title = "{Java} Bytecode Verification Using Model Checking", publisher = pub-ACM, address = pub-ACM:adr, pages = "??--??", year = "1998", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Dec 01 07:20:51 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{vonGudenberg:1998:JSC, author = "J. W. {von Gudenberg}", title = "{Java} for Scientific Computing, Pros and Cons", journal = j-J-UCS, volume = "4", number = "1", pages = "11--??", day = "28", month = jan, year = "1998", CODEN = "????", ISSN = "0948-6968", ISSN-L = "0948-6968", bibdate = "Wed Mar 4 15:32:49 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://medoc.springer.de:8000/jucs/jucs_4_1/java_for_scientific_computing", acknowledgement = ack-nhfb, fjournal = "J.UCS: Journal of Universal Computer Science", } @Article{Wakeling:1998:HJV, author = "D. Wakeling", title = "A {Haskell} to {Java Virtual Machine} Code Compiler", journal = j-LECT-NOTES-COMP-SCI, volume = "1467", pages = "39--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Jan 5 08:21:58 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Wakeling:1998:MHC, author = "D. Wakeling", title = "Mobile {Haskell}: Compiling Lazy Functional Programs for the {Java Virtual Machine}", journal = j-LECT-NOTES-COMP-SCI, volume = "1490", pages = "335--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Jan 5 08:21:58 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Waldo:1998:SRP, author = "Jim Waldo", title = "Spotlight: Remote procedure calls and {Java Remote Method Invocation}", journal = j-IEEE-CONCURR, volume = "6", number = "3", pages = "5--7", month = jul # "\slash " # sep, year = "1998", CODEN = "IECMFX", DOI = "http://dx.doi.org/10.1109/4434.708248", ISSN = "1092-3063 (print), 1558-0849 (electronic)", ISSN-L = "1092-3063", bibdate = "Tue Jan 16 06:04:49 MST 2001", bibsource = "http://www.computer.org/concurrency/pd1998/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/pd/books/pd1998/pdf/p3005.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Concurrency", } @Book{Walnum:1998:ABB, author = "Clayton Walnum", title = "{AFC} Black Book", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "xvii + 638", month = apr, year = "1998", ISBN = "1-57610-235-1", ISBN-13 = "978-1-57610-235-0", LCCN = "QA76.73.J38 W345 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", acknowledgement = ack-nhfb, } @Book{Walrath:1998:JST, author = "Kathy Walrath and Mary Campione", title = "The {JFC Swing} Tutorial: {A} Guide to Constructing {GUIs}", publisher = pub-AW, address = pub-AW:adr, pages = "752", year = "1998", ISBN = "0-201-43321-4", ISBN-13 = "978-0-201-43321-0", LCCN = "QA76.9.U83W36 1998", bibdate = "Tue May 11 07:32:29 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www2.awl.com/cseng/javaseries/swingtut.html", acknowledgement = ack-nhfb, } @Book{Walsh:1998:JDa, author = "Aaron Walsh", title = "{Java} for Dummies", publisher = pub-IDG, address = pub-IDG:adr, edition = "Third", year = "1998", ISBN = "0-7645-0417-7", ISBN-13 = "978-0-7645-0417-4", LCCN = "QA76.73.J38 W36 1998", bibdate = "Sat Oct 28 08:19:53 2000", bibsource = "http://lcis.booksonline.com/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$24.99", acknowledgement = ack-nhfb, } @Book{Walsh:1998:JDb, author = "Aaron Walsh", title = "{Java} for Dummies", publisher = pub-APOGEO, address = pub-APOGEO:adr, month = apr, year = "1998", ISBN = "88-7303-423-3", ISBN-13 = "978-88-7303-423-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.apogeonline.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "39,500 L.", URL = "http://www.apogeonline.com/catalogo/375.html", acknowledgement = ack-nhfb, language = "Italian", } @Book{Watson:1998:JPW, author = "Mark Watson", title = "{Java} Programming for {Windows}: Using {Microsoft} {AFC}, {WFC}, and {XML}", publisher = pub-MORGAN-KAUFMANN, address = pub-MORGAN-KAUFMANN:adr, pages = "xxiii + 344", year = "1998", ISBN = "1-55860-516-9", ISBN-13 = "978-1-55860-516-9", LCCN = "QA76.73.J38W383 1999", bibdate = "Fri Jan 19 06:13:22 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.95", URL = "http://www.mkp.com/books_catalog/catalog.asp?ISBN=1-55860-516-9", acknowledgement = ack-nhfb, keywords = "Java (Computer program language); Microsoft AFC; Microsoft Windows (Computer file); Windows foundation class library; XML (Computer program language)", } @Article{Wayner:1998:HSJ, author = "Peter Wayner", title = "How to Soup Up {Java}, Part {II}: Nine Recipes for East, Easy {Java}: {A} Maturing {Java} brings a wide variety of programming solutions to developers", journal = j-BYTE, volume = "23", number = "5", pages = "76--80", month = may, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Mon May 11 07:38:50 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Wayner:1998:JRP, author = "Peter Wayner", title = "{JavaBeans} for Real Programmers", publisher = pub-AP-PROFESSIONAL, address = pub-AP-PROFESSIONAL:adr, pages = "????", month = jan, year = "1998", ISBN = "0-12-738670-X", ISBN-13 = "978-0-12-738670-6", LCCN = "QA76.73.J38W393 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.apnet.com/approfessional/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", URL = "http://www.apcatalog.com/cgi-bin/AP?ISBN=012738670X&LOCATION=US&FORM=FORM2", acknowledgement = ack-nhfb, url-publisher = "http://www.apnet.com/approfessional/", } @Article{Wayner:1998:MJD, author = "Peter Wayner", title = "Making {Java} Development {JSafe} --- {RSA}'s cryptographic toolkit targets {Java} as the platform of choice for secured {Internet} applications", journal = j-BYTE, volume = "23", number = "1", pages = "117--117", month = jan, year = "1998", CODEN = "BYTEDJ", ISSN = "0360-5280", ISSN-L = "0360-5280", bibdate = "Wed Mar 11 09:04:35 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "BYTE Magazine", } @Book{Weaver:1998:IJW, author = "Lynn Weaver and Bob Jervis", title = "Inside {Java WorkShop} 2.0", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "xxix + 380", year = "1998", ISBN = "0-13-899584-2", ISBN-13 = "978-0-13-899584-3", LCCN = "QA76.73.J38W397 1998", bibdate = "Tue Nov 03 11:36:01 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.phptr.com/ptrbooks/ptr_0138995842.html; http://www.prenhall.com/", price = "US\$40", series = "SunSoft Press Java series", URL = "http://www.fdds.com/books/books/Weaver2/Weaver2.html; http://www.prenhall.com/ptrbooks/ptr_0138995842.html", acknowledgement = ack-nhfb, url-publisher = "http://www.prenhall.com/", } @Book{Weaver:1998:JE, author = "Lynn Weaver and Leslie Robertson", title = "{JavaStudio} by Example", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxx + 392", year = "1998", ISBN = "0-13-899519-2 (softcover)", ISBN-13 = "978-0-13-899519-5 (softcover)", LCCN = "A76.73.J38 W399 1998", bibdate = "Tue Nov 03 11:27:56 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.phptr.com/ptrbooks/ptr_0138995192.html; http://www.prenhall.com/", price = "US\$35.95", series = "SunSoft Press Java series", URL = "http://www.phptr.com/ptrbooks/ptr_0138995192.html; http://www.sun.com/books/catalog/books_comingsoon.html; http://www.sun.com/smi/ssoftpress/catalog/books_comingsoon.html", acknowledgement = ack-nhfb, xxtitle = "{Java Studio} by Example", } @Book{Weber:1998:LBS, author = "Stephan Weber", title = "{E-Lab: Berechnung und Simulation von Schaltungen; das virtuelle Elektronik-Labor}", publisher = pub-FRANZIS-VERLAG, address = pub-FRANZIS-VERLAG:adr, pages = "27", year = "1998", ISBN = "3-7723-8764-0", ISBN-13 = "978-3-7723-8764-7", LCCN = "????", bibdate = "Mon Jun 22 12:15:11 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.franzis-buch.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "40 DM", URL = "????", acknowledgement = ack-nhfb, language = "German", xxtitle = "{E-Lab, Elektronik und Simulation interaktiv}", xxtitle = "{Hot Java}", } @InProceedings{Weber:1998:PCAa, author = "Andreas Weber and Wolfgang K{\"u}chlin and Bernhard Eggers and Volker Simonis", title = "Parallel Computer Algebra Software as a {Web} Component", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/algebra.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/algebra.ps", acknowledgement = ack-nhfb, } @Article{Weber:1998:PCAb, author = "Andreas Weber and Wolfgang K{\"u}chlin and Bernhard Eggers", title = "Parallel computer algebra software as a {Web} component", journal = j-CPE, volume = "10", number = "11--13", pages = "1179--1188", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050416; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050416&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Book{Weber:1998:SEU, author = "Joseph L. Weber and Tim Ryan and Jeff Taylor and Ben Milstead", title = "Special edition, using {Java} 1.2", publisher = pub-QUE, address = pub-QUE:adr, edition = "Fourth", pages = "xxv + 1414", year = "1998", ISBN = "0-7897-1529-5", ISBN-13 = "978-0-7897-1529-6", LCCN = "QA76.73.J38 W4 1998", bibdate = "Wed Feb 21 07:27:56 2001", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/que/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Edited by Tim Ryan, Jeff Taylor, and Ben Milstead.", price = "US\$50", URL = "http://iq-mcp3.iquest.net/catalog/mcp/PRODUCT/PAGE/07897/bud/0789715295.html", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/que/", } @Book{Wehling:1998:ANC, author = "Jason Wehling", title = "Aproveche las Noches con {Java}", publisher = pub-PH, address = pub-PH:adr, year = "1998", ISBN = "970-17-0034-1 (??invalid ISBN??)", ISBN-13 = "978-970-17-0034-1 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prentice.com.mx/", price = "????", acknowledgement = ack-nhfb, language = "Spanish", } @Article{Wehrli:1998:JDR, author = "Rob Wehrli", title = "{JDBC} Developer's Resource", journal = j-LINUX-J, volume = "45", pages = "??--??", month = jan, year = "1998", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Fri Oct 9 08:35:26 MDT 1998", bibsource = "http://www.linuxjournal.com/issue45/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Book{Weiner:1998:PJ, author = "Scott Weiner and Stephen Asbury", title = "Programming with {JFC}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "x + 564", month = apr, year = "1998", ISBN = "0-471-24731-6", ISBN-13 = "978-0-471-24731-9", LCCN = "QA76.73.J38 W44 1998", bibdate = "Wed Feb 21 07:28:43 2001", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$50", URL = "http://www.wiley.com/compbooks/catalog/24731-6.htm", acknowledgement = ack-nhfb, } @Book{Weinman:1998:CHD, author = "Lynda Weinman and William Weinman", title = "Creative {HTML} design", publisher = pub-NRP, address = pub-NRP:adr, pages = "xxx + 434", year = "1998", ISBN = "1-56205-704-9", ISBN-13 = "978-1-56205-704-6", LCCN = "QA76.76.H94W45 1998", bibdate = "Fri Sep 11 08:29:11 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, alttitle = "A hands-on HTML 4.0 Web design tutorial", annote = "CD-ROM includes all the necessary files for the tutorials in this book and JavaScript roll over code and other customizable scripts.", keywords = "Computer graphics; HTML (Document markup language); Web sites -- Design", } @Book{Weiss:1998:DSP, author = "Mark Allen Weiss", title = "Data Structures and Problem Solving Using {Java}", publisher = pub-AW, address = pub-AW:adr, pages = "xxxii + 780", year = "1998", ISBN = "0-201-54991-3", ISBN-13 = "978-0-201-54991-1", LCCN = "QA76.73.J38 W45 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", URL = "http://cseng.aw.com/bookdetail.qry?ISBN=0-201-54991-3", acknowledgement = ack-nhfb, keywords = "data structures (computer science); java (computer program language); problem solving -- data processing", url-author = "http://cseng.aw.com/authordetail.qry?AuthorID=411", url-publisher = "http://www.aw.com/", } @Article{Weiss:1998:TJB, author = "Michael Weiss and Fran{\c{c}}ois de Ferri{\`e}re and Bertrand Delsart and Christian Fabre and Frederick Hirsch and E. Andrew Johnson and Vania Joloboff and Fred Roy and Fridtjof Siebert and Xavier Spengler", title = "{TurboJ}, a {Java} Bytecode-to-Native Compiler", journal = j-LECT-NOTES-COMP-SCI, volume = "1474", pages = "119--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Feb 5 11:52:50 MST 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t1474.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://link.springer-ny.com/link/service/series/0558/bibs/1474/14740119.htm; http://link.springer-ny.com/link/service/series/0558/papers/1474/14740119.pdf", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Weiss:1998:TJJ, author = "M. Weiss and F. {De Ferriere} and B. Detsart and C. Fabre", title = "{Turbo J}, a {Java} Bytecode-to-Native Compiler", journal = j-LECT-NOTES-COMP-SCI, volume = "1474", pages = "119--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Jan 5 08:21:58 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Weitzel:1998:NJD, author = "Steven Weitzel and Lyle Bates", title = "{Novell}'s {Java} Developer's Guide", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "600", month = may, year = "1998", ISBN = "0-7645-4541-8", ISBN-13 = "978-0-7645-4541-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.novell.com/programs/press/index.html", note = "Includes CD-ROM.", price = "US\$59.99", URL = "http://www.novell.ru:8081/programs/press/4541.html", acknowledgement = ack-nhfb, } @Article{Westley:1998:WJA, author = "Terry J. Westley", title = "Writing {Java} applets in {Ada}: {A} beginner's guide", journal = j-ADA-USER-J, volume = "19", number = "1", pages = "57--82", month = apr, year = "1998", CODEN = "AUJOET", ISSN = "0268-652X", bibdate = "Sat Oct 10 15:17:00 MDT 1998", bibsource = "Compendex database; http://www.adauk.org.uk/pubs/jvol19_1.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classification = "722.4; 723.1; 723.1.1; 723.5", fjournal = "Ada User Journal", journalabr = "Ada User J", keywords = "Ada (programming language); C (programming language); Computer simulation; Computer systems programming; Java virtual machine (jvm); Object oriented programming; Response time (computer systems)", } @Article{White:1998:EJP, author = "Seth White and Rick Cattell and Shel Finkelstein", title = "Enterprise {Java} Platform Data Access", journal = j-SIGMOD, volume = "27", number = "2", pages = "504--505", month = jun, year = "1998", CODEN = "SRECD8", ISSN = "0163-5808 (print), 1943-5835 (electronic)", ISSN-L = "0163-5808", bibdate = "Mon Jan 12 08:46:03 MST 2004", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGMOD Record", } @Book{Wilhelms:1998:JB, author = "Wilhelms", title = "{Das {Java} Buch}", publisher = pub-ITCP, address = pub-ITCP:adr, month = jan, year = "1998", ISBN = "3-8266-0395-8 (??invalid ISBN??)", ISBN-13 = "978-3-8266-0395-2 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.itp.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", acknowledgement = ack-nhfb, language = "German", } @Article{Wilson:1998:EMJ, author = "Andrew Wilson", title = "Examining {Microsoft}'s {J/Direct}: Making {Java} native code easy on {Windows 95/NT}", journal = j-DDJ, volume = "23", number = "1", pages = "90, 92--96, 104--105", month = jan, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Dec 2 08:43:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Microsoft's J/Direct, which ships as part of Internet Explorer 4.0 (and with future versions of Windows 95/NT and Internet Information Server) simplifies the Java native code calling process almost to the point where a DLL function can be directly called from within a Java applet or application. Additional resources include: JDIRECT.TXT (listings) and JDIRECT.ZIP (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Wilson:1998:NPV, author = "Andy Wilson", title = "Network Programming with {Visual J++}", publisher = pub-MICROSOFT, address = pub-MICROSOFT:adr, pages = "xiv + 277", month = jun, year = "1998", ISBN = "1-57231-855-4", ISBN-13 = "978-1-57231-855-7", LCCN = "A76.625 .W57 1999", bibdate = "Wed Feb 21 07:29:39 2001", bibsource = "http://mspress.microsoft.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$40", acknowledgement = ack-nhfb, } @Book{Winder:1998:DJS, author = "R. (Russel) Winder and Graham Roberts", title = "Developing {Java} Software", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxi + 818", year = "1998", ISBN = "0-471-97655-5", ISBN-13 = "978-0-471-97655-4", LCCN = "QA76.73.J38 W557 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$66", series = "Worldwide series in computer science", URL = "http://www.dcs.kcl.ac.uk/DevJavaSoft/", acknowledgement = ack-nhfb, keywords = "application software -- development; Java (computer program language); object-oriented programming (computer science)", } @Book{Winston:1998:J, author = "Patrick Henry Winston and Sundar Narasimhan", title = "On to {Java}", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xi + 379", year = "1998", ISBN = "0-201-38598-8", ISBN-13 = "978-0-201-38598-4", LCCN = "QA76.73.J38W56 1998", bibdate = "Wed May 27 07:07:09 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$18.95", acknowledgement = ack-nhfb, } @Book{Winters:1998:AVJ, author = "Patrick Winters and Laura Lemay", title = "Aprendiendo {Visual J++} en 21 d'as", publisher = pub-PH, address = pub-PH:adr, year = "1998", ISBN = "968-880-849-9", ISBN-13 = "978-968-880-849-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prentice.com.mx/", price = "????", URL = "http://www.mcl.com.mx/sotano/prentice.fm$Retrive?RecID=2673&html=HTMLRecord1", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Winzeler:1998:PJM, author = "Loren Winzeler", title = "Programming With the {Java} Media Framework", publisher = pub-WILEY, address = pub-WILEY:adr, month = mar, year = "1998", ISBN = "0-471-25169-0", ISBN-13 = "978-0-471-25169-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$40", URL = "http://www.wiley.com/compbooks/catalog/25169-0.htm", acknowledgement = ack-nhfb, } @Book{Wolff:1998:EJI, author = "Christian T. Wolff", title = "{Einf{\"u}hrung in {Java}. Informatik \& Praxis}", publisher = pub-TEUBNER, address = pub-TEUBNER:adr, pages = "300", year = "1998", ISBN = "3-519-02993-6", ISBN-13 = "978-3-519-02993-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "45 DM", acknowledgement = ack-nhfb, language = "German", } @InProceedings{Wong:1998:DMJ, author = "Simon K. Wong", title = "Developing Multilingual {Java} Applications for {Oracle8}", crossref = "UC:1998:TIU", pages = "??--??", year = "1998", bibdate = "Wed Aug 19 16:35:12 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc13/program.html", acknowledgement = ack-nhfb, } @Article{Wright:1998:CJT, author = "A. Wright and S. Jagannathan and C. Ungureanu and A. Hertzmann", title = "Compiling {Java} to a Typed Lambda-Calculus: {A} Preliminary Report", journal = j-LECT-NOTES-COMP-SCI, volume = "1473", pages = "9--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @InProceedings{Yalamanchilli:1998:CPJa, author = "Narendar Yalamanchilli and William Cohen", title = "Communication Performance of {Java} based {Parallel Virtual Machines}", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/passing.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/passing.ps", acknowledgement = ack-nhfb, } @Article{Yalamanchilli:1998:CPJb, author = "Narendar Yalamanchilli and William Cohen", title = "Communication performance of {Java}-based parallel virtual machines", journal = j-CPE, volume = "10", number = "11--13", pages = "1189--1196", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.interscience.wiley.com/jpages/1040-3108/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050407; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050407&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Yalamov:1998:BRC, author = "Plamen Y. Yalamov", title = "Book Review: {{\em Concurrent Programming: The Java Programming Language}}", journal = j-IEEE-CONCURR, volume = "6", number = "3", pages = "89--89", month = jul # "\slash " # sep, year = "1998", CODEN = "IECMFX", ISSN = "1092-3063 (print), 1558-0849 (electronic)", ISSN-L = "1092-3063", bibdate = "Mon Jun 7 07:52:29 MDT 1999", bibsource = "http://www.computer.org/concurrency/pd1998/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/pd/books/pd1998/pdf/p3085.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Concurrency", } @InProceedings{Yelick:1998:THPa, author = "Kathy Yelick and Luigi Semenzato and Geoff Pike and Carleton Miyamoto and Ben Liblit and Arvind Krishnamurthy and Paul Hilfinger and Susan Graham and David Gay and Phil Colella and Alex Aiken", title = "{Titanium}: {A} High-Performance {Java} Dialect", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/titanium.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/titanium.ps", acknowledgement = ack-nhfb, } @Article{Yelick:1998:THPb, author = "Kathy Yelick and Luigi Semenzato and Geoff Pike and Carleton Miyamoto and Ben Liblit and Arvind Krishnamurthy and Paul Hilfinger and Susan Graham and David Gay and Phil Colella and Alex Aiken", title = "{Titanium}: a high-performance {Java} dialect", journal = j-CPE, volume = "10", number = "11--13", pages = "825--836", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.interscience.wiley.com/jpages/1040-3108/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050392; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050392&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Yong:1998:JIM, author = "Leong Kok Yong and Liu Hai and Oliver P. Wu", title = "{Java Input Method Engine}", journal = j-COMP-NET-ISDN, volume = "30", number = "1--7", pages = "271--279", day = "1", month = apr, year = "1998", CODEN = "CNISE9", ISSN = "0169-7552", ISSN-L = "0169-7552", bibdate = "Fri Sep 24 20:22:05 MDT 1999", bibsource = "http://www.elsevier.com/cgi-bin/cas/tree/store/cna/cas_free/browse/browse.cgi?year=1998&volume=30&issue=1-7; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.elsevier.com/cas/tree/store/comnet/sub/1998/30/1-7/1915.pdf", acknowledgement = ack-nhfb, fjournal = "Computer Networks and ISDN Systems", } @Book{Young:1998:AFC, author = "Michael J. Young", title = "{Application Foundation Class} ({AFC}) Developer's Workshop", publisher = pub-MICROSOFT, address = pub-MICROSOFT:adr, pages = "xiii + 573", month = mar, year = "1998", ISBN = "1-57231-697-7", ISBN-13 = "978-1-57231-697-3", LCCN = "QA76.625 .Y69 1998", bibdate = "Wed Feb 21 07:30:39 2001", bibsource = "http://mspress.microsoft.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$45", acknowledgement = ack-nhfb, } @Article{Yourst:1998:IJC, author = "Matt T. Yourst", title = "Inside {Java} Class Files: The key to {Java}'s binary portability", journal = j-DDJ, volume = "23", number = "1", pages = "46, 49, 51--52, 102--103", month = jan, year = "1998", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Dec 2 08:43:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Matt explores the class file format -- the key to Java's binary portability. He then presents JavaDump, a program that documents structures in class files, and StripDebug, which removes extra debug information from classes. Additional resources include: CLASS.TXT (listings) and INSIDEJC.ZIP (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Yurkoski:1998:UIE, author = "C. F. Yurkoski and L. R. Rau and B. K. Ellis", title = "Using {Inferno} to Execute {Java} on small devices", journal = j-LECT-NOTES-COMP-SCI, volume = "1474", pages = "108--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Jan 5 08:21:58 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Zadroiny:1998:IFQ, author = "S. Zadroiny and J. Kacprzyk", title = "Implementing Fuzzy Querying via the {Internet}\slash {WWW}: {Java} Applets. {ActiveX} Controls and Cookies", journal = j-LECT-NOTES-COMP-SCI, volume = "1495", pages = "382--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Jan 5 08:21:58 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Zadrozny:1998:IFQ, author = "S{\l}awomir Zadrozny and Janusz Kacprzyk", title = "Implementing Fuzzy Querying via the {Internet\slash WWW}: {Java} Applets, {ActiveX} Controls and Cookies", journal = j-LECT-NOTES-COMP-SCI, volume = "1495", pages = "382--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Feb 5 11:53:03 MST 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t1495.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://link.springer-ny.com/link/service/series/0558/bibs/1495/14950382.htm; http://link.springer-ny.com/link/service/series/0558/papers/1495/14950382.pdf", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @InProceedings{Zhu:1998:SUPa, author = "Jinsong Zhu and Maria Toeroe and Victor Leung and Son Vuong", title = "Supporting Universal Personal Computing on {Internet} with {Java} and {CORBA}", crossref = "ACM:1998:AWJ", pages = "??--??", year = "1998", bibdate = "Thu Apr 27 10:43:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.ucsb.edu/conferences/java98/papers/upc.pdf; http://www.cs.ucsb.edu/conferences/java98/papers/upc.ps", acknowledgement = ack-nhfb, } @Article{Zhu:1998:SUPb, author = "Jinsong Zhu and Maria T{\"o}r{\"o} and Victor Leung and Son Vuong", title = "Supporting universal personal computing on the {Internet} with {Java} and {CORBA}", journal = j-CPE, volume = "10", number = "11--13", pages = "1007--1013", month = sep, year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", ISSN-L = "1040-3108", bibdate = "Tue Sep 7 06:06:44 MDT 1999", bibsource = "http://www.interscience.wiley.com/jpages/1040-3108/; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", note = "Special Issue: Java for High-performance Network Computing.", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=10050418; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=10050418&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Concurrency, practice and experience", } @Article{Zingirian:1998:ESS, author = "N. Zingirian and M. Maresca and S. Nalin", title = "Efficiency of Standard Software Architectures for {Java}-Based Access to Remote Databases", journal = j-LECT-NOTES-COMP-SCI, volume = "1401", pages = "479--??", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Sat Oct 10 14:40:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Zukowski:1998:MJ, author = "John Zukowski", title = "Mastering {Java 1.2}", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xxxiii + 1244", year = "1998", ISBN = "0-7821-2180-2", ISBN-13 = "978-0-7821-2180-3", LCCN = "QA76.73.J38 Z854 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.com/", note = "Includes CD-ROM.", price = "US\$50", acknowledgement = ack-nhfb, url-publisher = "http://www.sybex.com/", } @Book{AddisonWesley:1999:JCL, author = "{Addison Wesley}", title = "The {Java} Class Libraries, Second Edition, Volume 1/ The {Java} Class Libraries, Second Edition, Volume 2", publisher = pub-AW, address = pub-AW:adr, pages = "3752", year = "1999", ISBN = "1-199-45843-0 (??invalid checksum??)", ISBN-13 = "978-1-199-45843-8 (??invalid checksum??)", LCCN = "????", bibdate = "Thu Feb 04 06:17:54 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www1.clbooks.com/asp/BookInfo/BookInfo.asp?theisbn=1199458430", price = "US\$89.99", acknowledgement = ack-nhfb, xxnote = "Check author and ISBN??", } @Book{Akerley:1999:PVJ, author = "John Akerley and Nina Li and Antonello Parlavecchia", title = "Programming with {VisualAge} for {Java} Version 2.0", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "xxx + 417", year = "1999", ISBN = "0-13-021298-9", ISBN-13 = "978-0-13-021298-6", LCCN = "????", bibdate = "Wed Feb 21 07:32:47 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", acknowledgement = ack-nhfb, } @Article{Alagic:1999:TCO, author = "Suad Alag{\'\i}c", title = "Type-checking {OQL} queries in the {ODMG} type systems", journal = j-TODS, volume = "24", number = "3", pages = "319--360", month = sep, year = "1999", CODEN = "ATDSD3", ISSN = "0362-5915 (print), 1557-4644 (electronic)", ISSN-L = "0362-5915", bibdate = "Tue Sep 26 08:44:02 MDT 2000", bibsource = "http://www.acm.org/pubs/contents/journals/tods/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/citations/journals/tods/1999-24-3/p319-alagic/", abstract = "Several negative results are proved about the ability to type-check queries in the only existing proposed standard for object-oriented databases. The first of these negative results is that it is not possible to type-check OQL queries in the type system underlying the ODMG object model and its definition language ODL. The second negative result is that OQL queries cannot be type-checked in the type system of the Java binding of the ODMG standard either. A solution proposed in this paper is to extend the ODMG object model with explicit support for parametric polymorphism (universal type quantification). These results show that Java cannot be a viable database programming language unless extended with parametric polymorphism. This is why type-checking OQL queries presents no problem for the type system of the C++ binding of the ODMG standard. However, a type system that is strictly more powerful than any of the type systems of the ODMG standard is required in order to properly type ordered collections and indices. The required form of polymorphism is bounded type quantification (constrained genericity) and even F-bounded polymorphism. A further result is that neither static nor the standard dynamic object-oriented type-checking is possible for Java OQL, in spite of the fact that Java OQL combines features of two strongly and mostly statically-typed languages. Contrary to one of the promises of object-oriented database technology, this result shows that the impedance mismatch does not disappear in the ODMG standard. A type-safe reflective technique is proposed for overcoming this mismatch.", acknowledgement = ack-nhfb, fjournal = "ACM Transactions on Database Systems", generalterms = "Languages; Standardization; Theory", keywords = "C++; Java; ODMG standard; OQL; parametric polymorphism; type systems", subject = "Information Systems --- Database Management --- Languages (H.2.3): {\bf Query languages}; Information Systems --- Database Management --- Languages (H.2.3): {\bf Data description languages (DDL)}; Information Systems --- Database Management --- Languages (H.2.3): {\bf Database (persistent) programming languages}; Information Systems --- Database Management --- Systems (H.2.4): {\bf Object-oriented databases}; Software --- Programming Languages --- Language Classifications (D.3.2): {\bf Object-oriented languages}; Software --- Programming Languages --- Language Constructs and Features (D.3.3): {\bf Classes and objects}; Software --- Programming Languages --- Language Constructs and Features (D.3.3): {\bf Inheritance}; Software --- Programming Languages --- Language Constructs and Features (D.3.3): {\bf Polymorphism}", } @Article{Allison:1999:IJC, author = "Chuck Allison", title = "{\tt import java.*}: Control Flow --- The Bad, The Good, The Exceptional", journal = j-CCCUJ, volume = "17", number = "5", pages = "??--??", month = may, year = "1999", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:20 MDT 2002", bibsource = "http://www.cuj.com/articles/1999/9905/9905toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Java provides more ways to alter flow of control than C, but it's still a very structured language.", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Allison:1999:IJJ, author = "Chuck Allison", title = "{\tt import java.*}: Jumping into Java", journal = j-CCCUJ, volume = "17", number = "1", pages = "??--??", month = jan, year = "1999", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:19 MDT 2002", bibsource = "http://www.cuj.com/articles/1999/9901/9901toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "A guided tour of Java is only as good as its tour guide. Fortunately for us, Chuck Allison is a skilled guide to C/C++ as well as Java.", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Allison:1999:IJO, author = "Chuck Allison", title = "{\tt import java.*}: Object-Oriented Programming in {Java}", journal = j-CCCUJ, volume = "17", number = "11", pages = "??--??", month = nov, year = "1999", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:23 MDT 2002", bibsource = "http://www.cuj.com/articles/1999/9911/9911toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Java supports polymorphism much as C++ does, but with a couple of interesting twists.", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Allison:1999:IJP, author = "Chuck Allison", title = "{\tt import java.*}: Packaging Your Objects", journal = j-CCCUJ, volume = "17", number = "9", pages = "42--??", month = sep, year = "1999", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:22 MDT 2002", bibsource = "http://www.cuj.com/articles/1999/9909/9909toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Java packages combine the properties of C/C++ include directories, namespaces, make files, and libraries --- often to advantage.", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Allison:1999:IJT, author = "Chuck Allison", title = "{\tt import java.*}: Thinking in Objects", journal = j-CCCUJ, volume = "17", number = "7", pages = "79--??", month = jul, year = "1999", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:21 MDT 2002", bibsource = "http://www.cuj.com/articles/1999/9907/9907toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Classes are unavoidable in Java, but instances of classes --- a.k.a. objects --- are just a plain good idea.", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Allison:1999:IJU, author = "Chuck Allison", title = "{\tt import java.*}: Using Primitive Types and Wrappers", journal = j-CCCUJ, volume = "17", number = "3", pages = "??--??", month = mar, year = "1999", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:19 MDT 2002", bibsource = "http://www.cuj.com/articles/1999/9903/9903toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "The primitive types of C/C++ are much the same in Java, except that they're even more primitive and more predictable.", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Alpern:1999:IJJ, author = "Bowen Alpern and C. R. Attanasio and Anthony Cocchi and Derek Lieber and Stephen Smith and Ton Ngo and John J. Barton and Susan Flynn Hummel and Janice C. Sheperd and Mark Mergen", title = "Implementing jalape{\~n}o in {Java}", journal = j-SIGPLAN, volume = "34", number = "10", pages = "314--324", month = oct, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Thu Apr 27 07:14:21 MDT 2000", bibsource = "http://www.acm.org/pubs/contents/proceedings/oops/320384/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/citations/proceedings/oops/320384/p314-alpern/", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Alpern:1999:IJN, author = "Bowen Alpern and C. R. Attanasio and Anthony Cocchi and Derek Lieber and Stephen Smith and Ton Ngo and John J. Barton and Susan Flynn Hummel and Janice C. Sheperd and Mark Mergen", title = "Implementing jalape{\~n}o in {Java}", journal = j-SIGPLAN, volume = "34", number = "10", pages = "314--324", month = oct, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:18:09 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Alves-Foss:1999:DDS, author = "J. Alves-Foss and F. S. Lam", title = "Dynamic Denotational Semantics of {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1523", pages = "201--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Alves-Foss:1999:FGJ, author = "J. Alves-Foss and D. Frincke", title = "Formal Grammar for {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1523", pages = "1--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Anderson:1999:RJS, author = "K. R. Anderson and T. J. Hickey", title = "Reflecting {Java} into {Scheme}", journal = j-LECT-NOTES-COMP-SCI, volume = "1616", pages = "154--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999b.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Angel:1999:JQH, author = "Dave Angel and Andy Wilson", title = "{Java Q\&A}: How Do {I} Store a {Java} App in a Self-Executing Encrypted File?", journal = j-DDJ, volume = "24", number = "2", pages = "115--116, 118, 120--121", month = feb, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 2 06:29:28 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/1999/9902/9902toc.htm; http://www.ddj.com/ftp/1999/1999_02/jqa299.txt; http://www.ddj.com/ftp/1999/1999_02/jqa299.zip", abstract = "Dave and Andy show how you can store a Java app in a self-executing encrypted file. In doing so, they present CodePacker, a custom loader that is both easy to install --- it's self-extracting --- and secure. Additional resources include jqa299.txt (listings) and jqa299.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Angell:1999:PTE, author = "Kirby W. Angell", title = "Programmer's Toolchest: Examining {JPython}: {A} {Java} test engine puts {Python} to the test", journal = j-DDJ, volume = "24", number = "4", pages = "78, 81--83", month = apr, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Mar 3 06:30:11 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1999/1999_04/jpython.txt; http://www.ddj.com/ftp/1999/1999_04/jpython.zip", abstract = "JPython is a freely available version of Python implemented in 100 percent pure Java. Since JPython is written in Java, it is easy to include the JPython packages in a Java application and use JPython as your application's scripting engine. JPython also makes an excellent tool for prototyping Java applets that are embedded in web browsers. Additional resources include jpython.txt (listings) and jpython.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Anonymous:1999:GJM, author = "Anonymous", title = "Graphic {Java} 1.2: Mastering the {JFC}, Volume 1/ Up to Speed with {Swing}", publisher = pub-PH, address = pub-PH:adr, pages = "1376", year = "1999", ISBN = "1-199-45844-9 (??invalid checksum??)", ISBN-13 = "978-1-199-45844-5 (??invalid checksum??)", LCCN = "????", bibdate = "Thu Feb 04 06:36:50 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www1.clbooks.com/asp/BookInfo/BookInfo.asp?theisbn=1199458449", price = "US\$64.99", acknowledgement = ack-nhfb, xxnote = "Check author and ISBN??", } @Book{Anonymous:1999:GJVb, author = "Anonymous", title = "Graphic {Java} 1.2: Volume 2. Mastering the {JFC} --- {Swing}", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Third", pages = "????", year = "1999", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Nov 03 11:43:23 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = "SunSoft Press Java series", URL = "http://www.phptr.com/bookseri/java.html", acknowledgement = ack-nhfb, } @Book{Anonymous:1999:GJVc, author = "Anonymous", title = "Graphic {Java} 1.2. Volume 3. Mastering the {JFC} --- {2D}", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Third", pages = "????", year = "1999", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Nov 03 11:43:23 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = "SunSoft Press Java series", URL = "http://www.phptr.com/bookseri/java.html", acknowledgement = ack-nhfb, } @Article{Anonymous:1999:HPJ, author = "Anonymous", title = "High Performance {Java} Compilation and Runtime Issues", journal = j-SCI-PROG, volume = "7", number = "2", pages = "85--85", year = "1999", CODEN = "SCIPEV", ISSN = "1058-9244 (print), 1875-919X (electronic)", ISSN-L = "1058-9244", bibdate = "Thu Mar 28 08:44:36 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; OCLC Article1st database", acknowledgement = ack-nhfb, fjournal = "Scientific Programming", } @Article{Anonymous:1999:NB, author = "Michael J. Lutz", title = "New Books: Are You Listening, {Dave}?; Cultural Team Chemistry; {Java} Image Processing; {Y2K} Preparation; Making Distributed Objects Work for {COM-CORBA}; Fuzzy System Use", journal = j-COMPUTER, volume = "32", number = "3", pages = "103--103", month = mar, year = "1999", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Sat Mar 6 09:04:10 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1999/pdf/r3103.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @InProceedings{Anupam:1999:UPV, author = "Vinod Anupam and David M. Kristol and Alain Mayer", title = "A User's and Programmer's View of the New {JavaScript} Security Model", crossref = "USENIX:1999:PUS", pages = "??--??", year = "1999", bibdate = "Fri Oct 18 06:38:06 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/usits99/anupam.html", acknowledgement = ack-nhfb, } @Book{Arnold:1999:JS, author = "Ken Arnold and Ann Wollrath and Bryan O'Sullivan and Robert Scheifler and Jim Waldo", title = "The {Jini} specification", publisher = pub-AW, address = pub-AW:adr, pages = "xxii + 385", year = "1999", ISBN = "0-201-61634-3", ISBN-13 = "978-0-201-61634-7", LCCN = "QA76.9.D5 J56 1999", bibdate = "Thu Sep 02 15:01:32 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.95", acknowledgement = ack-nhfb, } @Book{Asbury:1999:DJE, author = "Stephen Asbury and Scott R. Weiner", title = "Developing {Java} Enterprise Applications", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xv + 780", year = "1999", ISBN = "0-471-32756-5", ISBN-13 = "978-0-471-32756-1", LCCN = "QA76.73.J38A83 1999", bibdate = "Sat Oct 09 08:13:10 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/compbooks/", price = "US\$59.99", acknowledgement = ack-nhfb, } @Book{Atkinson:1999:CPP, author = "Leon Atkinson", title = "Core {PHP} Programming: using {PHP} to build dynamic {Web} sites", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xx + 568", year = "1999", ISBN = "0-13-020787-X", ISBN-13 = "978-0-13-020787-6", LCCN = "QA76.73.P224 A85 1999", bibdate = "Thu Jan 18 06:08:46 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Atkinson:1999:IRT, author = "M. Atkinson and M. Jordan", title = "Issues Raised by Three Years of Developing {PJama}: An Orthogonally Persistent, Platform for {Java[TM]}", journal = j-LECT-NOTES-COMP-SCI, volume = "1540", pages = "1--30", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Sep 14 06:09:05 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", keywords = "ACM; database theory; ICDT; IEEE; Sigmod", } @Book{Austin:1999:IEP, author = "Mark Austin and David Chancogne", title = "Introduction to engineering programming: in {C}, {Matlab} and {Java}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xv + 656", year = "1999", ISBN = "0-471-00116-3", ISBN-13 = "978-0-471-00116-4", LCCN = "QA76.73.C15 A98 1999", bibdate = "Wed Nov 16 12:20:41 MST 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; z3950.loc.gov:7090/Voyager", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://www.loc.gov/catdir/description/wiley034/98008481.html; http://www.loc.gov/catdir/toc/onix05/98008481.html", acknowledgement = ack-nhfb, keywords = "C (computer program language); engineering mathematics -- data processing; Java (computer program language); Matlab", subject = "C (Computer program language); MATLAB; Java (Computer program language); Engineering mathematics; Data processing", } @Book{Ayers:1999:PJS, author = "Danny Ayers and others", title = "Professional {Java} Server programming", publisher = pub-WROX, address = pub-WROX:adr, pages = "xxix + 1121", year = "1999", ISBN = "1-86100-277-7", ISBN-13 = "978-1-86100-277-8", LCCN = "QA76.73.J38 P76 1999", bibdate = "Tue Feb 20 17:59:07 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Babcock:1999:LCH, author = "Dave Babcock and Peter T. Anderson and Norman S. Clerman and Ralph Hempel and Steve Grappone and Jim Cloughley and Kevin Johnson and John Bartley and Cesar A. Gonzalez Perez", title = "Letters: Computer History; Motion-Tracking Devices; Asleep at the Keyboard?; Mindstorms; {Java} Jive; Analyzing Algorithms; The {CVS} Data Format {URL}", journal = j-DDJ, volume = "24", number = "7", pages = "12, 14", month = jul, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Jun 2 12:37:25 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @InProceedings{Back:1999:DRL, author = "G. Back and W. Hsieh", title = "Drawing the Red Line in {Java}", crossref = "IEEE:1999:SWH", pages = "116--121", year = "1999", bibdate = "Mon May 28 09:20:09 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; OCLC Proceedings database", acknowledgement = ack-nhfb, } @Article{Baentsch:1999:JHR, author = "Michael Baentsch and Peter Buhler and Thomas Eirich and Frank H{\"o}ring and Marcus Oestreicher", title = "{JavaCard} --- From Hype to Reality", journal = j-IEEE-CONCURR, volume = "7", number = "4", pages = "36--43", month = oct # "\slash " # dec, year = "1999", CODEN = "IECMFX", DOI = "http://dx.doi.org/10.1109/4434.806977", ISSN = "1092-3063 (print), 1558-0849 (electronic)", ISSN-L = "1092-3063", bibdate = "Tue Apr 25 10:24:23 MDT 2000", bibsource = "http://www.computer.org/concurrency/pd1999/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/pd/books/pd1999/pdf/p4036.pdf; http://www.computer.org/concurrency/pd1999/p4036abs.htm", acknowledgement = ack-nhfb, fjournal = "IEEE Concurrency", } @Article{Baker:1999:MOO, author = "M. Baker and B. Carpenter and G. Fox and Sung Hoon Koo", title = "{mpiJava}: An Object-Oriented {Java} Interface to {MPI}", journal = j-LECT-NOTES-COMP-SCI, volume = "1586", pages = "748--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Balamurugan:1999:JAP, author = "S. Balamurugan", title = "{Jperl}: Accessing {Perl} From {Java}", journal = j-DDJ, volume = "24", number = "2", pages = "103--105", month = feb, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 2 06:29:28 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/1999/9902/9902toc.htm; http://www.ddj.com/ftp/1999/1999_02/jperl.txt; http://www.ddj.com/ftp/1999/1999_02/jperl.zip", abstract = "The Jperl package, written in C++, provides an interface to Perl from Java, and Jperl's APIs also make accessing Perl from C++ simple. This article outlines the capabilities of Jperl and explores its features. Additional resources include jperl.txt (listings) and jperl.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Ball:1999:JQJ, author = "Steve Ball and John Miller Crawford", title = "{Java} {Q} and {A}: Are {Java} Applets Independent Programs?", journal = j-DDJ, volume = "24", number = "4", pages = "101--105", month = apr, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Mar 3 06:30:11 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1999/1999_04/jqa499.txt; http://www.ddj.com/ftp/1999/1999_04/webcad.zip", abstract = "A Java applet may seem to be an independent program, but in one crucial aspect it is not --- if you change a static field of a class used within an applet, that change pervades all applets. Steve and John examine the ins-and-outs of dealing with this particularity. Additional resources include jqa499.txt (listings) and webcad.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Barksdale:1999:HJC, author = "Karl Barksdale and E. Turner", title = "{HTML} and {JavaScript}: concepts and activities", publisher = "South-Western Educational Pub.", address = "Cincinnati, OH, USA", pages = "192", year = "1999", ISBN = "0-538-68822-X", ISBN-13 = "978-0-538-68822-2", LCCN = "????", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "HTML (Document markup language); Java (Computer program language)", } @Article{Barnes:1999:ESJ, author = "Darryl Barnes", title = "Embedded Systems: {Java Card} Application Development", journal = j-DDJ, volume = "24", number = "2", pages = "72, 74, 76--78, 80", month = feb, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 2 06:29:28 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/1999/9902/9902toc.htm; http://www.ddj.com/ftp/1999/1999_02/jcard.txt", abstract = "Although the Java Card specification is a subset of Java designed for smart card applications, the Java Card API has little in common with the standard Java API. Darryl discusses Java Card and presents a typical smart card applet. Additional resources include jcard.txt (listings).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Barrett:1999:EJW, author = "Dan Barrett and Dan Livingston and Micah Brown", title = "Essential {JavaScript} for {Web} Professionals", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xviii + 198", year = "1999", ISBN = "0-13-013056-7", ISBN-13 = "978-0-13-013056-3", LCCN = "QA76.76.J39 B37 1999", bibdate = "Wed Feb 21 07:35:10 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.phptr.com/ptrbooks/ptr_0130130567.html", acknowledgement = ack-nhfb, } @Article{Basin:1999:JBV, author = "David Basin and Stefan Friedrich and Joachim Posegga and Harald Vogt", title = "{Java} Bytecode Verification by Model Checking", journal = j-LECT-NOTES-COMP-SCI, volume = "1633", pages = "491--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999b.bib", URL = "http://web.sec.uni-passau.de/papers/CAV99.pdf", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Becchini:1999:JEM, author = "R. Becchini and G. {De Petris}", title = "{Java} Enabled {MPEG-4} Services: The {MPEG-J} Framework", journal = j-LECT-NOTES-COMP-SCI, volume = "1597", pages = "373--384", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Sep 14 06:09:05 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", keywords = "intelligence; networks; open service market; services", } @Article{Begole:1999:FCT, author = "James Begole and Mary Beth Rosson and Clifford A. Shaffer", title = "Flexible collaboration transparency: supporting worker independence in replicated application-sharing systems", journal = j-TOCHI, volume = "6", number = "2", pages = "95--132", month = jun, year = "1999", CODEN = "ATCIF4", ISSN = "1073-0516", ISSN-L = "1073-0516", bibdate = "Tue Sep 26 07:12:21 MDT 2000", bibsource = "http://www.acm.org/pubs/contents/journals/tochi/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/citations/journals/tochi/1999-6-2/p95-begole/", abstract = "This article presents a critique of conventional collaboration transparency systems, also called ``application-sharing'' systems, which provide the real-time shared use of legacy single-user applications. We find that conventional collaboration transparency systems are inefficient in their use of network resources and lack support for key groupware principles: concurrent work, relaxed WYSIWIS, and group awareness. Next, we present an alternative approach to implementing collaboration transparency that provides many features previously seen only in collaboration-aware applications. Our approach is based on a replicated architecture where selected single-user interface components are dynamically replaced by multiuser versions. The replacement occurs at run-time and is transparent to the single-user application and its developers.. As an instance of this approach, we describe its incorporation into a Java-based collaboration transparency system for serializable, Swing-based Java applications, called Flexible JAMM (Java Applets Made Multiuser). To validate that the flexible collaboration transparency system is truly an improvement over conventional systems, we conducted an empirical study of collaborators performing both tightly and loosely coupled tasks using Flexible JAMM versus a representative conventional collaboration transparency system, Microsoft NetMeeting. Completion times were significantly faster in the loosely coupled task using Flexible JAMM and were not adversely affected in the tightly coupled task. Accuracy was equivalent for both systems. Participants greatly preferred Flexible JAMM.", acknowledgement = ack-nhfb, fjournal = "ACM Transactions on Computer-Human Interaction", generalterms = "Design; Human Factors", keywords = "application sharing; collaboration transparency; computer-supported cooperative work; Flexible JAMM; groupware; Java; usability", subject = "Computer Systems Organization --- Computer-Communication Networks --- Distributed Systems (C.2.4): {\bf Distributed applications}; Software --- Software Engineering --- Design Tools and Techniques (D.2.2): {\bf User interfaces}; Information Systems --- Models and Principles --- User/Machine Systems (H.1.2): {\bf Human factors}; Information Systems --- Information Interfaces and Presentation --- Group and Organization Interfaces (H.5.3): {\bf Collaborative computing}", } @Article{Benson:1999:J, author = "Brent W. {Benson, Jr.}", title = "{JavaScript}", journal = j-SIGPLAN, volume = "34", number = "4", pages = "25--27", month = apr, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:18:01 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Benson:1999:JRI, author = "Brent W. {Benson, Jr.}", title = "{Java} Reflections: Inner Classes: Closures for the Masses", journal = j-SIGPLAN, volume = "34", number = "2", pages = "32--35", month = feb, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Tue Sep 26 17:06:07 MDT 2000", bibsource = "http://ftp.informatik.rwth-aachen.de/dblp/db/journals/sigplan/sigplan34.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "This paper describes recent extensions to the Java language languages to support inner classes and closures.", URL = "http://ftp.informatik.rwth-aachen.de/dblp/db/indices/a-tree/b/Benson_Jr=:Brent_W=.html", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Benson:1999:JRJ, author = "Brent W. {Benson, Jr.}", title = "{Java} Reflections: {JavaScript} --- Not {Java} (but just as hot)", journal = j-SIGPLAN, volume = "34", number = "4", pages = "25--27", month = apr, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Tue Sep 26 17:06:07 MDT 2000", bibsource = "http://ftp.informatik.rwth-aachen.de/dblp/db/journals/sigplan/sigplan34.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://ftp.informatik.rwth-aachen.de/dblp/db/indices/a-tree/b/Benson_Jr=:Brent_W=.html", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Benton:1999:CSM, author = "Nick Benton and Andrew Kennedy and George Russell", title = "Compiling {Standard ML} to {Java} Bytecodes", journal = j-SIGPLAN, volume = "34", number = "1", pages = "129--140", month = jan, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:56 MST 2003", bibsource = "http://portal.acm.org/; http://www.cs.rice.edu/~matthias/ICFP98/schedule.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, affiliation = "Persimmon IT", fjournal = "ACM SIGPLAN Notices", } @Article{Benton:1999:IWT, author = "Nick Benton and Andrew Kennedy", title = "Interlanguage Working Without Tears: Blending {SML} with {Java}", journal = j-SIGPLAN, volume = "34", number = "9", pages = "126--137", month = sep, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:18:08 MST 2003", bibsource = "http://pauillac.inria.fr/pli/icfp/; http://portal.acm.org/; http://www.acm.org/pubs/contents/proceedings/fp/317636/; http://www.cs.cmu.edu/~petel/icfp99/conference-program.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Proceedings of the ACM SIGPLAN International Conference on Functional Programming (ICFP '99).", URL = "http://www.acm.org/pubs/citations/proceedings/fp/317636/p126-benton", acknowledgement = ack-nhfb, author-1-address = "Microsoft Research Ltd, England", author-2-address = "Microsoft Research Ltd, England", fjournal = "ACM SIGPLAN Notices", keywords = "MLj; Standard ML", } @Book{Berg:1999:ATJ, author = "Daniel J. Berg and J. Steven Fritzinger", title = "Advanced Techniques for {Java} Developers", publisher = pub-WILEY, address = pub-WILEY:adr, edition = "Revised", pages = "xv + 511", year = "1999", ISBN = "0-471-32718-2", ISBN-13 = "978-0-471-32718-9", LCCN = "QA76.73.J38B48 1999", bibdate = "Sat Oct 09 08:13:10 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/compbooks/", price = "US\$49.99", acknowledgement = ack-nhfb, } @Article{Berg:1999:PEJ, author = "Cliff Berg", title = "Parsing Expressions In {Java}: Specifying rules for common operations", journal = j-DDJ, volume = "24", number = "1", pages = "50, 52--53, 56--58", month = jan, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Dec 3 09:32:09 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ddj/ftp/1999/1999_01/jparser.txt; http://www.ddj.com/ddj/ftp/1999/1999_01/jparser.zip", abstract = "Cliff presents a Java expression parser that complements the tokenizer classes that are already built into the language. Additional resources include jparser.txt (listings) and jparser.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Bernardin:1999:JFM, author = "Laurent Bernardin", title = "A {Java} framework for massively distributed symbolic computing", journal = j-SIGSAM, volume = "33", number = "3", pages = "20--21", month = sep, year = "1999", CODEN = "SIGSBZ", ISSN = "0163-5824 (print), 1557-9492 (electronic)", ISSN-L = "0163-5824", bibdate = "Fri Feb 8 18:27:06 MST 2002", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "SIGSAM Bulletin", } @InProceedings{Bernardin:1999:SCJ, author = "Laurent Bernardin and Bruce Char and Erich Kaltofen", title = "Symbolic computation in {Java}: an appraisement", crossref = "Dooley:1999:IJS", pages = "237--244", year = "1999", DOI = "http://doi.acm.org/10.1145/309831.309946", bibdate = "Tue Oct 18 06:06:53 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/contents/proceedings/issac/309831/", acknowledgement = ack-nhfb, keywords = "MuPAD", xxcrossref = "ACM:1999:IJS", } @Article{Bertsch:1999:FPT, author = "Eberhard Bertsch and Mark-Jan Nederhof", title = "On Failure of the Pruning Technique in {``Error Repair in Shift-Reduce Parsers''}", journal = j-TOPLAS, volume = "21", number = "1", pages = "1--10", month = jan, year = "1999", CODEN = "ATPSDT", ISSN = "0164-0925 (print), 1558-4593 (electronic)", ISSN-L = "0164-0925", bibdate = "Tue Sep 26 10:12:58 MDT 2000", bibsource = "http://www.acm.org/pubs/contents/journals/toplas/; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "See \cite{McKenzie:1995:ERS}.", URL = "http://www.acm.org/pubs/citations/journals/toplas/1999-21-1/p1-bertsch/", abstract = "A previous article presented a technique to compute the least-cost error repair by incrementally generating configurations that result from inserting and deleting tokens a syntactically incorrect input. An additional mechanism to improve the run-time efficiency of this algorithm by pruning some of the configurations was discussed as well. In this communication we show that the pruning mechanism may lead to suboptimal repairs or may block {\em all\/} repairs. Certain grammatical errors in a common construct of the Java programming language also lead to the above kind of failure.", acknowledgement = ack-nhfb, fjournal = "ACM Transactions on Programming Languages and Systems", generalterms = "Algorithms; Languages", keywords = "error repair", subject = "Software --- Programming Languages --- Processors (D.3.4): {\bf Parsing}", } @InProceedings{Beyls:1999:JJP, author = "K. Beyls and E. D'Hollander and Y. Yu", title = "{JPT}: {A} {Java} parallelization tool", crossref = "Dongarra:1999:RAP", number = "1697", pages = "173--180", year = "1999", bibdate = "Thu Dec 9 06:08:35 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Bik:1999:IIM, author = "Aart J. C. Bik and Milind Girkar and Mohammad R. Haghighat", title = "Incorporating {Intel\reg{} MMX\TM{}} technology into a {Java\TM{} JIT} compiler", journal = j-SCI-PROG, volume = "7", number = "1", pages = "167--184", year = "1999", CODEN = "SCIPEV", ISSN = "1058-9244 (print), 1875-919X (electronic)", ISSN-L = "1058-9244", bibdate = "Thu Mar 28 11:20:56 MST 2002", bibsource = "http://www.iospress.nl/site/html/10589244.html; http://www.math.utah.edu/pub/tex/bib/java.bib; OCLC Article1st database", URL = "http://iospress.metapress.com/app/home/contribution.asp%3Fwasp=64cr5a4mg33tuhcbdr02%26referrer=parent%26backto=issue%2C7%2C7%3Bjournal%2C8%2C9%3Blinkingpublicationresults%2C1%2C1", acknowledgement = ack-nhfb, fjournal = "Scientific Programming", } @Article{Blanchet:1999:EAO, author = "Bruno Blanchet", title = "Escape analysis for object-oriented languages: application to {Java}", journal = j-SIGPLAN, volume = "34", number = "10", pages = "20--34", month = oct, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:18:09 MST 2003", bibsource = "http://portal.acm.org/; http://www.acm.org/pubs/contents/proceedings/oops/320384/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/citations/proceedings/oops/320384/p20-blanchet/", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Blount:1999:EJN, author = "Brian Blount and Siddhartha Chatterjee", title = "An evaluation of {Java} for numerical computing", journal = j-SCI-PROG, volume = "7", number = "2", pages = "97--110", year = "1999", CODEN = "SCIPEV", ISSN = "1058-9244 (print), 1875-919X (electronic)", ISSN-L = "1058-9244", bibdate = "Thu Mar 28 11:20:56 MST 2002", bibsource = "http://www.iospress.nl/site/html/10589244.html; http://www.math.utah.edu/pub/tex/bib/java.bib; OCLC Article1st database", URL = "http://iospress.metapress.com/app/home/contribution.asp%3Fwasp=f277qlrwwjr5m4vxjywv%26referrer=parent%26backto=issue%2C3%2C8%3Bjournal%2C7%2C9%3Blinkingpublicationresults%2C1%2C1", acknowledgement = ack-nhfb, fjournal = "Scientific Programming", } @Article{Blount:1999:IPA, author = "B. Blount and S. Chatterjee and M. Philippsen", title = "Irregular Parallel Algorithms in {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1586", pages = "1026--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Boerger:1999:PFM, author = "E. Boerger and W. Schulte", title = "A Programmer Friendly Modular Definition of the Semantics of {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1523", pages = "353--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Bogda:1999:RUS, author = "Jeff Bogda and Urs H{\"o}lzle", title = "Removing unnecessary synchronization in {Java}", journal = j-SIGPLAN, volume = "34", number = "10", pages = "35--46", month = oct, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:18:09 MST 2003", bibsource = "http://portal.acm.org/; http://www.acm.org/pubs/contents/proceedings/oops/320384/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/citations/proceedings/oops/320384/p35-bogda/", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Book{Bradenbaugh:1999:JAC, author = "Jerry Bradenbaugh", title = "{JavaScript} Application Cookbook", publisher = pub-ORA, address = pub-ORA:adr, pages = "xiv + 462", year = "1999", ISBN = "1-56592-577-7", ISBN-13 = "978-1-56592-577-9", LCCN = "QA76.73.J39 B73 1999", bibdate = "Thu Jan 18 06:33:43 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.oreilly.com/catalog/", price = "US\$34.95", URL = "http://www.oreilly.com/catalog/jscook", acknowledgement = ack-nhfb, } @Article{Braun:1999:LTA, author = "Jay Braun and David Cox and Christophe Ponsard and Reg Charney and Torken Danielsson and Christian Lanctot and John D. Kent and Steve Furlong", title = "Letters: There's Always Room for {Forth}; Online Op\slash Eds; Parsing Expressions in {Java}; Age Discrimination; {A} Better Date?; More {Y2K}; It's a Cult Kind of Thing", journal = j-DDJ, volume = "24", number = "3", pages = "10, 12", month = mar, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 2 06:29:28 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/1999/9902/9902toc.htm", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Braux:1999:TPE, author = "Mathias Braux and Jacques Noy{\'e}", title = "Towards partially evaluating reflection in {Java}", journal = j-SIGPLAN, volume = "34", number = "11", pages = "2--11", month = nov, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:18:10 MST 2003", bibsource = "http://portal.acm.org/; http://www.acm.org/pubs/contents/proceedings/pepm/328690/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/citations/proceedings/pepm/328690/p2-braux/", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Brezany:1999:ADR, author = "P. Brezany and M. Winslett", title = "Advanced Data Repository Support for {Java} Scientific Programming", journal = j-LECT-NOTES-COMP-SCI, volume = "1593", pages = "1127--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Briand:1999:BRC, author = "Marc Briand", title = "Book Review: {{\em C++ for Java Programmers}}", journal = j-CCCUJ, volume = "17", number = "12", pages = "??--??", month = dec, year = "1999", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:24 MDT 2002", bibsource = "http://www.cuj.com/articles/1999/9912/9912toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Is Java a stepping stone or millstone when it comes to learning C++? A close read through this book tells us it is a little of both.", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Brigner:1999:IPC, author = "Paul Brigner", title = "{Internet} Programming: Creating Signed, Persistent {Java} Applets", journal = j-DDJ, volume = "24", number = "2", pages = "82, 84--88", month = feb, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 2 06:29:28 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/1999/9902/9902toc.htm; http://www.ddj.com/ftp/1999/1999_02/persist.txt; http://www.ddj.com/ftp/1999/1999_02/persist.zip", abstract = "Both Netscape and Microsoft have facilities for signed, persistent applet deployment that extends the Java security framework. This should come as no surprise; however, that doesn't mean that you use these facilities the same way. Additional resources include persist.txt (listings) and persist.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Brogden:1999:JPJa, author = "Bill Brogden", title = "{Java} Programmer {JDK 1.2} Exam Cram", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "350", year = "1999", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Apr 28 14:00:37 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$30", acknowledgement = ack-nhfb, } @Book{Brogden:1999:JPJb, author = "Bill Brogden", title = "{Java} Programmer {JDK 2} Exam Cram", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "1350", year = "1999", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Apr 28 14:00:37 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$30", acknowledgement = ack-nhfb, } @Book{Brookshier:1999:WAM, author = "Daniel Brookshier", title = "Who's Afraid of More {Java}?", publisher = pub-MORGAN-KAUFMANN, address = pub-MORGAN-KAUFMANN:adr, pages = "400", year = "1999", ISBN = "0-12-135455-5", ISBN-13 = "978-0-12-135455-8", LCCN = "", bibdate = "Fri Feb 04 18:20:33 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.95", URL = "http://www.mkp.com/books_catalog/0-12135-455-5.asp", acknowledgement = ack-nhfb, } @Book{Brown:1999:RRJ, author = "Kirk Brown and Daniel Petersen", title = "Ready-to-Run {Java 3D}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xii + 400", year = "1999", ISBN = "0-471-31702-0", ISBN-13 = "978-0-471-31702-9", LCCN = "QA76.73.J38B78 1999", bibdate = "Sat Oct 09 08:13:10 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/compbooks/", note = "With a foreword by James Gosling.", price = "US\$44.99", acknowledgement = ack-nhfb, } @InProceedings{Bruzzone:1999:MUS, author = "A. Bruzzone and G. Berrino", title = "Modeling of Urban Services by {VRML} and {Java}", crossref = "Bruzzone:1999:PIC", volume = "31", number = "3", pages = "34--40", year = "1999", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Buhler:1999:AAJ, author = "Gerhard B{\"u}hler and Heinz Fa{\ss}bender", title = "Applying {Ada}, {Java} and {CORBA} for making a command and control information system platform independent", journal = j-SIGADA-LETTERS, volume = "19", number = "3", pages = "83--88", month = sep, year = "1999", CODEN = "AALEE5", ISSN = "0736-721X", ISSN-L = "0736-721X", bibdate = "Sat Aug 9 09:06:07 MDT 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGADA Ada Letters", } @InProceedings{Burge:1999:JJB, author = "Legand L. Burge III and K. M. George", title = "{JMAS}: {A} {Java}-Based Mobile Actor System for Distributed Parallel Computation", crossref = "USENIX:1999:PFU", pages = "??--??", year = "1999", bibdate = "Fri Oct 18 07:14:18 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/coots99/burge.html", acknowledgement = ack-nhfb, } @Article{Butcher:1999:EJS, author = "Paul Butcher", title = "Extending {JScript}: Supporting constructors and arrays in {JScript}", journal = j-DDJ, volume = "24", number = "1", pages = "42, 44, 46, 48--49", month = jan, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Dec 3 09:32:09 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ddj/ftp/1999/1999_01/jstest.txt; http://www.ddj.com/ddj/ftp/1999/1999_01/jstest.zip", abstract = "Paul extends Microsoft's JScript scripting engine by adding support for constructors and arrays. In the process, he presents JScriptTest, a program that displays a UI that lets you type and execute JScript source. Additional resources include jstest.txt (listings) and jstest.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Cairns:1999:ETJ, author = "Paul A. Cairns", title = "Enumerated types in {Java}", journal = j-SPE, volume = "29", number = "3", pages = "291--297", month = mar, year = "1999", CODEN = "SPEXBL", ISSN = "0038-0644 (print), 1097-024X (electronic)", ISSN-L = "0038-0644", bibdate = "Thu Jul 29 15:12:14 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=55000314; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=55000314&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Software---Practice and Experience", } @Article{Calder:1999:RTD, author = "Brad Calder and Chandra Krintz and Urs H{\"o}lzle", title = "Reducing transfer delay using {Java} class file splitting and prefetching", journal = j-SIGPLAN, volume = "34", number = "10", pages = "276--291", month = oct, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:18:09 MST 2003", bibsource = "http://portal.acm.org/; http://www.acm.org/pubs/contents/proceedings/oops/320384/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/citations/proceedings/oops/320384/p276-calder/", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Book{Callaway:1999:ISS, author = "Dustin R. Callaway", title = "Inside servlets: server-side programming for the {Java} platform", publisher = pub-AW, address = pub-AW:adr, pages = "xix + 434", year = "1999", ISBN = "0-201-37963-5", ISBN-13 = "978-0-201-37963-1", LCCN = "QA76.73.J38 C35 1999", bibdate = "Fri Jul 30 06:08:23 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "Client/server computing; Java (Computer program language)", } @Book{Campione:1999:JTC, author = "Mary Campione and Kathy Walrath and Alison Huml and {the Tutorial Team}", title = "The {Java} tutorial continued: the rest of the {JDK}", publisher = pub-AW, address = pub-AW:adr, pages = "xii + 950", year = "1999", ISBN = "0-201-48558-3", ISBN-13 = "978-0-201-48558-5", LCCN = "TS1925.K5413 1999", bibdate = "Tue May 11 07:24:27 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.95", acknowledgement = ack-nhfb, } @InProceedings{Cardelli:1999:TMA, author = "Luca Cardelli and Andrew D. Gordon", title = "Types for mobile ambients", crossref = "ACM:1999:PPA", pages = "79--92", year = "1999", bibdate = "Mon May 3 12:58:58 MDT 1999", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/plan/292540/p79-cardelli/", acknowledgement = ack-nhfb, keywords = "verification", subject = "{\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Java. {\bf F.4.1} Theory of Computation, MATHEMATICAL LOGIC AND FORMAL LANGUAGES, Mathematical Logic. {\bf F.3.2} Theory of Computation, LOGICS AND MEANINGS OF PROGRAMS, Semantics of Programming Languages.", } @Article{Caromel:1999:WJP, author = "D. Caromel and S. Chaumette and G. Fox", title = "Workshop on {Java} for Parallel and Distributed Computing", journal = j-LECT-NOTES-COMP-SCI, volume = "1586", pages = "716--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{CBT:1999:AWA, author = "{CBT Systems}", title = "Advanced {Web} Authoring: {Java}", publisher = pub-CBT-SYSTEMS, address = pub-CBT-SYSTEMS:adr, year = "1999", bibdate = "Thu Feb 04 06:30:10 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www1.clbooks.com/asp/BookInfo/BookInfo.asp?theisbn=IT10215236", note = "Interactive training course. Order number T10215236, Part number 655AW04.", price = "US\$199.95", acknowledgement = ack-nhfb, } @Article{Cenciarelli:1999:EBS, author = "P. Cenciarelli and A. Knapp and B. Reus and M. Wirsing", title = "An Event-Based Structural Operational Semantics of Multi-Threaded {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1523", pages = "157--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Chalk:1999:CCJ, author = "Peter Chalk", title = "Conference Corner: {Java} in the Computing Curricula", journal = j-SIGPLAN, volume = "34", number = "12", pages = "9--11", month = dec, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Tue Sep 26 17:06:07 MDT 2000", bibsource = "http://ftp.informatik.rwth-aachen.de/dblp/db/journals/sigplan/sigplan34.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://ftp.informatik.rwth-aachen.de/dblp/db/indices/a-tree/c/Chalk:Peter.html", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Chalk:1999:JCC, author = "Peter Chalk", title = "{Java} in the computing curricula", journal = j-SIGPLAN, volume = "34", number = "12", pages = "9--11", month = dec, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:18:11 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Book{Chan:1999:JCLa, author = "Patrick Chan and Rosanna Lee", title = "The {Java} Class Libraries Poster", publisher = pub-AW, address = pub-AW:adr, edition = "Fourth", year = "1999", ISBN = "0-201-43296-X", ISBN-13 = "978-0-201-43296-1", LCCN = "????", bibdate = "Tue May 11 07:26:30 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$9.95", acknowledgement = ack-nhfb, } @Book{Chan:1999:JCLb, author = "Patrick Chan and Rosanna Lee and Doug Kramer", title = "The {Java} Class Libraries: {\tt java.io}, {\tt java.lang}, {\tt java.math}, {\tt java.net}, {\tt java.text}, {\tt java.util}", volume = "1", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xxvi + 2050", year = "1999", ISBN = "0-201-31002-3", ISBN-13 = "978-0-201-31002-3", LCCN = "QA76.73.J38 C47 1998", bibdate = "Mon Jun 10 13:32:26 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$59.99", acknowledgement = ack-nhfb, annote = "See \cite{Chan:1998:JCLb} for vol. 2.", } @Book{Chan:1999:JCLc, author = "Patrick Chan and Rosanna Lee and Douglas Kramer", title = "The {Java} Class Libraries, Second Edition, Volume 1: Supplement for {Java 2} Platform, Standard Edition, v1.2", publisher = pub-AW, address = pub-AW:adr, pages = "xxix + 1157", year = "1999", ISBN = "0-201-48552-4", ISBN-13 = "978-0-201-48552-3", LCCN = "QA76.73.J38 C47 1998", bibdate = "Sat May 11 09:29:34 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www1.fatbrain.com/asp/bookinfo/bookinfo.asp?theisbn=0201485524", price = "US\$34.95", acknowledgement = ack-nhfb, } @Book{Chan:1999:JDA, author = "Patrick Chan", title = "The {Java} Developer's Almanac: 1999", publisher = pub-AW, address = pub-AW:adr, pages = "xi + 861", month = mar, year = "1999", ISBN = "0-201-43298-6", ISBN-13 = "978-0-201-43298-5", LCCN = "QA76.73.J38C474 1999", bibdate = "Tue May 11 07:23:25 1999", bibsource = "http://www.awl.com/cseng/javaseries/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www2.awl.com/cseng/javaseries/tjda.htm", price = "US\$19.95", series = "The Java series", URL = "http://cseng.aw.com/bookdetail.qry?ISBN=0-201-37967-8&ptype=0", acknowledgement = ack-nhfb, } @Book{Chapman:1999:JES, author = "Stephen J. Chapman", title = "{Java} for Engineers and Scientists", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "????", year = "1999", ISBN = "0-13-919523-8", ISBN-13 = "978-0-13-919523-5", LCCN = "QA76.73.J38C477 1999", bibdate = "Mon Sep 20 16:39:45 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.phptr.com/ptrbooks/esm_0139195238.html", acknowledgement = ack-nhfb, } @Article{Charles:1999:NUC, author = "John Charles", title = "In The News: Ubiquitous Computing Uncorked: The International {Y2K} Repair Bill: News Briefs", journal = j-IEEE-SOFTWARE, volume = "16", number = "2", pages = "97--100", month = mar # "\slash " # apr, year = "1999", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/MS.1999.754064", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Thu Apr 1 16:52:57 MST 1999", bibsource = "http://computer.org/software/so1999/; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses Sun's plans for Jini.", URL = "http://dlib.computer.org/so/books/so1999/pdf/s2097.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Software", } @Book{Chauvet:1999:CTC, author = "Jean-Marie Chauvet", title = "Composants et transactions: {COM}\slash {MTS}, Corba\slash {OTS}, {Java}\slash {EJB}, {XML}", publisher = "Eyrolles: Informatiques magazine", address = "Paris, France", pages = "v + 274", year = "1999", ISBN = "2-212-09075-7", ISBN-13 = "978-2-212-09075-8", LCCN = "????", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", series = "Collection dirig{\'e}e par Guy Hervier", acknowledgement = ack-nhfb, alttitle = "Composants et transactions: Corba/OTS, EJB/JTS, COM/MTS: comprendre l'architecture des serveurs d'applications", annote = "Titre de couv.: ``Composants et transactions: Corba/OTS, comprendre l'architecture des serveurs d'applications''. Bibliogr.: p. 267-269.", keywords = "Conception orient{\'e} objets (informatique).; Javabeans; Objet composant, Modeles d'.", } @Article{Chen:1999:PJ, author = "E. Chen", title = "Poison {Java}", journal = j-IEEE-SPECTRUM, volume = "36", number = "8", pages = "38--43", month = aug, year = "1999", CODEN = "IEESAM", DOI = "http://dx.doi.org/10.1109/6.780997", ISSN = "0018-9235 (print), 1939-9340 (electronic)", ISSN-L = "0018-9235", bibdate = "Sat Jul 29 05:59:19 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", fjournal = "IEEE Spectrum", } @Article{Chilimbi:1999:CCS, author = "Trishul M. Chilimbi and Bob Davidson and James R. Larus", title = "Cache-Conscious Structure\slash Class Field Reorganization Techniques for {C} and {Java}", journal = j-SIGPLAN, volume = "34", number = "5", pages = "13--24", month = may, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Thu May 13 16:27:02 1999", bibsource = "http://www.acm.org/pubs/contents/proceedings/pldi/301122/index.html; http://www.acm.org/pubs/contents/proceedings/pldi/301618/index.html; http://www.cs.rutgers.edu/pldi99/program.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "See PLDI'99 proceedings \cite{ACM:1999:PASa}.", URL = "http://www.acm.org:80/pubs/citations/proceedings/pldi/301122/p13-chilimbi/", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Choi:1999:EAJ, author = "Jong-Deok Choi and Manish Gupta and Mauricio Serrano and Vugranam C. Sreedhar and Sam Midkiff", title = "Escape analysis for {Java}", journal = j-SIGPLAN, volume = "34", number = "10", pages = "1--19", month = oct, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:18:09 MST 2003", bibsource = "http://portal.acm.org/; http://www.acm.org/pubs/contents/proceedings/oops/320384/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/citations/proceedings/oops/320384/p1-choi/", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Christ:1999:JSP, author = "Tilo Christ", title = "{Java}, Synchronization, and the {Palmpilot}", journal = j-DDJ, volume = "24", number = "7", pages = "58, 60--64, 66", month = jul, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Jun 2 12:37:25 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1999/1999_07/syncbuild.txt; http://www.ddj.com/ftp/1999/1999_07/syncbuild.zip", abstract = "Tilo's {SyncBuilder} framework lets you write Java applications that communicate with Palm Computing devices and that run on any platform. Additional resources include syncbuild.txt (listings) and syncbuild.zip (source code). Embedded Systems", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Coad:1999:JDB, author = "Peter Coad and Mark Mayfield", title = "{Java} Design: Building Better Apps and Applets", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "352", year = "1999", ISBN = "0-13-911181-6", ISBN-13 = "978-0-13-911181-5", LCCN = "QA76.73.J38C65 1999", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www1.clbooks.com/asp/BookInfo/BookInfo.asp?theisbn=0139111816", price = "US\$44.99", URL = "http://www.phptr.com/ptrbooks/ptr_0139111816.html", acknowledgement = ack-nhfb, } @Book{Coad:1999:JMC, author = "Peter Coad and Eric LeFebvre and Jeff {De Luca}", title = "{Java} Modeling in Color with {UML}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "221", year = "1999", ISBN = "0-13-011510-X", ISBN-13 = "978-0-13-011510-2", LCCN = "QA76.73.J38C652 1999", bibdate = "Wed Jun 23 18:24:02 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", URL = "http://www.phptr.com/ptrbooks/ptr_013011510X.html", acknowledgement = ack-nhfb, } @Article{Coddington:1999:IIR, author = "P. D. Coddington and J. A. Mathew and K. A. Hawick", title = "Interfaces and Implementations of Random Number Generators for {Java Grande} Applications", journal = j-LECT-NOTES-COMP-SCI, volume = "1593", pages = "873--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Coscia:1999:JJT, author = "E. Coscia and G. Reggio", title = "{JTN}: {A} {Java}-Targeted Graphic Formal Notation for Reactive and Concurrent Systems", journal = j-LECT-NOTES-COMP-SCI, volume = "1577", pages = "77--97", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Sep 14 06:09:05 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", keywords = "ETAPS; FASE; software engineering", } @Book{Cowell:1999:EJF, author = "J. Cowell", title = "Essential {Java 2} Fast", publisher = pub-SV, address = pub-SV:adr, pages = "236 (est.)", year = "1999", ISBN = "1-85233-071-6", ISBN-13 = "978-1-85233-071-2", LCCN = "", bibdate = "Wed Mar 14 09:12:42 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @Article{Crowe:1999:CCJ, author = "William L. Crowe", title = "Comparing {C++} and {Java}: {A} {Java SwitchBoard} Implementation", journal = j-CCCUJ, volume = "17", number = "1", pages = "??--??", month = jan, year = "1999", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:19 MDT 2002", bibsource = "http://www.cuj.com/articles/1999/9901/9901toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Writing a ``switchboard'' in Java is both enlightening and useful. Comparing it to a C++ version is also educational.", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @InProceedings{Czajkowski:1999:RCJ, author = "Grzegorz Czajkowski and Tobias Mayr and Praveen Seshadri and Thorsten von Eicken", title = "Resource Control for {Java} Database Extensions", crossref = "USENIX:1999:PFU", pages = "??--??", year = "1999", bibdate = "Fri Oct 18 07:14:18 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/coots99/czajkowski.html", acknowledgement = ack-nhfb, } @Book{Daconta:1999:JJC, author = "Michael C. Daconta and Al Saganich and Eric Monk", title = "{Java 2} and {JavaScript} for {C} and {C++} Programmers", publisher = pub-WILEY, address = pub-WILEY:adr, edition = "Revised", pages = "xxiv + 868", year = "1999", ISBN = "0-471-32719-0", ISBN-13 = "978-0-471-32719-6", LCCN = "QA76.73.J38D865 1999", bibdate = "Sat Oct 09 08:13:10 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/compbooks/", price = "US\$59.99", acknowledgement = ack-nhfb, } @InProceedings{Darcy:1999:JEF, author = "J. D. Darcy", editor = "Robert F. Enenkel", booktitle = "CASCON 1998 Workshop Report, Numerical Computing: Compiler and Library Support", title = "{Java}'s evolving floating-point support: The good, the bad, and the ugly", publisher = "IBM Center for Advanced Studies", address = "Toronto, ON, Canada", pages = "2--10", year = "1999", bibdate = "Sun May 28 18:36:17 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; https://www-927.ibm.com/ibm/cas/publications/TR-74.165/TR-74.165.shtml", note = "Technical report TR-74.165-n.", URL = "https://www-927.ibm.com/ibm/cas/publications/TR-74.165/n/numcomp6.pdf", acknowledgement = ack-nhfb, } @Article{Darwin:1999:GDJ, author = "Ian Darwin", title = "{GUI} Development with {Java}", journal = j-LINUX-J, volume = "61", pages = "??--??", month = may, year = "1999", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Thu Jun 3 06:34:02 MDT 1999", bibsource = "http://www.linuxjournal.com/issue61/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.linuxjournal.com/2673.html", abstract = "How to write a GUI using the Java Swing set.", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Book{Davies:1999:IJS, author = "Richard J. Davies", title = "Introductory {Java} for Scientists and Engineers", publisher = pub-AW-LONGMAN, address = pub-AW-LONGMAN:adr, pages = "312", year = "1999", ISBN = "0-201-39813-3", ISBN-13 = "978-0-201-39813-7", LCCN = "QA76.73.J38D35 1999", bibdate = "Tue Mar 09 16:42:25 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$", URL = "http://www.awl-he.com/titles/11609.html; http://www.jscieng.co.uk/", acknowledgement = ack-nhfb, } @Article{DDJstaff:1999:NVR, author = "{DDJ staff}", title = "News and Views: Real-Time {Java} Working Group; Simulated Safety; {A} House of Smart Cards; Father of Ubiquitous Computing Passes Away; Electrochemical Fabrication", journal = j-DDJ, volume = "24", number = "7", pages = "18", month = jul, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Jun 2 12:37:25 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{DDJstaff:1999:NVSa, author = "{DDJ Staff}", title = "News and Views: Speeding up {3D} Modeling; {Project Gutenberg}; {FSF} Honors {Larry Wall}; Smart Pens Don't Make Smart Writers; Power Hogs; Virtual Fish: {Java}'s Killer App?; Evaluating Testing Tools; Software Patents Con", journal = j-DDJ, volume = "24", number = "1", pages = "18--18", month = jan, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Dec 3 09:32:09 MST 1998", bibsource = "http://www.ddj.com/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{deCarmo:1999:CJM, author = "Linden deCarmo", title = "The Core {Java} Media Framework", publisher = pub-AW, address = pub-AW:adr, pages = "ca. 500", year = "1999", ISBN = "0-13-011519-3", ISBN-13 = "978-0-13-011519-5", LCCN = "QA76.73.J38 D428 1999", bibdate = "Wed Jun 02 16:50:00 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.phptr.com/ptrbooks/ptr_0130115193.html", acknowledgement = ack-nhfb, } @Article{Demartini:1999:DDT, author = "Claudio Demartini and Radu Iosif and Riccardo Sisto", title = "A deadlock detection tool for concurrent {Java} programs", journal = j-SPE, volume = "29", number = "7", pages = "577--603", month = jun, year = "1999", CODEN = "SPEXBL", ISSN = "0038-0644 (print), 1097-024X (electronic)", ISSN-L = "0038-0644", bibdate = "Thu Jul 29 15:12:22 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=62003577; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=62003577&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Software---Practice and Experience", } @Book{Dennis:1999:MCJ, author = "Gregory C. Dennis and James R. Rubin", title = "Mission-critical {Java} project management: business strategies, applications, and development", publisher = pub-AW, address = pub-AW:adr, pages = "xviii + 245", year = "1999", ISBN = "0-201-32573-X", ISBN-13 = "978-0-201-32573-7", LCCN = "HF5548.5.J38D46 1999", bibdate = "Tue May 11 06:56:57 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$34.95", acknowledgement = ack-nhfb, } @Article{DePauw:1999:VRP, author = "W. {De Pauw} and C. Sevitski", title = "Visualizing Reference Patterns for Solving Memory Leaks in {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1628", pages = "116--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999b.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{DeRose:1999:TTM, author = "Luiz {De Rose} and David Padua", title = "Techniques for the translation of {MATLAB} programs into {Fortran 90}", journal = j-TOPLAS, volume = "21", number = "2", pages = "286--323", month = mar, year = "1999", CODEN = "ATPSDT", ISSN = "0164-0925 (print), 1558-4593 (electronic)", ISSN-L = "0164-0925", bibdate = "Fri Oct 1 19:16:48 MDT 1999", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/journals/toplas/1999-21-2/p286-de_rose/", abstract = "This article describes the main techniques developed for FALCON's MATLAB-to-Fortran 90 compiler. FALCON is a programming environment for the development of high-performance scientific programs. It combines static and dynamic inference methods to translate MATLAB programs into Fortran 90. The static inference is supported with advanced value propagation techniques and symbolic algorithms for subscript analysis. Experiments show that FALCON's MATLAB translator can generate code that performs more than 1000 times faster than the interpreted version of MATLAB and substantially faster than commercially available MATLAB compilers on one processor of an SGI Power Challenge. Furthermore, in most cases we have tested, the compiler-generated code is as fast as corresponding hand-written programs.", acknowledgement = ack-nhfb, fjournal = "ACM Transactions on Programming Languages and Systems", keywords = "algorithms; Java; languages", subject = "{\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Very high-level languages. {\bf D.3.4} Software, PROGRAMMING LANGUAGES, Processors, Compilers. {\bf I.1.2} Computing Methodologies, SYMBOLIC AND ALGEBRAIC MANIPULATION, Algorithms.", } @Article{Dieckman:1999:SAB, author = "S. Dieckman and U. Hoelzle", title = "A Study of the Allocation Behavior of the {SPECjvm98} {Java} Benchmarks", journal = j-LECT-NOTES-COMP-SCI, volume = "1628", pages = "92--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999b.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Dolvane:1999:PIAa, author = "Jaison Dolvane and Kumanan Yogaratnam", title = "{PersonalJava} and Information Appliances, Part {I}", journal = j-DDJ, volume = "24", number = "1", pages = "60, 62, 64--68", month = jan, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Dec 3 09:32:09 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ddj/ftp/1999/1999_01/pjia1.txt", abstract = "PersonalJava is the Java Application Environment designed specifically for low-resource environments and diverse visual displays. Our authors share some of the lessons they learned while developing Kalos Espresso, a lightweight Java UI toolkit optimized for PersonalJava environments. Additional resources include pjia1.txt (listings). EMBEDDED SYSTEMS", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Dolvane:1999:PIAb, author = "Jaison Dolvane and Kumanan Yogaratnam", title = "{PersonalJava} and Information Appliances, Part {II}", journal = j-DDJ, volume = "24", number = "2", pages = "64, 66--68, 70--71", month = feb, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 2 06:29:28 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/1999/9902/9902toc.htm; http://www.ddj.com/ddj/1999/1999_02/9902f/9902f.htm; http://www.ddj.com/ftp/1999/1999_02/pjphone.txt; http://www.ddj.com/ftp/1999/1999_02/pjphone.zip", abstract = "In the second installment of this two-part article, Jaison and Kumanan examine the hardware requirements for PersonalJava applications, discuss the embedded operating systems that support PersonalJava, and put PersonalJava and Kalos Expresso to work by developing a phone directory application for a web-phone appliance. Additional resources include pjphone.txt (listings) and pjphone.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Doolin:1999:JCL, author = "David M. Doolin and Jack Dongarra and Keith Seymour", title = "{JLAPACK} --- compiling {LAPACK} {FORTRAN} to {Java}", journal = j-SCI-PROG, volume = "7", number = "2", pages = "111--138", month = "????", year = "1999", CODEN = "SCIPEV", ISSN = "1058-9244 (print), 1875-919X (electronic)", ISSN-L = "1058-9244", bibdate = "Thu Mar 28 12:27:27 MST 2002", bibsource = "Compendex database; ftp://ftp.ira.uka.de/bibliography/Misc/Bibnet/authors/d/dongarra-jack-j.bib; http://www.iospress.nl/site/html/10589244.html; http://www.math.utah.edu/pub/bibnet/authors/d/dongarra-jack-j.bib; http://www.math.utah.edu/pub/tex/bib/java.bib; OCLC Article1st database", note = "The software is available on the World-Wide Web at \path=http://www.cs.utk.edu/f2j/=.", URL = "http://iospress.metapress.com/app/home/contribution.asp%3Fwasp=f277qlrwwjr5m4vxjywv%26referrer=parent%26backto=issue%2C4%2C8%3Bjournal%2C7%2C9%3Blinkingpublicationresults%2C1%2C1; http://www.netlib.org/utk/people/JackDongarra/PAPERS/f2jrep~1.pdf", acknowledgement = ack-nhfb, fjournal = "Scientific Programming", xxauthor = "David M. Doolin and Jack Dongarra and Keith Seymour", } @Article{Drossopoulou:1999:DSJ, author = "S. Drossopoulou and S. Eisenbach", title = "Describing the Semantics of {Java} and Proving Type Soundness", journal = j-LECT-NOTES-COMP-SCI, volume = "1523", pages = "41--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Drye:1999:JFC, author = "Stephen C. Drye and William C. Wake", title = "{Java} Foundation Classes: Swing Reference", publisher = pub-MANNING, address = pub-MANNING:adr, pages = "xxi + 1065", month = jul, year = "1999", ISBN = "1-884777-67-8", ISBN-13 = "978-1-884777-67-7", LCCN = "QA76.73.J38 D79 1999", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.manning.com/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", URL = "http://www.manning.com/Drye/index.html", acknowledgement = ack-nhfb, } @Article{Duggan:1999:MTB, author = "Dominic Duggan", title = "Modular type-based reverse engineering of parameterized types in {Java} code", journal = j-SIGPLAN, volume = "34", number = "10", pages = "97--113", month = oct, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:18:09 MST 2003", bibsource = "http://portal.acm.org/; http://www.acm.org/pubs/contents/proceedings/oops/320384/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/citations/proceedings/oops/320384/p97-duggan/", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Duke:1999:CDJ, author = "David J. Duke and Ivan Herman and M. Scott Marshall", title = "Chapter 8. Detailed {Java} Specifications of the {PREMO} Objects", journal = j-LECT-NOTES-COMP-SCI, volume = "1591", pages = "205--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Feb 4 12:02:55 MST 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t1591.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://link.springer-ny.com/link/service/series/0558/bibs/1591/15910205.htm; http://link.springer-ny.com/link/service/series/0558/papers/1591/15910205.pdf", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Duke:1999:PFM, author = "David J. Duke and I. Herman and Scott Marshall", title = "{PREMO}: a framework for multimedia middleware: specification, rationale, and Java binding", volume = "1591", publisher = pub-SV, address = pub-SV:adr, pages = "xii + 254", year = "1999", ISBN = "3-540-66720-2 (softcover)", ISBN-13 = "978-3-540-66720-9 (softcover)", ISSN = "0302-9743 (print), 1611-3349 (electronic)", LCCN = "QA76.575 .D85 1999", bibdate = "Mon Oct 16 18:31:56 MDT 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = ser-LNCS, acknowledgement = ack-nhfb, keywords = "Java (computer program language); middleware; multimedia systems -- standards; PREMO (standard)", } @Book{Dunn:1999:JRE, author = "Douglas Dunn", title = "The {Java} Rules! Electronic Book", publisher = "Integrated Warehouse Systems, Inc.", address = "PO Box 10643, Towson, Maryland 21285, USA; Tel: +1 800 828-5951", pages = "1127", year = "1999", ISBN = "1-893876-00-4", ISBN-13 = "978-1-893876-00-2", LCCN = "", bibdate = "Thu Jul 15 19:23:46 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.50", URL = "http://www.javarules.com", acknowledgement = ack-nhfb, annote = "Edited by Susan Stark of Boston, MA.", } @Article{Easton:1999:JQD, author = "Evan Easton", title = "{Java Q\&A}: Does {Java} Support {\em enum}s?", journal = j-DDJ, volume = "24", number = "10", pages = "113--117", month = oct, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Nov 9 06:25:05 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1999/1999_10/jqa1099.txt; http://www.ddj.com/ftp/1999/1999_10/jqa1099.zip", abstract = "In C and C++, enum's let you define a constrained set of options for an API parameter. But Java doesn't directly support this concept. Evan presents a workaround for this deficiency using simple generic types. Additional resources include jqa1099.txt (listings) and jqa1099.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Edwards:1999:CJ, author = "W. Keith Edwards", title = "Core {Jini}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "772", year = "1999", ISBN = "0-13-014469-X", ISBN-13 = "978-0-13-014469-0", LCCN = "QA76.9.D5E38 1999", bibdate = "Wed Jun 02 16:54:01 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", URL = "http://www.phptr.com/ptrbooks/ptr_013014469X.html", acknowledgement = ack-nhfb, } @Book{Egremont:1999:MBB, author = "Carlton {Egremont III}", title = "{Mr. Bunny}'s Big Cup o' {Java}", publisher = pub-AW, address = pub-AW:adr, pages = "115", year = "1999", ISBN = "0-201-61563-0", ISBN-13 = "978-0-201-61563-0", LCCN = "????", bibdate = "Wed Feb 21 07:36:28 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$14.95", acknowledgement = ack-nhfb, } @Article{Eisenberg:1999:SPS, author = "Andrew Eisenberg and Jim Melton", title = "{SQLJ} Part 1: {SQL} routines using the {Java} programming language", journal = j-SIGMOD, volume = "28", number = "4", pages = "58--63", month = dec, year = "1999", CODEN = "SRECD8", ISSN = "0163-5808 (print), 1943-5835 (electronic)", ISSN-L = "0163-5808", bibdate = "Mon Jan 12 08:46:05 MST 2004", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGMOD Record", } @Book{Engel:1999:PJV, author = "Joshua Engel", title = "Programming for the {Java Virtual Machine}", publisher = pub-AW, address = pub-AW:adr, pages = "xix + 488", year = "1999", ISBN = "0-201-30972-6 , 0-201-61654-8 (CD-ROM)", ISBN-13 = "978-0-201-30972-0, 978-0-201-61654-5 (CD-ROM)", LCCN = "QA76.73.J38E543 1999", bibdate = "Tue May 11 08:13:32 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.95", acknowledgement = ack-nhfb, subject = "Java (Computer program language); Java Virtual Machine", } @Book{Flanagan:1999:JEN, author = "David Flanagan and Jim Farley and William Crawford and Kris Magnusson", title = "{Java Enterprise} in a Nutshell: a Desktop Quick Reference", publisher = pub-ORA, address = pub-ORA:adr, pages = "xvi + 604", year = "1999", ISBN = "1-56592-483-5", ISBN-13 = "978-1-56592-483-3", LCCN = "QA76.73.J38 J366 1999", bibdate = "Thu Jan 18 06:36:38 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.oreilly.com/catalog/", price = "US\$29.95", URL = "http://www.oreilly.com/catalog/jentnut", acknowledgement = ack-nhfb, } @Book{Flanagan:1999:JFC, author = "David Flanagan", title = "{Java Foundation Classes} in a Nutshell", publisher = pub-ORA, address = pub-ORA:adr, pages = "xiii + 731", year = "1999", ISBN = "1-56592-488-6", ISBN-13 = "978-1-56592-488-8", LCCN = "QA76.73.J38 F53 1999", bibdate = "Sat Oct 21 12:27:03 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.oreilly.com/catalog/", price = "US\$29.95", URL = "http://www.oreilly.com/catalog/jfcnut", acknowledgement = ack-nhfb, } @Book{Flanagan:1999:JNE, author = "David Flanagan", title = "{Java} in a Nutshell: {A} Desktop Quick Reference", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "xviii + 648", month = nov, year = "1999", ISBN = "1-56592-487-8", ISBN-13 = "978-1-56592-487-1", LCCN = "QA76.73.J38 F553 1999", bibdate = "Mon Jul 30 06:50:24 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.oreilly.com/catalog/", price = "US\$29.95", URL = "http://www.oreilly.com/catalog/9781565924871; http://www.oreilly.com/catalog/javanut3", acknowledgement = ack-nhfb, } @Book{Flanagan:1999:JPR, author = "David Flanagan", title = "{Java} Power Reference: {A} Complete Searchable Resource on {CD-ROM}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xi + 51", year = "1999", ISBN = "1-56592-589-0", ISBN-13 = "978-1-56592-589-2", LCCN = "????", bibdate = "Sat Mar 11 15:55:12 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "US\$19.95", URL = "http://www.oreilly.com/catalog/jpower/", acknowledgement = ack-nhfb, } @Article{Flanagan:1999:MRJ, author = "D. Flanagan", title = "Micro Review: {Java} Power Reference", journal = j-IEEE-MICRO, volume = "19", number = "5", pages = "10--11", month = sep # "\slash " # oct, year = "1999", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/MM.1999.798103", ISSN = "0272-1732 (print), 1937-4143 (electronic)", ISSN-L = "0272-1732", bibdate = "Thu Dec 14 06:08:58 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; Science Citation Index database (1980--2000)", acknowledgement = ack-nhfb, fjournal = "IEEE Micro", } @InProceedings{Folmsbee:1999:AJT, author = "Alan Folmsbee", title = "{AES Java} Technology Comparisons", crossref = "NIST:1999:SAC", pages = "28", year = "1999", bibdate = "Fri Feb 16 08:34:38 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Only the slides for the conference talk are available.", URL = "http://csrc.nist.gov/encryption/aes/round1/conf2/Folmsbee.pdf", acknowledgement = ack-nhfb, annote = "From the conclusions: ``The top five candidates are: RC6, Mars, Serpent, Hasty Pudding Cipher, Crypton.''", } @InProceedings{Fox:1999:UWI, author = "G. C. Fox and W. Furmanski and G. Krishnamurthy and H. T. Ozdemir", title = "Using {WebHLA} to Integrate {HPC FMS} Modules with {Web}\slash Commodity Based Distributed Object Technologies of {CORBA}, {Java}, {COM} and {XML}", crossref = "Tentner:1999:PHP", pages = "273--278", year = "1999", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Foxwell:1999:JSD, author = "Harry J. Foxwell", title = "{Java 2} Software Development Kit", journal = j-LINUX-J, volume = "66", pages = "??--??", month = oct, year = "1999", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Thu Sep 21 07:44:11 MDT 2000", bibsource = "http://noframes.linuxjournal.com/lj-issues/issue66/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://noframes.linuxjournal.com/lj-issues/issue66/3424.html", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Book{Freeman:1999:JPP, author = "Eric Freeman and Susanne Hupfer and Ken Arnold", title = "{JavaSpaces} principles, patterns, and practice", publisher = pub-AW, address = pub-AW:adr, pages = "304", year = "1999", ISBN = "0-201-30955-6", ISBN-13 = "978-0-201-30955-3", LCCN = "QA76.73.J38F74 1999", bibdate = "Tue May 11 07:12:25 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.95", acknowledgement = ack-nhfb, } @Article{Freund:1999:FFJ, author = "Stephen N. Freund and John C. Mitchell", title = "A formal framework for the {Java} bytecode language and verifier", journal = j-SIGPLAN, volume = "34", number = "10", pages = "147--166", month = oct, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:18:09 MST 2003", bibsource = "http://portal.acm.org/; http://www.acm.org/pubs/contents/proceedings/oops/320384/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/citations/proceedings/oops/320384/p147-freund/", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Freund:1999:TSO, author = "Stephen N. Freund and John C. Mitchell", title = "The type system for object initialization in the {Java} bytecode language", journal = j-TOPLAS, volume = "21", number = "6", pages = "1196--1250", month = nov, year = "1999", CODEN = "ATPSDT", ISSN = "0164-0925 (print), 1558-4593 (electronic)", ISSN-L = "0164-0925", bibdate = "Tue Sep 26 10:12:58 MDT 2000", bibsource = "http://www.acm.org/pubs/contents/journals/toplas/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/citations/journals/toplas/1999-21-6/p1196-freund/", abstract = "In the standard Java implementation, a Java language program is compiled to Java bytecode. This bytecode may be sent across the network to another site, where it is then executed by the Java Virtual Machine. Since bytecode may be written by hand, or corrupted during network transmission, the Java Virtual Machine contains a bytecode verifier that performs a number of consistency checks before code is run. These checks include type correctness and, as illustrated by previous attacks on the Java Virtual Machine, are critical for system security. In order to analyze existing bytecode verifiers and to understand the properties that should be verified, we develop a precise specification of statically correct Java bytecode, in the form of a type system. Our focus in this article is a subset of the bytecode language dealing with object creation and initialization. For this subset, we prove, that, for every Java bytecode program that satisfies our typing constraints, every object is initialized before it is used. The type system is easily combined with a previous system developed by Stata and Abadi for bytecode subroutines. Our analysis of subroutines and object initialization reveals a previously unpublished bug in the Sun JDK bytecode verifier.", acknowledgement = ack-nhfb, fjournal = "ACM Transactions on Programming Languages and Systems", keywords = "bytecode languages; Java; object initialization; type checking", subject = "Software --- Programming Languages --- Formal Definitions and Theory (D.3.1); Theory of Computation --- Logics and Meanings of Programs --- Specifying and Verifying and Reasoning about Programs (F.3.1): {\bf Mechanical verification}; Theory of Computation --- Logics and Meanings of Programs --- Studies of Program Constructs (F.3.3): {\bf Type structure}", } @Article{Fruhauf:1999:BCO, author = "Karol Fr{\"u}hauf", title = "Bookshelf: Customer Oriented Software Quality Assurance: Client\slash Server Programming with {JAVA} and {CORBA}", journal = j-IEEE-SOFTWARE, volume = "16", number = "5", pages = "131--133", month = sep # "\slash " # oct, year = "1999", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/MS.1999.795115", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Wed Oct 6 17:43:24 MDT 1999", bibsource = "http://computer.org/software/so1999/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/so/books/so1999/pdf/s5131.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Software", } @Article{Galatopoullos:1999:DPA, author = "D. G. Galatopoullos and E. S. Manolakos", title = "Developing Parallel Applications Using the {JavaPorts} Environment", journal = j-LECT-NOTES-COMP-SCI, volume = "1586", pages = "813--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Garber:1999:NBA, author = "Lee Garber", title = "News Briefs: {Apple} Engineers a Major Turnaround; {Java} Battles Brew on Several Fronts; {IBM} and {SGI} Unveil Ultrafast Supercomputers; {Y2K} Briefs", journal = j-COMPUTER, volume = "32", number = "1", pages = "23--25", month = jan, year = "1999", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Fri Jan 15 16:17:58 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1999/pdf/r1023.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Book{Geary:1999:GJM, author = "David M. Geary", title = "Graphic {Java} 2: Mastering the {JFC}, Volume 2: Swing", publisher = pub-PH, address = pub-PH:adr, edition = "Third", pages = "1664", year = "1999", ISBN = "0-13-079667-0", ISBN-13 = "978-0-13-079667-7", LCCN = "????", bibdate = "Wed Apr 14 07:17:33 1999", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/; http://www.sun.com/books/catalog/swing/", price = "US\$54.99", URL = "http://www.prenhall.com/books/ptr_0130796670.html", acknowledgement = ack-nhfb, } @Article{Germain-Renaud:1999:JBC, author = "C{\'e}cile Germain-Renaud and Vincent N{\'e}ri", title = "{Java}-based coupling for parallel predictive-adaptive domain decomposition", journal = j-SCI-PROG, volume = "7", number = "2", pages = "185--189", month = "????", year = "1999", CODEN = "SCIPEV", ISSN = "1058-9244 (print), 1875-919X (electronic)", ISSN-L = "1058-9244", bibdate = "Thu Mar 28 12:27:27 MST 2002", bibsource = "Compendex database; http://www.iospress.nl/site/html/10589244.html; http://www.math.utah.edu/pub/tex/bib/java.bib; OCLC Article1st database", URL = "http://iospress.metapress.com/app/home/contribution.asp%3Fwasp=f277qlrwwjr5m4vxjywv%26referrer=parent%26backto=issue%2C8%2C8%3Bjournal%2C7%2C9%3Blinkingpublicationresults%2C1%2C1", acknowledgement = ack-nhfb, fjournal = "Scientific Programming", } @InProceedings{Getov:1999:MJM, author = "Vladimir Getov and Paul Gray and Vaidy Sunderam", title = "{MPI} and {Java-MPI}: Contrasts and Comparisons of Low-level Communication Performance", crossref = "ACM:1999:SPO", pages = "??--??", year = "1999", bibdate = "Thu Feb 24 09:02:57 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sc99.org/techpapers/", acknowledgement = ack-nhfb, } @Article{Getov:1999:MLP, author = "Vladimir Getov and Paul Gray and Sava Mintchev and Vaidy Sunderam", title = "Multi-language programming environments for high performance {Java} computing", journal = j-SCI-PROG, volume = "7", number = "2", pages = "139--146", month = "????", year = "1999", CODEN = "SCIPEV", ISSN = "1058-9244 (print), 1875-919X (electronic)", ISSN-L = "1058-9244", bibdate = "Thu Mar 28 12:27:27 MST 2002", bibsource = "Compendex database; http://www.iospress.nl/site/html/10589244.html; http://www.math.utah.edu/pub/tex/bib/java.bib; OCLC Article1st database", URL = "http://iospress.metapress.com/app/home/contribution.asp%3Fwasp=f277qlrwwjr5m4vxjywv%26referrer=parent%26backto=issue%2C5%2C8%3Bjournal%2C7%2C9%3Blinkingpublicationresults%2C1%2C1", acknowledgement = ack-nhfb, fjournal = "Scientific Programming", } @Book{Gilliam:1999:PJ, author = "Jason Gilliam and Charlton Ting and R. Allen Wyke", title = "Pure {JavaScript}", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xxxix + 1448", year = "1999", ISBN = "0-672-31547-5", ISBN-13 = "978-0-672-31547-3", LCCN = "QA76.73.J39 G54 1999", bibdate = "Fri May 12 12:26:49 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$34.99", acknowledgement = ack-nhfb, } @Book{Gilorien:1999:DJ, author = "{Gilorien}", title = "{DHTML} and {JavaScript}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "1168", year = "1999", ISBN = "0-13-086334-3", ISBN-13 = "978-0-13-086334-8", LCCN = "QA76.76.H94 G55 1999", bibdate = "Fri Nov 01 05:20:12 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$42.99", URL = "http://www.phptr.com/ptrbooks/ptr_0130863343.html", acknowledgement = ack-nhfb, annote = "Yes, author has only one name: perhaps a corporate one.", } @Article{Gimbel:1999:JBP, author = "M. Gimbel and M. Philippsen and B. Haumacher and P. C. Lockemann", title = "{Java} as a Basis for Parallel Data Mining in Workstation Clusters", journal = j-LECT-NOTES-COMP-SCI, volume = "1593", pages = "884--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Goller:1999:PPS, author = "A. Goller", title = "Parallel Processing Strategies for Large {SAR} Image Data Sets in a Distributed Environment", journal = j-COMPUTING, volume = "62", number = "4", pages = "277--291", year = "1999", CODEN = "CMPTA2", ISSN = "0010-485X (print), 1436-5057 (electronic)", ISSN-L = "0010-485X", bibdate = "Tue Oct 12 16:33:42 MDT 1999", bibsource = "Compendex database; http://link.springer-ny.com/link/service/journals/00607/tocs/t9000004.htm; http://www.math.utah.edu/pub/tex/bib/java.bib; OCLC Contents1st database", URL = "http://link.springer-ny.com/link/service/journals/00607/bibs/9062004/90620277.htm; http://link.springer-ny.com/link/service/journals/00607/papers/9062004/90620277.pdf", acknowledgement = ack-nhfb, classification = "716.2; 722.1; 722.4; 723; 723.2; 741", fjournal = "Computing: Archiv f{\"u}r informatik und numerik", journalabr = "Comput Vienna New York", keywords = "Algorithms; Client server computer systems; Common object request broker architecture (CORBA); Computer architecture; Concurrent and distributed image processing (CDIP) systems; Data storage equipment; Image processing; Java programming language; Parallel processing systems; Shape-from-shading; Supercomputers; Synthetic aperture radar", } @Book{Gong:1999:IJP, author = "Li Gong", title = "Inside {Java 2} platform security: architecture, {API} design, and implementation", publisher = pub-AW, address = pub-AW:adr, pages = "????", year = "1999", ISBN = "0-201-31000-7", ISBN-13 = "978-0-201-31000-9", LCCN = "QA76.73.J38 G65 1999", bibdate = "Thu Sep 02 15:03:56 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$34.95", acknowledgement = ack-nhfb, xxnote = "Same ISBN as \cite{Gong:1998:JSM}.", } @Book{Goodwill:1999:DJS, author = "James Goodwill", title = "Developing {Java} servlets", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "vii + 515", year = "1999", ISBN = "0-672-31600-5", ISBN-13 = "978-0-672-31600-5", LCCN = "QA76.73.J38 G6625 1999", bibdate = "Wed Feb 21 07:37:45 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.99", acknowledgement = ack-nhfb, } @Book{Gordon:1999:EJJ, author = "Rob Gordon and Stephen Talley", title = "Essential {JMF}: {Java Media Framework}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxxvii + 624", year = "1999", ISBN = "0-13-080104-6", ISBN-13 = "978-0-13-080104-3", LCCN = "QA76.73.J38G663 1998", bibdate = "Thu Jan 21 18:58:23 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.phptr.com/ptrbooks/ptr_0130801046.html", acknowledgement = ack-nhfb, publishersnote = "{\em Essential JMF} brings together all the information experienced developers need to build platform-independent multimedia players with the new Java Media Framework API. Like all books in Prentice Hall PTR's {\em Essential Series}, it delivers no-nonsense, nuts-and-bolts coverage in a task-oriented reference format.", xxnote = "Check pages and year??", } @Book{Grand:1999:PJC, author = "Mark Grand", title = "Patterns In {Java}: {A} Catalog of Reusable Design Patterns Illustrated With {UML}, Volume 1", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "640", year = "1999", ISBN = "0-471-25839-3", ISBN-13 = "978-0-471-25839-1", LCCN = "QA76.76.P37G73 1998", bibdate = "Tue May 11 08:14:09 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www1.clbooks.com/asp/BookInfo/BookInfo.asp?theisbn=0471258393", price = "US\$49.99", acknowledgement = ack-nhfb, } @Book{Grand:1999:PJV, author = "Mark Grand", title = "Patterns in {Java}, Vol. 2", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "368", year = "1999", ISBN = "0-471-25841-5", ISBN-13 = "978-0-471-25841-4", LCCN = "????", bibdate = "Sat Oct 09 08:13:10 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/compbooks/", note = "Includes CD-ROM.", price = "US\$49.99", acknowledgement = ack-nhfb, } @Article{Grinzo:1999:JQH, author = "Lou Grinzo", title = "{Java Q and A}: How Do You Run Untrusted Classes?", journal = j-DDJ, volume = "24", number = "5", pages = "121--123", month = may, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Apr 30 10:07:03 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1999/1999_05/jqa599.txt; http://www.ddj.com/ftp/1999/1999_05/jqa599.zip", abstract = "How do you run untrusted classes? Lou takes a look at a couple of different answers to this question. Additional resources include jqa599.txt (listings) and jqa599.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Grinzo:1999:PBC, author = "Lou Grinzo and Laryn Fernandes", title = "Programmer's Bookshelf: Clarifying the {Open Source} Movement", journal = j-DDJ, volume = "24", number = "9", pages = "119--120", month = sep, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Nov 9 06:25:04 MST 2000", bibsource = "http://www.ddj.com/; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Lou examines Open Sources: Voices of the Open Source Revolution, edited by Chris DiBona, Sam Ockman, and Mark Stone, while Laryn takes a look at the third edition of David M. Geary's Graphic Java 2: Mastering the JFC.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Gu:1999:EJT, author = "Yan Gu and B. S. Lee and Wentong Cai", title = "Evaluation of {Java} thread performance on two different multithreaded kernels", journal = j-OPER-SYS-REV, volume = "33", number = "1", pages = "34--46", month = jan, year = "1999", CODEN = "OSRED8", ISSN = "0163-5980", ISSN-L = "0163-5980", bibdate = "Sat Aug 26 08:55:37 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Operating Systems Review", } @InProceedings{Gustavson:1999:FMA, author = "Fred G. Gustavson and Jos{\'e} E. Moreira and Robert F. Enenkel", editor = "Stephen A. MacKay and J. Howard Johnson", booktitle = "CASCON '99: Proceedings of the 1999 Conference of the Centre for Advanced Studies on Collaborative Research. November 8--11, 1999, Mississauga, Ontario, Canada", title = "The fused multiply-add instruction leads to algorithms for extended-precision floating point: applications to {Java} and high-performance computing", publisher = pub-IBM, address = pub-IBM:adr, pages = "[4]", year = "1999", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Fri Nov 26 15:40:34 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Dedicated to Cleve Moler on his 60th birthday.", acknowledgement = ack-nhfb, remark = "University of Toronto library catalog at Mississauga has CASCON 98 and 2003, but not 99, nor can I find it in any other of several dozen catalogs that I searched. Eventually, I found an entry in the OCLC WorldCat catalog; it records that only one library, the British Library, has it, under system number 006540229.", } @Book{Hall:1999:CWP, author = "Marty Hall", title = "Core {Web} Programming", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xl + 1279", year = "1999", ISBN = "0-13-625666-X", ISBN-13 = "978-0-13-625666-3", LCCN = "QA76.625.H35 1998", bibdate = "Wed Jun 02 16:58:51 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "HTML (Document markup language); Java (Computer program language)", } @Article{Hangal:1999:PAV, author = "Sudheendra Hangal and Mike O'Connor", title = "Performance Analysis and Validation of the {picoJava} Processor", journal = j-IEEE-MICRO, volume = "19", number = "3", pages = "66--72", month = may # "\slash " # jun, year = "1999", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/40.768505", ISSN = "0272-1732 (print), 1937-4143 (electronic)", ISSN-L = "0272-1732", bibdate = "Thu Dec 14 06:08:58 MST 2000", bibsource = "http://www.computer.org/micro/mi1999/; http://www.math.utah.edu/pub/tex/bib/ieeemicro.bib; http://www.math.utah.edu/pub/tex/bib/java.bib; Science Citation Index database (1980--2000)", URL = "http://dlib.computer.org/mi/books/mi1999/pdf/m3066.pdf; http://www.computer.org/micro/mi1999/m3066abs.htm", acknowledgement = ack-nhfb, fjournal = "IEEE Micro", xxpages = "66--72", } @Article{Hansen:1999:JIP, author = "Per Brinch Hansen", title = "{Java}'s insecure parallelism", journal = j-SIGPLAN, volume = "34", number = "4", pages = "38--45", month = apr, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:18:01 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Book{Hansen:1999:PEJ, author = "Per Brinch Hansen", title = "Programming for Everyone in {Java}", publisher = pub-SV, address = pub-SV:adr, pages = "255 (est.)", year = "1999", ISBN = "0-387-98683-9", ISBN-13 = "978-0-387-98683-8", LCCN = "", bibdate = "Wed Mar 14 08:27:06 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$34.95", acknowledgement = ack-nhfb, } @Article{Hansen:1999:TCJ, author = "Per Brinch Hansen", title = "Technical Correspondence: {Java}'s Insecure Parallelism", journal = j-SIGPLAN, volume = "34", number = "4", pages = "38--45", month = apr, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Tue Sep 26 17:06:07 MDT 2000", bibsource = "http://ftp.informatik.rwth-aachen.de/dblp/db/journals/sigplan/sigplan34.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://ftp.informatik.rwth-aachen.de/dblp/db/indices/a-tree/h/Hansen:Per_Brinch.html", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Book{Hansmann:1999:SCA, author = "U. Hansmann and M. S. Nicklous and T. Sch{\"a}ck and F. Seliger", title = "{Smart Card} Application Development Using {Java}", publisher = pub-SV, address = pub-SV:adr, pages = "304", year = "1999", ISBN = "3-540-65829-7", ISBN-13 = "978-3-540-65829-0", LCCN = "", bibdate = "Sat Mar 11 11:02:44 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.springer-ny.com/cgi-bin/wwwwais", price = "US\$49.95", acknowledgement = ack-nhfb, } @Book{Hardy:1999:JAG, author = "Vincent J. Hardy", title = "{Java 2D API} Graphics", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xli + 509", year = "1999", ISBN = "0-13-014266-2", ISBN-13 = "978-0-13-014266-5", LCCN = "385 .H334 2000", bibdate = "Wed Feb 21 07:38:34 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", acknowledgement = ack-nhfb, } @Article{Haridi:1999:ELV, author = "Seif Haridi and Peter {Van Roy} and Per Brand and Michael Mehl and Ralf Scheidhauer and Gert Smolka", title = "Efficient logic variables for distributed computing", journal = j-TOPLAS, volume = "21", number = "3", pages = "569--626", month = may, year = "1999", CODEN = "ATPSDT", ISSN = "0164-0925 (print), 1558-4593 (electronic)", ISSN-L = "0164-0925", bibdate = "Tue Sep 26 10:12:58 MDT 2000", bibsource = "http://www.acm.org/pubs/contents/journals/toplas/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/articles/journals/toplas/1999-21-3/p569-haridi/p569-haridi.pdf; http://www.acm.org/pubs/citations/journals/toplas/1999-21-3/p569-haridi/", abstract = "We define a practical algorithm for distributed rational tree unification and prove its correctness in both the off-line and on-line cases. We derive the distributed algorithm from a centralized one, showing clearly the trade-offs between local and distributed execution. The algorithm is used to realize logic variables in the Mozart Programming System, which implements the Oz language (see http://www/mozart-oz.org). Oz appears to the programmer as a concurrent object-oriented language with dataflow synchronization. Logic variables implement the dataflow behavior. We show that logic variables can easily be added to the more restricted models of Java and ML, thus providing an alternative way to do concurrent programming in these languages. We present common distributed programming idioms in a network-transparent way using logic variables. We show that in common cases the algorithm maintains the same message latency as explicit message passing. In addition, it is able to handle uncommon cases that arise from the properties of latency tolerance and third-party independence. This is evidence that using logic variables in distributed computing is beneficial at both the system and language levels. At the system level, they improve latency tolerance and third-party independence. At the language level, they help make network-transparent distribution practical.", acknowledgement = ack-nhfb, fjournal = "ACM Transactions on Programming Languages and Systems", generalterms = "Algorithms; Languages; Theory", keywords = "distributed algorithms; Mozart; Oz", subject = "Software --- Programming Techniques --- Concurrent Programming (D.1.3): {\bf Distributed programming}; Software --- Programming Languages --- Language Classifications (D.3.2): {\bf Concurrent, distributed, and parallel languages}; Software --- Programming Languages --- Language Classifications (D.3.2): {\bf Constraint and logic languages}; Software --- Programming Languages --- Language Classifications (D.3.2): {\bf Data-flow languages}; Software --- Programming Languages --- Language Classifications (D.3.2): {\bf Multiparadigm languages}; Software --- Programming Languages --- Language Constructs and Features (D.3.3): {\bf Concurrent programming structures}; Software --- Programming Languages --- Language Constructs and Features (D.3.3): {\bf Constraints}; Theory of Computation --- Computation by Abstract Devices --- Modes of Computation (F.1.2): {\bf Online computation}", } @Book{Harold:1999:J, author = "Elliotte Rusty Harold", title = "{Java I/O}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxvi + 568", year = "1999", ISBN = "1-56592-485-1", ISBN-13 = "978-1-56592-485-7", LCCN = "QA76.73.J38 H372 1999", bibdate = "Wed Jul 07 07:31:19 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$32.95", URL = "http://metalab.unc.edu/javafaq/books/javaio/; http://www.oreilly.com/catalog/javaio/", acknowledgement = ack-nhfb, } @Book{Harold:1999:JIO, author = "Elliotte Rusty Harold", title = "{Java I/O}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxvi + 568", year = "1999", ISBN = "1-56592-485-1", ISBN-13 = "978-1-56592-485-7", LCCN = "QA76.73.J38 H372 1999", bibdate = "Mon Apr 18 14:55:46 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; z3950.loc.gov:7090/Voyager", price = "US\$32.95", series = "The Java series", URL = "http://www.oreilly.com/catalog/9781565924857; http://www.oreilly.com/catalog/javaio/", acknowledgement = ack-nhfb, keywords = "Java input/output", subject = "Java (Computer program language)", } @Article{Harrison:1999:LRP, author = "Brian Harrison and Philip Hendrickson and Murel {Warren, Jr.} and Lee Kamentsky and Ron Gutman and Brenton Hoff and Martin Handwerker and Tom Culliton and Aspi Havewala", title = "Letters: Real Programmer's Hate {Cobol}; 1984; {Hilbert} Curves; Grepping and Globbing; Testing {Java} Classes; The Version Control Process", journal = j-DDJ, volume = "24", number = "9", pages = "10, 12", month = sep, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Nov 9 06:25:04 MST 2000", bibsource = "http://www.ddj.com/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Hartel:1999:OSJ, author = "P. H. Hartel and M. J. Butler and M. Levy", title = "The Operational Semantics of a {Java} Secure Processor", journal = j-LECT-NOTES-COMP-SCI, volume = "1523", pages = "313--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Heller:1999:JDH, author = "Philip Heller and Simon Roberts", title = "{Java 2} Developer's Handbook", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "1010", year = "1999", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Apr 28 13:58:56 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.com/", price = "US\$60", acknowledgement = ack-nhfb, url-publisher = "http://www.sybex.com/", } @Article{Hittleman:1999:JQW, author = "Kenneth Hittleman and Ted Leung", title = "{Java Q and A}: What's in Store when Moving from {JDK 1.1} to {JDK 1.2}?", journal = j-DDJ, volume = "24", number = "1", pages = "112--115", month = jan, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Dec 3 09:32:09 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ddj/ftp/1999/1999_01/jqa199.txt", abstract = "Are you ready to move from JDK 1.1 to JDK 1.2? Ken and Ted tell you what to expect. Additional resources include jqa199.txt (listings).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @MastersThesis{Holt:1999:EWT, author = "William Holt", title = "The embedded window toolkit: porting {Java}'s {AWT} to an embedded system", type = "Thesis (M.S.)", school = "University of California, Santa Cruz", address = "Santa Cruz, CA, USA", year = "1999", LCCN = "QA76.73.J38 H65 1999", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "embedded computer systems; Java (computer program language); Masters theses -- University of California, Santa Cruz -- computer science", } @Book{Horstmann:1999:CJVa, author = "Cay S. Horstmann and Gary Cornell", title = "Core {Java} 1.2: Volume 1: Fundamentals", publisher = pub-PH, address = pub-PH:adr, edition = "Fourth", pages = "742", year = "1999", ISBN = "0-13-081933-6", ISBN-13 = "978-0-13-081933-8", LCCN = "QA76.73.J38 C67 1999", bibdate = "Wed Jun 23 18:30:47 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.phptr.com/ptrbooks/ptr_0130819336.html; http://www1.clbooks.com/asp/BookInfo/BookInfo.asp?theisbn=0130819336", price = "US\$42.99", acknowledgement = ack-nhfb, xxauthor = "Gary Cornell and Cay S. Horstmann", } @Book{Horstmann:1999:CJVb, author = "Cay S. Horstmann and Gary Cornell", title = "Core {Java} 1.2: Volume 2: Advance Features", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Fourth", pages = "ca. 750", year = "1999", ISBN = "0-13-081934-4", ISBN-13 = "978-0-13-081934-5", LCCN = "????", bibdate = "Wed Jun 02 17:07:21 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www1.clbooks.com/asp/BookInfo/BookInfo.asp?theisbn=0130819344", price = "US\$49.99", acknowledgement = ack-nhfb, } @Misc{HP:1999:CES, author = "{Hewlett--Packard Corp.}", title = "Chai Embedded Software", howpublished = "World-Wide Web documents", year = "1999", bibdate = "Mon May 24 10:31:36 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "The TurboChai compiler converts Java byte code to ANSI/ISO Standard C, which can then be compiled with native compilers. The Chai system is a clean-room implementation of Java intended for embedded applications. It is available for HP-UX 10.20 and Microsoft Windows NT 4.0 platforms.", URL = "http://www.chai.hp.com/", acknowledgement = ack-nhfb, } @Book{Hunt:1999:JPI, author = "J. Hunt", title = "{Java} for Practitioners: An Introduction and Reference to {Java} and Object Orientation", publisher = pub-SV, address = pub-SV:adr, pages = "xxv + 668", year = "1999", ISBN = "1-85233-093-7", ISBN-13 = "978-1-85233-093-4", LCCN = "QA76.73.J38 H865 1999", bibdate = "Thu Apr 05 09:47:22 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$64.00", acknowledgement = ack-nhfb, } @Book{Husted:1999:SSJ, author = "Robert Husted and J. J. Kuslich", title = "Server-side {JavaScript}: developing integrated {Web} applications", publisher = pub-AW, address = pub-AW:adr, pages = "xiv + 316", year = "1999", ISBN = "0-201-43329-X, 0-201-61624-6 (CD-ROM)", ISBN-13 = "978-0-201-43329-6, 978-0-201-61624-8 (CD-ROM)", LCCN = "QA76.73.J39H877 1999", bibdate = "Fri Jul 30 06:17:45 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.95", acknowledgement = ack-nhfb, } @Article{Igarashi:1999:FJM, author = "Atshushi Igarashi and Benjamin Pierce and Philip Wadler", title = "{Featherweight Java}: a minimal core calculus for {Java} and {GJ}", journal = j-SIGPLAN, volume = "34", number = "10", pages = "132--146", month = oct, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:18:09 MST 2003", bibsource = "http://portal.acm.org/; http://www.acm.org/pubs/contents/proceedings/oops/320384/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/citations/proceedings/oops/320384/p132-igarashi/", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Ioannidou:1999:EUP, author = "Andri Ioannidou and Alexander Repenning", title = "End-User Programmable Simulations", journal = j-DDJ, volume = "24", number = "8", pages = "40, 42--48", month = aug, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Jul 16 19:10:34 MDT 1999", bibsource = "http://www.ddj.com/; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Simulations provide powerful means for communicating complex ideas. Andri and Alex show how {AgentSheets} can enable end users to build their own interactive simulations and export those simulations as Java applets or {JavaBeans} to the Web.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Jackson:1999:JE, author = "Jerry R. Jackson and Alan L. McClellan", title = "{Java} By Example 1.2", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "500", year = "1999", ISBN = "0-13-079669-7", ISBN-13 = "978-0-13-079669-1", LCCN = "????", bibdate = "Tue Nov 03 11:41:13 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99", series = "SunSoft Press Java series", URL = "http://www.phptr.com/ptrbooks/ptr_0130796697.html; http://www.sun.com/books/catalog/jackson2/index.html", acknowledgement = ack-nhfb, } @Article{Jacobs:1999:FTJ, author = "Bart Jacobs and Gary T. Leavens and Peter M{\"u}ller and Arnd Poetzsch-Heffter", title = "Formal Techniques for {Java} Programs", journal = j-LECT-NOTES-COMP-SCI, volume = "1743", pages = "97--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Sep 10 19:08:40 MDT 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t1743.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://link.springer-ny.com/link/service/series/0558/bibs/1743/17430097.htm; http://link.springer-ny.com/link/service/series/0558/papers/1743/17430097.pdf", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Jaeger:1999:FCD, author = "Trent Jaeger and Atul Prakash and Jochen Liedtke and Nayeem Islam", title = "Flexible Control of Downloaded Executable Content", journal = j-TISSEC, volume = "2", number = "2", pages = "177--228", month = may, year = "1999", CODEN = "ATISBQ", ISSN = "1094-9224 (print), 1557-7406 (electronic)", ISSN-L = "1094-9224", bibdate = "Thu Oct 26 11:39:38 MDT 2000", bibsource = "http://www.acm.org/tissec/contents/v2no2.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/citations/journals/tissec/1999-2-2/p177-jaeger/", abstract = "We present a security architecture that enables system and application access control requirements to be enforced on applications composed from downloaded executable content. Downloaded executable content consists of messages downloaded from remote hosts that contain executables that run, upon receipt, on the downloading principal's machine. Unless restricted, this content can perform malicious actions, including accessing its downloading principal's private data and sending messages on this principal's behalf. Current security architectures for controlling downloaded executable content (e.g., JDK 1.2) enable specification of access control requirements for content based on its provider and identity. Since these access control requirements must cover every legal use of the class, they may include rights that are not necessary for a particular application of content. Therefore, using these systems, an application composed from downloaded executable content cannot enforce its access control requirements without the addition of application-specific security mechanisms. In this paper, we define an access control model with the following properties: (1) system administrators can define system access control requirements on applications and (2) application developers can use the same model to enforce application access control requirements without the need for ad hoc security mechanisms. This access control model uses features of role-based access control models to enable (1) specification of a single role that applies to multiple application instances; (2) selection of a content's access rights based on the content's application and role in the application; (3) consistency maintained between application state and content access rights; and (4) control of role administration. We detail a system architecture that uses this access control model to implement secure collaborative applications. Lastly, we describe an implementation of this architecture, called the Lava security architecture.", acknowledgement = ack-nhfb, fjournal = "ACM Transactions on Information and System Security", generalterms = "Management; Security", keywords = "access control models; authentication; authorization mechanisms; collaborative systems; role-based access control", subject = "Software --- Software Engineering --- Management (D.2.9): {\bf Software configuration management}; Software --- Operating Systems --- Security and Protection (D.4.6): {\bf Access controls}; Software --- Operating Systems --- Security and Protection (D.4.6): {\bf Invasive software}; Computing Milieux --- Management of Computing and Information Systems --- System Management (K.6.4): {\bf Centralization/decentralization}; Computing Milieux --- Management of Computing and Information Systems --- Security and Protection (K.6.5): {\bf Invasive software}", } @Article{Jannak:1999:JGR, author = "Torpum Jannak", title = "{Java 2} Graphics Rendering", journal = j-DDJ, volume = "24", number = "9", pages = "19--20, 22, 24, 26--28", month = sep, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Nov 9 06:25:04 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1999/1999_09/java2gra.txt; http://www.ddj.com/ftp/1999/1999_09/java2gra.zip", abstract = "The optimized graphics-rendering pipeline Torpum presents here addresses performance concerns you may encounter when developing scientific visualization, action-based games, or other resource-demanding Java 2 applications. Additional resources include java2gra.txt (listings) and java2gra.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Jaworski:1999:JSH, author = "Jamie Jaworski", title = "{Java} Security Handbook", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "????", year = "1999", ISBN = "0-672-31602-1", ISBN-13 = "978-0-672-31602-9", LCCN = "????", bibdate = "Wed Feb 21 06:06:48 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Edited by Tim Ryan et al.", price = "US\$50", acknowledgement = ack-nhfb, } @Article{Jean-Fran:1999:HTC, author = "Jean-Fran{\c{c}}ois Touchette", title = "{HTML} Thin Client and Transactions", journal = j-DDJ, volume = "24", number = "10", pages = "80, 82, 84--86", month = oct, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Nov 9 06:25:05 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1999/1999_10/htmlthin.txt; http://www.ddj.com/ftp/1999/1999_10/htmlthin.zip", abstract = "Jean-Fran{\c{c}}ois shows how you can implement reliable, nonrepeatable transactions using a technique that is applicable to any Java Server Development Kit-based architecture. Additional resources include htmlthin.txt (listings) and htmlthin.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Johnson:1999:PTC, author = "David M. Johnson", title = "Programmer's Toolchest: Comparing {WFC} and {JFC}", journal = j-DDJ, volume = "24", number = "2", pages = "90, 92--95", month = feb, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 2 06:29:28 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/1999/9902/9902toc.htm; http://www.ddj.com/ftp/1999/1999_02/relay.txt; http://www.ddj.com/ftp/1999/1999_02/relay.zip", abstract = "David compares Microsoft's Windows Foundation Classes (WFC) with Sun's Java Foundation Classes (JFC) framework by developing an Internet Relay Chat (IRC) chat-client called and quot;Relay. and quot; Additional resources include relay.txt (listings) and relay.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Kamara:1999:MWJ, author = "Sheila Kamara", title = "Multimedia at Work: {JavuNetwork}: remote video production and storage", journal = j-IEEE-MULTIMEDIA, volume = "6", number = "3", pages = "78--80", month = jul # "--" # sep, year = "1999", CODEN = "IEMUE4", DOI = "http://dx.doi.org/10.1109/93.790613", ISSN = "1070-986X (print), 1941-0166 (electronic)", ISSN-L = "1070-986X", bibdate = "Mon Jan 29 16:49:44 MST 2001", bibsource = "http://www.computer.org/multimedia/mu1999/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/mu/books/mu1999/pdf/u3078.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE MultiMedia", keywords = "Java", } @Article{Karaorman:1999:CRJ, author = "M. Karaorman and U. Hoelzle and J. Bruno", title = "{Contractor}: {A} Reflective {Java} Library to Support Design by Contract", journal = j-LECT-NOTES-COMP-SCI, volume = "1616", pages = "175--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999b.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Karaorman:1999:JRJ, author = "Murat Karaorman and Urs H{\"o}lzle and John Bruno", title = "{jContractor}: {A} Reflective {Java} Library to Support Design by Contract", journal = j-LECT-NOTES-COMP-SCI, volume = "1616", pages = "175--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Feb 5 11:54:10 MST 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t1616.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://link.springer-ny.com/link/service/series/0558/bibs/1616/16160175.htm; http://link.springer-ny.com/link/service/series/0558/papers/1616/16160175.pdf", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Kientzle:1999:JAS, author = "Tim Kientzle", title = "A {Java} Applet Search Engine", journal = j-DDJ, volume = "24", number = "2", pages = "32, 36, 38--40", month = feb, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 2 06:29:28 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/1999/9902/9902toc.htm; http://www.ddj.com/ftp/1999/1999_02/jsearch.txt; http://www.ddj.com/ftp/1999/1999_02/jsearch.zip", abstract = "Most search engines are designed for web sites. The Java search engine Tim presents here, however, was designed for use on HTML-based CD-ROMs. The differences might surprise you. Additional resources include jsearch.txt (listings) and jsearch.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Kinne:1999:WJP, author = "Morgan Kinne", title = "Writing {Javabean} Property Editors", journal = j-DDJ, volume = "24", number = "2", pages = "52, 54--56, 58, 60, 62", month = feb, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 2 06:29:28 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/1999/9902/9902toc.htm; http://www.ddj.com/ftp/1999/1999_02/propedit.txt; http://www.ddj.com/ftp/1999/1999_02/propedit.zip", abstract = "JavaBeans are reusable software components that can be manipulated by visual programming tools. Morgan shows how you build property editors, focusing on the relationships between the visual tool, property editor, and bean. Additional resources include propedit.txt (listings) and propedit.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Kistler:1999:TAJ, author = "Thomas Kistler and Michael Franz", title = "A Tree-Based Alternative to {Java} Byte-Codes", journal = j-INT-J-PARALLEL-PROG, volume = "27", number = "1", pages = "21--??", month = "????", year = "1999", CODEN = "IJPPE5", ISSN = "0885-7458 (print), 1573-7640 (electronic)", ISSN-L = "0885-7458", bibdate = "Mon Jun 7 09:59:33 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "International Journal of Parallel Programming", } @Article{Kistler:1999:TBA, author = "Thomas Kistler and Michael Franz", title = "A Tree-Based Alternative to {Java} Byte-Codes", journal = j-INT-J-PARALLEL-PROG, volume = "27", number = "1", pages = "21--33", month = feb, year = "1999", CODEN = "IJPPE5", DOI = "http://www.springerlink.com/openurl.asp?genre=article&id=doi:10.1023/A:1018740018601", ISSN = "0885-7458 (print), 1573-7640 (electronic)", ISSN-L = "0885-7458", bibdate = "Wed Jul 6 16:39:53 MDT 2005", bibsource = "http://springerlink.metapress.com/openurl.asp?genre=issue&issn=0885-7458&volume=27&issue=1; http://www.math.utah.edu/pub/tex/bib/java.bib; OCLC Contents1st database", URL = "http://www.springerlink.com/openurl.asp?genre=article&issn=0885-7458&volume=27&issue=1&spage=21", acknowledgement = ack-nhfb, fjournal = "International Journal of Parallel Programming", } @InProceedings{Knies:1999:TIA, author = "Allan Knies and Jesse Fang and Wei Li", title = "Tutorial: {IA64} Architecture and Compilers", crossref = "IEEE:1999:HCS", pages = "??--??", year = "1999", bibdate = "Mon Jan 08 05:28:04 2001", bibsource = "ftp://www.hotchips.org//pub/hotc7to11cd/hc99/hc11_pdf/hc99.t2.s1.IA64tut.txt; ftp://www.hotchips.org//pub/hotc7to11cd/hc99/hc11_pdf/hc99.t2.s2.IA64tut.txt; ftp://www.hotchips.org//pub/hotc7to11cd/hc99/hc11_pdf/hc99.t2.s3.IA64tut.txt; http://www.hotchips.org/hotc11_sunday.html; http://www.math.utah.edu/pub/tex/bib/hot-chips.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "This tutorial covers an overview of the IA-64 architecture and discusses how an optimizing compiler can exploit the architecture features. Since dynamic compilation/dynamic translators are becoming a mainstream technology, we also provide a brief introduction to Java and dynamic compilation on IA-64.\par (1) IA-64 Architecture Basics/Introduction\\ * Registers * Instructions * Instruction groups * Predication * Speculation * Branching\par (2) Optimization Techniques/Using IA-64 Features\\ * Control Speculation * Data Speculation * Predication * Multi-way branches performance improvements, when to apply them, and performance considerations -- conflicts, code size, cache effects, recovery code, critical path, branch prediction\par (3) Compiler Technology on IA-64\\ * Software conventions * Optimizations * Backend Technology If-conversion, Software pipelining, Global code scheduling, Global register allocation, Machine model\par (4) Dynamic Compilation Technology on IA-64\\ * Java software convention * JVM/JIT/GC technology * Dynamic optimizations for C/C++", acknowledgement = ack-nhfb, } @Book{Knudsen:1999:JG, author = "Jonathan Knudsen", title = "{Java 2D} Graphics", publisher = pub-ORA, address = pub-ORA:adr, pages = "xvi + 339", year = "1999", ISBN = "1-56592-484-3", ISBN-13 = "978-1-56592-484-0", LCCN = "QA76.73.J38 K58 1999", bibdate = "Thu Feb 18 08:22:43 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.95", URL = "http://www.oreilly.com/catalog/java2d/", acknowledgement = ack-nhfb, } @Article{Knudsen:1999:TAM, author = "Craig Knudsen", title = "{Transvirtual} Adopts {Microsoft Java} Extensions", journal = j-LINUX-J, volume = "66", pages = "??--??", month = oct, year = "1999", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Thu Sep 21 14:31:45 MDT 2000", bibsource = "http://noframes.linuxjournal.com/lj-issues/issue66/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://noframes.linuxjournal.com/lj-issues/issue66/3482.html", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Article{Konstantinou:1999:DJB, author = "V. Konstantinou and A. Psarrou", title = "A Dynamic {JAVA}-Based Intelligent Interface for Online Image Database Searches", journal = j-LECT-NOTES-COMP-SCI, volume = "1614", pages = "211--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999b.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Krall:1999:GCL, author = "A. Krall and P. Tomsich", title = "Garbage Collection for Large Memory {Java} Applications", journal = j-LECT-NOTES-COMP-SCI, volume = "1593", pages = "895--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Kroeker:1999:NTN, author = "Kirk L. Kroeker", title = "New Tools: Net Development: {Sun}'s {Java} Embedded Server; {MetaCreation}'s {Web}-Savvy Graphics Tool; {WebCompiler}'s {HTML} Packaging Tool. Component Technology: {ProtoVIew Development}'s Active{X} Tools; {Avilon Software}'s Load Balancing Component System. Software Development: {Verilog}'s Test Checker; {Red Hat} and {Metrowerks}' Development Tools for {Linux}; The {Object Factory}'s Optimization Tool; {Acumen Systems}'s {SDK} for Imaging; {Aonix}'s Process-Oriented Lifecycle Environment; {Baan}'s Embedded Software Development Suite", journal = j-COMPUTER, volume = "32", number = "5", pages = "103--107", month = may, year = "1999", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Thu May 6 06:17:23 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1999/pdf/r5103.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Kroeker:1999:NTNa, author = "Kirk L. Kroeker", title = "New Tools: Net Development: {Sun}'s {Java} Embedded Server; {MetaCreation}'s {Web}-Savvy Graphics Tool; {WebCompiler}'s {HTML} Packaging Tool. Component Technology: {ProtoVIew Development}'s {ActiveX} Tools; {Avilon Software}'s Load Balancing Component System. Software Development: {Verilog}'s Test Checker; {Red Hat} and {Metrowerks}' Development Tools for {Linux}; The {Object Factory}'s Optimization Tool; {Acumen Systems}'s {SDK} for Imaging; {Aonix}'s Process-Oriented Lifecycle Environment; {Baan}'s Embedded Software Development Suite", journal = j-COMPUTER, volume = "32", number = "5", pages = "103--107", month = may, year = "1999", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Thu May 6 06:17:23 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1999/pdf/r5103.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Kroeker:1999:NTSd, author = "Kirk L. Kroeker", title = "New Tools: Software Development: {Premia}'s Editing System; {Diab Data}'s Compiler Suites for {Coldfire}; {Borland}'s Visual Development Tools for {Java 2}; {Sun} Outlines {Java 2} at {JavaOne}. Net Development: {InfoAccess}' {HTML} Production Tool; {GoAhead Software}'s Free Embedded {Web} Server; {Planetweb} and {Paradise Innovations} Produce Next-Gen Set-Top Box", journal = j-COMPUTER, volume = "32", number = "8", pages = "91--93", month = aug, year = "1999", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Fri Aug 6 07:18:17 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1999/pdf/r8091.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Kroeker:1999:NTSe, author = "Kirk L. Kroeker", title = "New Tools: Software Development: {SoftQuest Systems}' Project Management Software; {Metrowerks}' {Java} Development Tool for {Mac OS}; {CAD-UL}'s Embedded-Centric {C/C++} Toolkit; {KL Group}'s {Java} Components", journal = j-COMPUTER, volume = "32", number = "9", pages = "106--107", month = sep, year = "1999", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Tue Sep 7 19:41:32 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1999/pdf/r9106.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Kroeker:1999:NTSf, author = "Kirk L. Kroeker", title = "New Tools: Software Development: {Monash University}'s Free {Java} Development Environment; {ParaSoft}'s Error Prevention Tool; {Technosoft}'s {C++} Development Kit; {VideoSoft}'s Spell-Checking and Thesaurus Controls. Network Development: {Network Security}'s Security Management Tool; {Fluke}'s Network Inspector; {MetaCreation}'s {Web}-Oriented Painting Tool", journal = j-COMPUTER, volume = "32", number = "11", pages = "120--122", month = nov, year = "1999", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Sat Mar 11 09:52:58 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "See correction \cite{Anonymous:2000:CNT}.", URL = "http://dlib.computer.org/co/books/co1999/pdf/ry120.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Kummer:1999:SCB, author = "O. Kummer and D. Moldt and F. Wienberg", title = "Symmetric Communication between Coloured {Petri} Net Simulations and {Java}-Processes", journal = j-LECT-NOTES-COMP-SCI, volume = "1639", pages = "86--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999b.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Ladd:1999:PIH, author = "Eric Ladd and Jim O'Donnell", title = "Programmation {Internet}, {HTML} 4, {XML} et {Java R 2}: ressources d'experts", publisher = "CampusPress France", address = "Paris, France", pages = "xvii + 1175", year = "1999", ISBN = "2-7440-0628-9", ISBN-13 = "978-2-7440-0628-9", LCCN = "????", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, alttitle = "Platinum Edition Using HTML 4, XML and Java TM 1.2 Francais.", annote = "Titre original: Platinum Edition Using HTML 4, XML and Java TM 1.2.", keywords = "HTML (langage de balisage).; Internet.; Java (langage de programmation).; XML (langage de balisage).", } @Book{Ladd:1999:UHX, author = "Eric Ladd and Jim O'Donnell and others", title = "Using {HTML 4}, {XML}, and {Java 1.2:} Platinum Edition", publisher = pub-QUE, address = pub-QUE:adr, pages = "xxiii + 1282", year = "1999", ISBN = "0-7897-1759-X", ISBN-13 = "978-0-7897-1759-7", LCCN = "QA76.76.H94L332", bibdate = "Thu Feb 18 17:45:08 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", acknowledgement = ack-nhfb, } @Article{Laird:1999:REN, author = "Cameron Laird and Kathryn Soraiz", title = "Regular Expressions: New choices for scripting: Language designers offer novel possibilities for scripting developers", journal = j-SUNWORLD-ONLINE, volume = "5", number = "2", pages = "??--??", month = feb, year = "1999", ISSN = "1091-8914", bibdate = "Thu Feb 04 05:54:54 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses new scripting languages: Ficl, FIJI, Rebol, Ruby and WebL. Ficl is a descendant of Forth. FIJI is real Forth, but with objects that are Java objects, and with full access to Java.", URL = "http://www.sunworld.com/swol-02-1999/swol-02-regex.html?0202a", acknowledgement = ack-nhfb, fjournal = "SunWorld online", } @Article{Lambert:1999:VSC, author = "John Donovan Lambert", title = "{VBSCRIPT} and {SQL} Calendars", journal = j-DDJ, volume = "24", number = "5", pages = "40, 42, 46--48", month = may, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Apr 30 10:07:03 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1999/1999_05/vbsql.txt; http://www.ddj.com/ftp/1999/1999_05/vbsql.zip", abstract = "John presents the VBSCRIPTs he uses for inputting SQL results into a Web calendar, and discusses how you can port these scripts to Java, Perl, Cold Fusion, or whatever language you prefer. Additional resources include vbsql.txt (listings) and vbsql.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Lange:1999:PDJ, author = "Danny B. Lange and Mitsuru Oshima", title = "Programming and deploying {Java} mobile agents with Aglets", publisher = pub-AW, address = pub-AW:adr, pages = "xxiv + 225", year = "1999", ISBN = "0-201-32582-9", ISBN-13 = "978-0-201-32582-9", LCCN = "QA76.76.I58L36 1998", bibdate = "Tue May 11 07:20:35 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$37.95", acknowledgement = ack-nhfb, } @Book{Langr:1999:EJS, author = "Jeff Langr", title = "Essential {Java} Style: Patterns for Implementation", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "????", year = "1999", ISBN = "0-13-085086-1", ISBN-13 = "978-0-13-085086-7", LCCN = "QA76.13.J38L357 1999", bibdate = "Mon Sep 20 16:31:59 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.phptr.com/ptrbooks/ptr_0130850861.html", acknowledgement = ack-nhfb, } @Book{Larman:1999:JPI, author = "Craig Larman and Rhett Guthrie", title = "{Java 2} Performance and Idiom Guide", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xvii + 299", year = "1999", ISBN = "0-13-014260-3", ISBN-13 = "978-0-13-014260-3", LCCN = "QA76.73.J38 L359 2000", bibdate = "Wed Feb 21 05:38:39 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.phptr.com/ptrbooks/ptr_0130142603.html", acknowledgement = ack-nhfb, } @Article{Lawton:1999:NBB, author = "George Lawton", title = "News Briefs: Battle Begins for Device Network Supremacy; {VXML Forum} Is Created; {Advanced Internet Center} Opens", journal = j-COMPUTER, volume = "32", number = "6", pages = "20--21", month = jun, year = "1999", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Thu Jun 3 18:52:18 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Discusses Sun/Sony/Philips Jini/HAVi vs. Microsoft Universal Plug and Play (UPnP) vs. Lucent's InfernoSpaces.", URL = "http://dlib.computer.org/co/books/co1999/pdf/r6020.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{League:1999:RJC, author = "Christopher League and Zhong Shao and Valery Trifonov", title = "Representing {Java} Classes in a Typed Intermediate Language", journal = j-SIGPLAN, volume = "34", number = "9", pages = "183--196", month = sep, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:18:08 MST 2003", bibsource = "http://pauillac.inria.fr/pli/icfp/; http://portal.acm.org/; http://www.acm.org/pubs/contents/proceedings/fp/317636/; http://www.cs.cmu.edu/~petel/icfp99/conference-program.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Proceedings of the ACM SIGPLAN International Conference on Functional Programming (ICFP '99).", URL = "http://www.acm.org/pubs/citations/proceedings/fp/317636/p183-league", acknowledgement = ack-nhfb, author-1-address = "Yale University, USA", author-2-address = "Yale University, USA", author-3-address = "Yale University, USA", fjournal = "ACM SIGPLAN Notices", } @Article{Lear:1999:NBI, author = "Anne C. Lear", title = "News Briefs: {IETF} Rejects Net Wiretap Proposal; New Plans Ease Net Congestion; Standard {API} to Simplify Network Chip Development; Group Releases Real-Time {Java} Specification", journal = j-COMPUTER, volume = "32", number = "12", pages = "20--21", month = dec, year = "1999", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Sat Mar 11 09:52:58 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1999/pdf/rz020.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Book{Lemay:1999:STY, author = "Laura Lemay and Rogers Cadenhead", title = "{SAMS} teach yourself {Java 2} platform in 21 days, Professional reference edition", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xix + 948", year = "1999", ISBN = "0-672-31438-X", ISBN-13 = "978-0-672-31438-4", LCCN = "QA76.73.J38 L4493 1999", bibdate = "Tue Aug 31 17:38:22 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", acknowledgement = ack-nhfb, } @Article{Levia:1999:IEP, author = "Oz Levia", title = "Integrated Engineering: Programming System Architectures with {Java}", journal = j-COMPUTER, volume = "32", number = "8", pages = "96--98", month = aug, year = "1999", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Fri Aug 6 07:18:17 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1999/pdf/r8096.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @TechReport{Lewis:1999:EBP, author = "Brian T. Lewis and Bernd Mathiske", title = "Efficient barriers for persistent object caching in a high-performance {Java Virtual Machine}", volume = "99-81", institution = "Sun Microsystems", address = "Palo Alto, CA, USA", pages = "9", month = dec, year = "1999", LCCN = "QA76.8.S86.S65", bibdate = "Mon Apr 10 10:43:19 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; library.mit.edu:9909/mit01", series = "SMLI TR", abstract = "We implemented orthogonal persistence for the Java platform by adding persistent object caching to a high-performance virtual machine that uses exact garbage collection, the Sun Microsystems Laboratories Virtual Machine for Research (`ResearchVM'). This paper gives an overview of our design for the read and write barriers needed to support persistence. The key design decision we made was the choice of a pointer swizzling strategy. Pointer swizzling speeds up programs by translating persistent addresses (references to persistent objects on disk) into normal virtual memory addresses in the object cache. The swizzling technique we chose is simple (requires few source changes to the ResearchVM) and performs well (adds acceptably low CPU overhead to the ResearchVM). Our integration of the new barriers was considerably simplified by an internal memory interface that the ResearchVM consistently uses, except in its Just-In-Time (JIT) compiler, to access program runtime values. Our new persistent version of the ResearchVM, the PEVM, requires just 30\% of the changes necessary in our previous persistent virtual machine implementations. It executes programs with only modest runtime overhead (typically 10--20\%) compared to an unchanged ResearchVM.", acknowledgement = ack-nhfb, subject = "Java (Computer program language); Virtual computer systems; Object-oriented databases", } @InProceedings{Liang:1999:CPS, author = "Sheng Liang and Deepa Viswanathan", title = "Comprehensive Profiling Support in the {Java Virtual Machine}", crossref = "USENIX:1999:PFU", pages = "??--??", year = "1999", bibdate = "Fri Oct 18 07:14:18 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/coots99/liang.html", acknowledgement = ack-nhfb, } @Book{Liang:1999:JNI, author = "Sheng Liang", title = "{Java Native Interface}: Programmer's Guide and Specification", publisher = pub-AW, address = pub-AW:adr, pages = "xiv + 303", year = "1999", ISBN = "0-201-32577-2", ISBN-13 = "978-0-201-32577-5", LCCN = "QA76.38 .L53 1999", bibdate = "Sat Apr 29 18:59:53 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.95", acknowledgement = ack-nhfb, } @Book{Lindholm:1999:JVM, author = "Tim Lindholm and Frank Yellin", title = "The {Java} Virtual Machine Specification", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xv + 473", year = "1999", ISBN = "0-201-43294-3", ISBN-13 = "978-0-201-43294-7", LCCN = "QA76.73.J38L56 1999", bibdate = "Tue May 11 07:30:11 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$42.95", acknowledgement = ack-nhfb, } @Article{Lipton:1999:JPD, author = "Paul Lipton", title = "{Java} Proxies For Database Objects", journal = j-DDJ, volume = "24", number = "5", pages = "34, 36--39", month = may, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Apr 30 10:07:03 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1999/1999_05/jproxy.txt", abstract = "Java proxy technology lets you define database object schema using the database ODL. To illustrate how such a technology might be implemented, Paul provides examples based on the Jasmine object-oriented database. Additional resources include jproxy.txt (listings).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Loeb:1999:JA, author = "Bill Loeb", title = "The {Java 2D API}", journal = j-DDJ, volume = "24", number = "2", pages = "44, 46--49", month = feb, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 2 06:29:28 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/1999/9902/9902toc.htm; http://www.ddj.com/ftp/1999/1999_02/j2d.txt", abstract = "The Java 2D API is a set of functions that is a much more flexible and full-featured rendering package than previous versions of the Abstract Windowing Toolkit (AWT). It provides enhanced graphics, text, and image handling, supports color definition and composition, and is extensible. Additional resources include j2d.txt (listings).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Loia:1999:EFD, author = "Vincenzo Loia and Michel Quaggetto", title = "Embed finite domain constraint programming into {Java} and some {Web}-based applications", journal = j-SPE, volume = "29", number = "4", pages = "311--339", day = "10", month = apr, year = "1999", CODEN = "SPEXBL", ISSN = "0038-0644 (print), 1097-024X (electronic)", ISSN-L = "0038-0644", bibdate = "Thu Jul 29 15:12:16 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=55001842; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=55001842&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Software---Practice and Experience", } @Book{Lunde:1999:CIP, author = "Ken Lunde", title = "{CJKV} Information Processing: Chinese, Japanese, Korean \& Vietnamese Computing", publisher = pub-ORA, address = pub-ORA:adr, pages = "1174", year = "1999", ISBN = "1-56592-224-7", ISBN-13 = "978-1-56592-224-2", LCCN = "PL1074.5 .L86 1999", bibdate = "Wed Oct 07 11:13:52 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$64.95", URL = "http://www.oreilly.com/catalog/cjkvinfo/", acknowledgement = ack-nhfb # " and " # ack-kl, tableofcontents = "Foreword xv\\ Preface xvii\\ 1. CJKV Information Processing Overview 1\\ Multiple Writing Systems 2\\ Character Set Standards 7\\ Encoding Methods 8\\ Input Methods 10\\ Typography 14\\ Basic Concepts & Terminology 14\\ 2. Writing Systems 29\\ Latin Characters & Transliteration 30\\ Zhuyin 43\\ Kana 44\\ Hangul 50\\ Chinese Characters 52\\ Non-Chinese Chinese Characters 64\\ 3. Character Set Standards 69\\ Non-Coded Character Set Standards 70\\ Coded Character Set Standards 74\\ International Character Set Standards 124\\ Character Set Standard Oddities 134\\ Non-Coded Versus Coded Character Sets 136\\ Information Interchange Versus Professional Publishing 138\\ Advice to Developers 140\\ 4. Encoding Methods 143\\ Locale-Independent Encoding Methods 145\\ Locale-Specific Encoding Methods 176\\ Comparing CJKV Encoding Methods 194\\ International Encoding Methods 195\\ Charset Designations 206\\ Code Pages 209\\ Code Conversion 213\\ Repairing Unreadable CJKV Text 219\\ Beware of Little & Big Endian Issues 224\\ Advice to Developers 224\\ 5. Input Methods 227\\ Transliteration Techniques 229\\ Input Techniques 235\\ User Interface Concerns 249\\ Keyboard Arrays 249\\ Other Input Hardware 272\\ Input Method Software 273\\ 6. Font Formats 281\\ Typeface Design Issues 282\\ Bitmapped Fonts 283\\ Outline Fonts 289\\ Ruby Fonts 322\\ Host-Based Versus Printer-Resident Fonts 323\\ Creating Your Own Fonts 335\\ External Character Handling 339\\ Advice to Developers 350\\ 7. Typography 351\\ Rules, Rules, Rules... 352\\ Typographic Units & Measurements 353\\ Horizontal & Vertical Layout 357\\ Line Breaking & Word Wrapping 368\\ Character Spanning 372\\ Alternate Metrics 373\\ Kerning 380\\ Line Length Issues 381\\ Multilingual Text 383\\ Glyph Substitution 387\\ Annotations 389\\ Typographic Software 394\\ 8. Output Methods 405\\ Where Can Fonts Live? 406\\ Printer Output 407\\ PostScript CJKV Printers 407\\ Computer Monitor Output 412\\ Other Printing Methods 416\\ The Role of Printer Drivers 417\\ Output Tips & Tricks 420\\ Advice to Developers 422\\ 9. Information Processing Techniques 425\\ Language, Country & Script Codes 426\\ Programming Languages 429\\ Code Conversion Algorithms 433\\ Java Programming Examples 442\\ Miscellaneous Algorithms 446\\ Byte Versus Character Handling 452\\ Character Sorting 460\\ Natural Language Processing 462\\ Regular Expressions 464\\ Search Engines 467\\ Code Processing Tools 467\\ 10. Operating Systems, Text Editors & Word Processors 475\\ Viewing CJKV Text on Non-CJKV Systems 477\\ Operating Systems 477\\ Hybrid Environments 489\\ Text Editors 492\\ Word Processors 499\\ Dedicated Word Processors 503\\ 11. Dictionaries & Dictionary Software 505\\ Chinese Character Dictionary Indexes 505\\ Character Dictionaries 513\\ Other Useful Dictionaries 518\\ Dictionary Hardware 519\\ Dictionary Software 520\\ Machine Translation Software 528\\ Machine Translation Services 529\\ Learning Aids 530\\ 12. The Internet 533\\ Email 534\\ News 539\\ FTP & Telnet 540\\ Network Domains 542\\ Getting Connected 545\\ Internet Software 545\\ 13. The World Wide Web 553\\ Content Versus Presentation 553\\ Displaying Web Documents 556\\ Authoring HTML Documents 557\\ Authoring XML Documents 561\\ Authoring PDF Documents 562\\ Character References 564\\ CGI Programming Examples 565\\ Shall We Surf? 568\\ A. Code Conversion Tables 569\\ B. Notation Conversion Table 573\\ C. Vendor Character Set Standards 577\\ Chinese Vendor Character Sets -- China 578\\ Chinese Vendor Character Sets -- Taiwan 582\\ Chinese Vendor Character Sets -- Hong Kong 587\\ Japanese Vendor Character Sets 593\\ Korean Vendor Character Sets 623\\ D. Vendor Encoding Methods 635\\ Brief Overview of IBM Encodings 636\\ Chinese Vendor Encodings -- China 637\\ Chinese Vendor Encodings -- Taiwan 640\\ Chinese Vendor Encodings -- Hong Kong 643\\ Japanese Vendor Encodings 644\\ Korean Vendor Encodings 665\\ E. GB 2312-80 Table 671\\ F. GB/T 12345-90 Table 687\\ G. CNS 11643-1992 Table 703\\ CNS 11643-1992 Plane 1 703\\ CNS 11643-1992 Plane 2 715\\ CNS 11643-1992 Plane 3 729\\ CNS 11643-1992 Plane 4 741\\ CNS 11643-1992 Plane 5 755\\ CNS 11643-1992 Plane 6 771\\ CNS 11643-1992 Plane 7 783\\ CNS 11643-1986 Plane 15 795\\ H. Big Five Table 809\\ Big Five Level 1 809\\ Big Five Level 2 823\\ I. Hong Kong GCCS Table 841\\ J. JIS X 0208:1997 Table 851\\ K. JIS X 0212-1990 Table 865\\ L. KS X 1001:1992 Table 877\\ M. KS X 1002:1991 Hanja Table 893\\ N. Hangul Reading Table 899\\ O. TCVN 6056:1995 Table 913\\ P. Code Table Indexes 921\\ GB 2312-80 Level 1 Reading Index 921\\ GB 2312-80 Level 2 Radical Index 922\\ Big Five & CNS 11643-1992 Stroke Index 924\\ JIS X 0208:1997 Level 1 Reading Index 926\\ JIS Radical Index 926\\ KS Hanja Reading Index 933\\ Q. Character Lists & Mapping Tables 935\\ GB 2312-80 Versus GB/T 12345-90 935\\ CNS 11643-1986 Versus CNS 11643-1992 954\\ JIS C 6226-1978 Versus JIS X 0208-1983 956\\ JIS X 0208-1983 Versus JIS X 0208-1990 960\\ JIS X 0212-1990 Versus JIS C 6226-1978 962\\ Joyo Kanji 963\\ IBM Selected Kanji & Non-Kanji 967\\ Duplicate Hanja in KS X 1001:1992 971\\ R. Chinese Character Lists 979\\ Hanzi Lists From China 979\\ Hanzi Lists From Taiwan 983\\ Kanji Lists From Japan 994\\ Hanja Lists From Korea 999\\ S. Single-Byte Code Tables 1003\\ Non-CJKV Code Tables 1003\\ Chinese Code Tables 1005\\ Japanese Code Tables 1006\\ Korean Code Tables 1008\\ TCVN-Roman Code Tables 1009\\ T. Software & Document Sources 1015\\ Anonymous FTP 1015\\ Searching for Files 1016\\ Useful URLs 1016\\ Commercial Sources 1017\\ U. Mailing Lists 1035\\ General Mailing Lists 1035\\ Chinese Mailing Lists 1040\\ Japanese Mailing Lists 1040\\ Korean Mailing Lists 1045\\ V. Professional Organizations 1047\\ Oriental Language Computer Society 1047\\ International Macintosh Users Group 1047\\ The Localisation Industry Standards Association 1048\\ The Unicode Consortium 1048\\ W. Perl Code Examples 1049\\ Japanese Code Conversion 1049\\ Korean Code Conversion 1054\\ TRON Code Conversion 1056\\ Unicode Code Conversion 1058\\ Encoding Detection 1059\\ Repairing ISO-2022-JP Encoding 1061\\ Other Useful Transformations 1062\\ CJKV Encoding Templates 1062\\ Multiple-Byte Anchoring 1064\\ Multiple-Byte Processing 1065\\ X. Glossary 1067\\ Bibliography 1095\\ Index 1113", } @Article{Lutz:1999:NBCa, author = "Michael J. Lutz", title = "New Books: Case-Driven Object Modelling with {UML}; Virtual-Human Integration; Genetic Programming; {Java} Image Processing; {WAP} Programming", journal = j-COMPUTER, volume = "32", number = "7", pages = "99--99", month = jul, year = "1999", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Sat Jul 10 07:05:08 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes review of \cite{Lyon:1999:IPJ}.", URL = "http://dlib.computer.org/co/books/co1999/pdf/r7099.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Lutz:1999:NBCb, author = "Michael J. Lutz", title = "New Books: Creating a Virtual Window to the World; Optical Networks in Layered Multiwavelength; Automated Software Testing; Software Improvement Through Refactoring; Getting a Feel for {Java}", journal = j-COMPUTER, volume = "32", number = "10", pages = "116--116", month = oct, year = "1999", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Sat Mar 11 09:52:57 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes review of \cite{Sun:1999:JLF}.", URL = "http://dlib.computer.org/co/books/co1999/pdf/rx116.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Lutz:1999:NBF, author = "Michael J. Lutz", title = "New Books: Folding All Things Virtual into Urban Life; Performance Modeling in Network Design; Practical Automated Software Testing; {Java} Patterns; Testing Software Step by Step; Working with {UNIX} Shells", journal = j-COMPUTER, volume = "32", number = "11", pages = "119--119", month = nov, year = "1999", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Sat Mar 11 09:52:58 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes review of \cite{Langr:1999:EJS}.", URL = "http://dlib.computer.org/co/books/co1999/pdf/ry119.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Lutz:1999:NBY, author = "Michael J. Lutz", title = "New Books: Are You Listening, {Dave}?; Cultural Team Chemistry; {Java} Image Processing; {Y2K} Preparation; Making Distributed Objects Work for {COM-CORBA}; Fuzzy System Use", journal = j-COMPUTER, volume = "32", number = "3", pages = "103--103", month = mar, year = "1999", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Sat Mar 6 09:04:10 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1999/pdf/r3103.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Book{Lyon:1999:IPJ, author = "Douglas A. Lyon", title = "Image processing in {Java}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "450", year = "1999", ISBN = "0-13-974577-7", ISBN-13 = "978-0-13-974577-5", LCCN = "QA76.73.J38L94 1999", bibdate = "Wed Jun 23 18:34:21 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", URL = "http://www.phptr.com/ptrbooks/ptr_0139745777.html", acknowledgement = ack-nhfb, } @Article{Maassen:1999:EIJ, author = "Jason Maassen and Rob van Nieuwpoort and Ronald Veldema and Henri E. Bal and Aske Plaat", title = "An efficient implementation of {Java}'s remote method invocation", journal = j-SIGPLAN, volume = "34", number = "8", pages = "173--182", month = aug, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:18:06 MST 2003", bibsource = "http://portal.acm.org/; http://www.acm.org/pubs/contents/proceedings/ppopp/301104/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/citations/proceedings/ppopp/301104/p173-maassen/", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Machover:1999:NPHa, author = "Carl Machover and John Dill", title = "New Products: Hardware: Peripherals: {Mita} Offers Desktop Color Laser Printer; {Proview} Announces Low Priced Monitors; Digital Flat-Panel Solution Pack Shipped; Compact Projector from {Dukane}. Systems: {PC} Real-Time {$3$D} Simulation Introduced. Boards: {Mitsubishi vg500} Does Volume Rendering. Software: {Web} Tools: {$3$DML} Released by {Flatland}; {Sun} Delivers {Java 2}; Doc-to-Net Introduced by {Skyline Tools}; Software Makes {Web} Photo Editing Easy; {JustEdit} Speeds up {Web} Edits. Authoring Tools: {Director 7} and {Dreamweaver} Introduced; {Famous} Offers Animation Solutions. {CAD\slash CAM}: {$3$D BuilderPro} Shipped; {Toolbox\slash SM} Available from {Cimlogic}; {AutoPlant 97 V1.10} Plant Design Tool; Productivity Booster for {DataCad}; Enhancements to {dv\slash MockUp} Functionality. Visualization Tools: {TerraVista Version 2.0} Announced. Color: Color Matching System by {Color Solutions}", journal = j-IEEE-CGA, volume = "19", number = "2", pages = "96--99", month = mar # "\slash " # apr, year = "1999", CODEN = "ICGADZ", ISSN = "0272-1716 (print), 1558-1756 (electronic)", ISSN-L = "0272-1716", bibdate = "Mon Apr 12 07:01:44 MDT 1999", bibsource = "http://computer.org/cga/cg1999/g2toc.htm; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/cg/books/cg1999/pdf/g2096.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Computer Graphics and Applications", } @Article{Magnaghi:1999:IPA, author = "A. Magnaghi and S. Sakai and H. Tanaka", title = "Inter-procedural Analysis for Parallelization of {Java} Programs", journal = j-LECT-NOTES-COMP-SCI, volume = "1557", pages = "594--595", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Sep 14 06:09:05 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", keywords = "image processing; multimedia; parallel computation; parallel computing; parallel numerics; ParNum", } @Article{Marais:1999:AWW, author = "Hannes Marais and Tom Rodeheffer", title = "Automating The {Web} With {Webl}", journal = j-DDJ, volume = "24", number = "1", pages = "20--23, 26--27", month = jan, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Dec 3 09:32:09 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ddj/ftp/1999/1999_01/webl.txt", abstract = "WebL, a freely available scripting language written in Java, is ideal for prototyping web applications. Hannes and Tom describe WebL, then show how you can use it by implementing a meta-search engine that combines search results from the AltaVista and HotBot public-search services. Additional resources include webl.txt (listings).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Maremaa:1999:QJD, author = "Tom Maremaa and William Stewart", title = "{QuickTime} for {Java}: {A} Developer Reference", publisher = pub-MORGAN-KAUFMANN, address = pub-MORGAN-KAUFMANN:adr, pages = "xviii + 655", year = "1999", ISBN = "0-12-305440-0", ISBN-13 = "978-0-12-305440-1", LCCN = "QA76.73.J38 M348 1999; TR899 .M37 1999", bibdate = "Fri Jan 19 06:05:49 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.95", URL = "http://www.mkp.com/books_catalog/catalog.asp?ISBN=0-12305-440-0", acknowledgement = ack-nhfb, } @Article{Marsic:1999:DFM, author = "Ivan Marsic", title = "{DISCIPLE}: a framework for multimodal collaboration in heterogeneous environments", journal = j-COMP-SURV, volume = "31", number = "2es", pages = "??--??", month = jun, year = "1999", CODEN = "CMSVAN", ISSN = "0360-0300 (print), 1557-7341 (electronic)", ISSN-L = "0360-0300", bibdate = "Tue Apr 4 18:43:23 MDT 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/articles/journals/surveys/1999-31-2es/a4-marsic/a4-marsic.pdf; http://www.acm.org/pubs/citations/journals/surveys/1999-31-2es/a4-marsic/; http://www.acm.org/pubs/citations/journals/surveys/1999-31-2es/a4-marsic/#abstract; http://www.acm.org/pubs/citations/journals/surveys/1999-31-2es/a4-marsic/#indterms", abstract = "This paper presents a framework for sharing JavaBeans applications in real-time synchronous collaboration. A generic collaboration bus provides a plug-and-play environment that enables collaboration with applications that may or may not be collaboration aware. Research on knowledge-based quality-of-service management and multimodel human/machine interface is described.", acknowledgement = ack-nhfb, fjournal = "ACM Computing Surveys", keywords = "CSCW frameworks; group communication; JavaBeans; multimodal interface; shared electronic workspaces; synchronous groupware", subject = "Information Systems --- Information Interfaces and Presentation --- User Interfaces (H.5.2); Information Systems --- Information Interfaces and Presentation --- Group and Organization Interfaces (H.5.3); Software --- Software Engineering --- Design Tools and Techniques (D.2.2); Computer Systems Organization --- Computer-Communication Networks --- Distributed Systems (C.2.4); General Terms: Design, Human Factors", } @Article{Martin:1999:JDI, author = "David H. Martin and Johnny Martin", title = "{Java} and Digital Images", journal = j-DDJ, volume = "24", number = "5", pages = "72, 74--76, 78--79", month = may, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Apr 30 10:07:03 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1999/1999_05/snapshot.txt; http://www.ddj.com/ftp/1999/1999_05/snapshot.zip", abstract = "Capturing, storing, and retrieving images is an often-overlooked feature that many applications could benefit from. David and Johnny describe and quot;Grabber for Java, and quot; an Api that encapsulates the functionality necessary for video capture. Additional resources include snapshot.txt (listings) and snapshot.zip (source code). Embedded Systems", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Maruyama:1999:XJD, author = "Hiroshi Maruyama and Kento Tamura and Naohiko Uramoto", title = "{XML} and {Java}: developing {Web} applications", publisher = pub-AW, address = pub-AW:adr, pages = "368", year = "1999", ISBN = "0-201-48543-5, 0-201-61611-4 (CD-ROM)", ISBN-13 = "978-0-201-48543-1, 978-0-201-61611-8 (CD-ROM)", LCCN = "QA76.76.H94M28 1999", bibdate = "Tue May 11 07:32:49 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.95", acknowledgement = ack-nhfb, } @Article{Mateosian:1999:MRP, author = "Richard Mateosian", title = "Micro Review: Pot Pourri: {Jini}, {Java}, {WinWriters}, {Adobe Acrobat}", journal = j-IEEE-MICRO, volume = "19", number = "5", pages = "10--12", month = sep # "\slash " # oct, year = "1999", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/MM.1999.798103", ISSN = "0272-1732 (print), 1937-4143 (electronic)", ISSN-L = "0272-1732", bibdate = "Mon Apr 24 18:04:34 MDT 2000", bibsource = "http://www.computer.org/micro/mi1999/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/mi/books/mi1999/pdf/m5010.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Micro", } @Book{McCarty:1999:JDO, author = "Bill McCarty and Luke Cassady-Dorion", title = "{Java} Distributed Objects", publisher = pub-MACMILLAN-COMPUTER, address = pub-MACMILLAN-COMPUTER:adr, pages = "xvii + 936", year = "1999", ISBN = "0-672-31537-8", ISBN-13 = "978-0-672-31537-4", LCCN = "QA76.73.J38M3528 1999", bibdate = "Thu Feb 04 06:22:40 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www1.clbooks.com/asp/BookInfo/BookInfo.asp?theisbn=0672315378", price = "US\$49.99", acknowledgement = ack-nhfb, } @Article{McCluskey:1999:JPa, author = "Glen McCluskey", title = "{Java} Performance", journal = j-LOGIN, volume = "24", number = "2", pages = "??--??", month = apr, year = "1999", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:47 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/contents/contents.apr99.html", URL = "http://www.usenix.org/publications/login/1999-4/java_perf.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{McCluskey:1999:JPb, author = "Glen McCluskey", title = "{Java} Performance", journal = j-LOGIN, volume = "24", number = "4", pages = "??--??", month = aug, year = "1999", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:51 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/1999-8/index.html", URL = "http://www.usenix.org/publications/login/1999-8/features/performance.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{McCluskey:1999:JPc, author = "Glen McCluskey", title = "{Java} Performance", journal = j-LOGIN, volume = "24", number = "6", pages = "??--??", month = dec, year = "1999", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:59 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/1999-12/index.html", URL = "http://www.usenix.org/publications/login/1999-12/features/performance.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{McCluskey:1999:JPM, author = "Glen McCluskey", title = "{Java} Performance: Memory Fragmentation", journal = j-LOGIN, volume = "24", number = "1", pages = "??--??", month = feb, year = "1999", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:45 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/contents/contents.feb99.html", URL = "http://www.usenix.org/publications/login/1999-2/java_perf.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{McDonald:1999:UJS, author = "Bruce McDonald", title = "Using {Java} Servlets with Database Connectivity", journal = j-LINUX-J, volume = "67", pages = "??--??", month = nov, year = "1999", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Thu Sep 21 14:31:45 MDT 2000", bibsource = "http://noframes.linuxjournal.com/lj-issues/issue67/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://noframes.linuxjournal.com/lj-issues/issue67/3243.html", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Book{McGraw:1999:SJG, author = "Gary McGraw and Edward W. Felten", title = "Securing {Java}: Getting Down to Business with Mobile Code", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xii + 324", year = "1999", ISBN = "0-471-31952-X", ISBN-13 = "978-0-471-31952-8", LCCN = "QA76.73.J38M354 1999", bibdate = "Sat Oct 09 08:13:10 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/compbooks/", price = "US\$34.99", acknowledgement = ack-nhfb, } @Article{Meehan:1999:CLF, author = "Gary Meehan and Mike Joy", title = "Compiling lazy functional programs to {Java} bytecode", journal = j-SPE, volume = "29", number = "7", pages = "617--645", month = jun, year = "1999", CODEN = "SPEXBL", ISSN = "0038-0644 (print), 1097-024X (electronic)", ISSN-L = "0038-0644", bibdate = "Thu Jul 29 15:12:22 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=62003575; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=62003575&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Software---Practice and Experience", } @InProceedings{Mills:1999:ANS, author = "Kevin L. Mills", title = "{AirJava}: Networking for Smart Spaces", crossref = "USENIX:1999:PWE", pages = "??--??", year = "1999", bibdate = "Fri Oct 18 07:33:17 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/es99/mills.html", acknowledgement = ack-nhfb, } @Article{Mizuno:1999:SAD, author = "Masaaki Mizuno", title = "A structured approach for developing concurrent programs in {Java}", journal = j-INFO-PROC-LETT, volume = "69", number = "5", pages = "233--238", day = "12", month = mar, year = "1999", CODEN = "IFPLAT", ISSN = "0020-0190 (print), 1872-6119 (electronic)", ISSN-L = "0020-0190", bibdate = "Sat Jul 17 18:05:47 MDT 1999", bibsource = "http://www.elsevier.com:80/inca/publications/store/5/0/5/6/1/2/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Information Processing Letters", } @Book{Moncur:1999:WPJ, author = "Michael Moncur", title = "{Web} Programming with {JavaScript}, with {CD ROM}", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "????", month = jan, year = "1999", ISBN = "1-57521-122-X (softcover)", ISBN-13 = "978-1-57521-122-0 (softcover)", LCCN = "????", bibdate = "Sat Sep 13 14:36:20 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99", } @Book{Monson-Haefel:1999:EJ, author = "Richard Monson-Haefel", title = "{Enterprise JavaBeans}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xvi + 317", year = "1999", ISBN = "1-56592-605-6", ISBN-13 = "978-1-56592-605-9", LCCN = "QA76.76.J38 M66 1999", bibdate = "Thu Jan 18 06:40:26 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.oreilly.com/catalog/", price = "US\$32.95", URL = "http://www.oreilly.com/catalog/entjbeans", acknowledgement = ack-nhfb, } @InProceedings{Montgomery:1999:SOS, author = "Michael Montgomery and Ksheerabdhi Krishna", title = "Secure Object Sharing in {Java Card}", crossref = "USENIX:1999:PUWa", pages = "??--??", year = "1999", bibdate = "Fri Oct 18 07:09:30 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/smartcard99/montgomery.html", acknowledgement = ack-nhfb, } @InProceedings{Moreira:1999:PDM, author = "Jose Moreira and Sam Midkiff and Manish Gupta and Rick Lawrence", title = "Parallel Data Mining using the Array Package for {Java}", crossref = "ACM:1999:SPO", pages = "??--??", year = "1999", bibdate = "Thu Feb 24 09:02:57 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sc99.org/techpapers/", acknowledgement = ack-nhfb, } @Article{Muller:1999:HHA, author = "Gilles Muller and Ulrik Pagh Schultz", title = "{Harissa}: {A} Hybrid Approach to {Java} Execution", journal = j-IEEE-SOFTWARE, volume = "16", number = "2", pages = "44--51", month = mar # "\slash " # apr, year = "1999", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/52.754052", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Thu Apr 1 16:52:57 MST 1999", bibsource = "http://computer.org/software/so1999/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://computer.org/software/so1999/s2044abs.htm; http://dlib.computer.org/so/books/so1999/pdf/s2044.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Software", } @Article{Murphy:1999:JT, author = "Timothy Murphy", title = "{Java} and {{\TeX}}", journal = j-TUGboat, volume = "20", number = "3", pages = "307--312", month = sep, year = "1999", ISSN = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, } @Book{Murray:1999:JHU, author = "William H. Murray and Chris H. Pappas", title = "{Javascript} and {HTML 4.0} user's resource", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxi + 521", year = "1999", ISBN = "0-13-977422-X", ISBN-13 = "978-0-13-977422-5", LCCN = "QA76.73.J39M87 1998", bibdate = "Fri Jan 22 05:56:08 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.phptr.com/ptrbooks/ptr_013977422x.html", acknowledgement = ack-nhfb, keywords = "HTML (Document markup language); JavaScript (Computer program language)", publishersnote = "With JavaScript and HTML 4.0, you have extraordinary power at your fingertips --- even if you're not a programmer. In this book, best-selling programming authors William Murray and Chris Pappas help you leverage that power to build Web sites that deliver state-of-the-art interactivity.", } @InProceedings{Myers:1999:JPM, author = "Andrew C. Myers", title = "{JFlow}: practical mostly-static information flow control", crossref = "ACM:1999:PPA", pages = "228--241", year = "1999", bibdate = "Mon May 3 12:58:58 MDT 1999", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/plan/292540/p228-myers/", acknowledgement = ack-nhfb, keywords = "reliability; security", subject = "{\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Java. {\bf D.4.6} Software, OPERATING SYSTEMS, Security and Protection. {\bf K.4.1} Computing Milieux, COMPUTERS AND SOCIETY, Public Policy Issues, Privacy. {\bf F.4.1} Theory of Computation, MATHEMATICAL LOGIC AND FORMAL LANGUAGES, Mathematical Logic. {\bf D.3.4} Software, PROGRAMMING LANGUAGES, Processors, Compilers.", } @Article{Neal:1999:LSL, author = "John Neal and Thiadmer Riemersma and Jeff Genender and Torpum Jannak and Richard A. Clarke and William C. Brown and Jeffrey Simmers and Kemal Gencay", title = "Letters: The {Small} Language; {Java 2} Graphics; Cross-Platform Independence; Version Control; Median Filters; {Open Source} in {Turkey}", journal = j-DDJ, volume = "24", number = "12", pages = "10, 12", month = dec, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Nov 9 06:25:06 MST 2000", bibsource = "http://www.ddj.com/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Neou:1999:HCJ, author = "Vivian Neou", title = "{HTML 4.0 CD} with {JavaScript} for {Windows} 95, 98 and {NT}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xi + 619", year = "1999", ISBN = "0-13-095783-6", ISBN-13 = "978-0-13-095783-2", LCCN = "QA76.76.H94N435 1999", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "ftp://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, annote = "System requirements: Windows 95 or NT, running on a Pentium-class processor with 64 Mb of memory.", keywords = "HTML (Document markup language); JavaScript (Computer program language); Microsoft Windows (Computer file)", } @Book{Oaks:1999:JT, author = "Scott Oaks and Henry Wong", title = "{Java} Threads", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xiii + 319", year = "1999", ISBN = "1-56592-418-5", ISBN-13 = "978-1-56592-418-5", LCCN = "QA76.73.J38 O25 1999", bibdate = "Tue Jan 26 18:25:01 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$32.95", acknowledgement = ack-nhfb, keywords = "Java (computer program language); technology -- computers and computer technology", } @InProceedings{OCallahan:1999:SCT, author = "Robert O'Callahan", title = "A simple, comprehensive type system for {Java} bytecode subroutines", crossref = "ACM:1999:PPA", pages = "70--78", year = "1999", bibdate = "Mon May 3 12:58:58 MDT 1999", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/plan/292540/p70-o_callahn/", acknowledgement = ack-nhfb, subject = "{\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Java. {\bf F.4.1} Theory of Computation, MATHEMATICAL LOGIC AND FORMAL LANGUAGES, Mathematical Logic. {\bf D.3.3} Software, PROGRAMMING LANGUAGES, Language Constructs and Features, Polymorphism. {\bf F.3.2} Theory of Computation, LOGICS AND MEANINGS OF PROGRAMS, Semantics of Programming Languages. {\bf D.3.1} Software, PROGRAMMING LANGUAGES, Formal Definitions and Theory, Semantics.", } @InProceedings{Oestreicher:1999:OLJ, author = "Marcus Oestreicher and Ksheerabdhi Krishna", title = "Object Lifetimes in {Java Card}", crossref = "USENIX:1999:PUWa", pages = "??--??", year = "1999", bibdate = "Fri Oct 18 07:09:30 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/smartcard99/oestreicher.html", acknowledgement = ack-nhfb, } @Article{Ogawa:1999:DPJ, author = "Arthur Ogawa", title = "Database publishing with {Java} and {{\TeX}}", journal = j-TUGboat, volume = "20", number = "3", pages = "231--231", month = sep, year = "1999", ISSN = "0896-3207", bibdate = "Fri Jul 13 10:24:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/index-table-t.html#tugboat; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/tugboat.bib", acknowledgement = ack-bnb # " and " # ack-nhfb, } @Book{Orfali:1999:CSP, author = "Robert Orfali and Dan Harkey", title = "Client\slash Server Programming with {JavaBeans}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "????", month = jan, year = "1999", ISBN = "0-471-18931-6", ISBN-13 = "978-0-471-18931-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$45", acknowledgement = ack-nhfb, url-publisher = "http://www.wiley.com/", } @Article{Ortiz:1999:ITB, author = "Sixto {Ortiz Jr.}", title = "Industry Trends: The Battle over Real-Time {Java}", journal = j-COMPUTER, volume = "32", number = "6", pages = "13--15", month = jun, year = "1999", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", ISSN-L = "0018-9162", bibdate = "Thu Jun 3 18:52:18 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/co/books/co1999/pdf/r6013.pdf", acknowledgement = ack-nhfb, fjournal = "Computer", } @Article{Pandey:1999:PFG, author = "R. Pandey and B. Hashii", title = "Providing Fine-Grained Access Control for {Java} Programs", journal = j-LECT-NOTES-COMP-SCI, volume = "1628", pages = "449--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999b.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @InProceedings{Parson:1999:UJR, author = "Dale Parson", title = "Using {Java} Reflection to Automate Extension Language Parsing", crossref = "USENIX:1999:PCD", pages = "??--??", year = "1999", bibdate = "Fri Oct 18 06:52:22 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/dsl99/parson.html", acknowledgement = ack-nhfb, } @Article{Paternostro:1999:JSC, author = "Pat Paternostro", title = "A {Java} Skeleton Code Generator", journal = j-CCCUJ, volume = "17", number = "7", pages = "34, 36--38", month = jul, year = "1999", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:21 MDT 2002", bibsource = "http://www.cuj.com/articles/1999/9907/9907toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Maybe Java isn't as portable as advertised, but this handy generator makes it more so.", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Perelman-Hall:1999:JLC, author = "David K. Perelman-Hall", title = "{Java} and Lightweight Components", journal = j-DDJ, volume = "24", number = "2", pages = "22--24, 26--28", month = feb, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 2 06:29:28 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/1999/9902/9902toc.htm; http://www.ddj.com/ftp/1999/1999_02/lightwei.txt; http://www.ddj.com/ftp/1999/1999_02/lightwei.zip", abstract = "JDK 1.1 lightweight components let you give programs exactly the same look-and-feel --- no matter which platform hosts the VM. To examine lightweight component development, David presents his dph.awt.lightweight package. Additional resources include lightwei.txt (listings) and lightwei.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Pew:1999:IJ, author = "John Pew and Stephen Pew", title = "Instant {Java 1.2}", publisher = pub-PH, address = pub-PH:adr, pages = "xxiv + 275", year = "1999", ISBN = "0-13-010533-3", ISBN-13 = "978-0-13-010533-2", LCCN = "QA76.73.J38 P48 1999", bibdate = "Sat Mar 11 15:58:07 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www1.clbooks.com/asp/BookInfo/BookInfo.asp?theisbn=0130105333", price = "US\$34.99", acknowledgement = ack-nhfb, } @Article{Phipps:1999:COB, author = "Geoffrey Phipps", title = "Comparing observed bug and productivity rates for {Java} and {C++}", journal = j-SPE, volume = "29", number = "4", pages = "345--358", day = "10", month = apr, year = "1999", CODEN = "SPEXBL", ISSN = "0038-0644 (print), 1097-024X (electronic)", ISSN-L = "0038-0644", bibdate = "Thu Jul 29 15:12:16 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=55001844; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=55001844&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Software---Practice and Experience", } @Article{Pinho:1999:AAA, author = "Lu{\'\i}s Miguel Pinho and Francisco Vasques", title = "To {Ada} or not to {Ada}: {Adaing} vs. {Javaing} in real-time systems", journal = j-SIGADA-LETTERS, volume = "19", number = "4", pages = "37--43", month = dec, year = "1999", CODEN = "AALEE5", ISSN = "0736-721X", ISSN-L = "0736-721X", bibdate = "Sat Aug 9 09:06:07 MDT 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGADA Ada Letters", } @Book{Pistoia:1999:JNS, author = "Marco Pistoia", title = "{Java 2} Network Security", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxi + 713", year = "1999", ISBN = "0-13-015592-6", ISBN-13 = "978-0-13-015592-4", LCCN = "QA76.9.A25 J38 1999", bibdate = "Thu Jan 18 06:06:25 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", URL = "http://www.phptr.com/ptrbooks/ptr_0130155926.html", acknowledgement = ack-nhfb, } @Article{Pitt:1999:JQC, author = "W. David Pitt", title = "{Java Q\&A}: Can {Java} Handle Exception Handling?", journal = j-DDJ, volume = "24", number = "8", pages = "103, 106--108", month = aug, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Jul 16 19:10:34 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1999/1999_08/jqa899.txt; http://www.ddj.com/ftp/1999/1999_08/jqa899.zip", abstract = "Can Java handle exception handling? You bet, and David shows you how in this month's column. Additional resources include jqa899.txt (listings) and jqa899.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Poetzsch-Heffter:1999:PLS, author = "A. Poetzsch-Heffter and P. Mueller", title = "A Programming Logic for Sequential {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1576", pages = "162--176", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Sep 14 06:09:05 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", keywords = "ESOP; ETAPS; programming; software", } @Book{Potts:1999:WGJ, author = "Steve Potts", title = "The {Waite Group's} {Java} 1.2 how-to", publisher = pub-WAITE-GROUP, address = pub-WAITE-GROUP:adr, year = "1999", ISBN = "1-57169-157-X", ISBN-13 = "978-1-57169-157-6", LCCN = "QA76.73.J38 P69 1999", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/waite/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", acknowledgement = ack-nhfb, xxauthor = "Madhu Siddalingaiah", xxtitle = "{Java} 1.2 How-To", } @Article{Prechelt:1999:TOC, author = "Lutz Prechelt", title = "Technical opinion: comparing {Java} vs. {C\slash C++} efficiency differences to interpersonal differences", journal = j-CACM, volume = "42", number = "10", pages = "109--112", month = oct, year = "1999", CODEN = "CACMA2", ISSN = "0001-0782 (print), 1557-7317 (electronic)", ISSN-L = "0001-0782", bibdate = "Thu Oct 7 07:40:31 MDT 1999", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/journals/cacm/1999-42-10/p109-prechelt/", acknowledgement = ack-nhfb, fjournal = "Communications of the ACM", } @Unpublished{Proebsting:1999:JJB, author = "Todd Proebsting and Gregg Townsend and Denise Todd and Bob Alexander", title = "{Jcon}: {A} {Java}-Based {Icon} Implementation", year = "1999", bibdate = "Fri Jul 30 07:03:44 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Version 2 of Jcon is an essentially complete implementation of Icon, including graphics and large integers. A few minor features are missing --- mostly things like chdir() that cannot be done in Java.", URL = "http://www.cs.arizona.edu/icon/jcon/", acknowledgement = ack-nhfb, } @Article{Pugh:1999:CJC, author = "William Pugh", title = "Compressing {Java} Class Files", journal = j-SIGPLAN, volume = "34", number = "5", pages = "247--258", month = may, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:18:03 MST 2003", bibsource = "http://portal.acm.org/; http://www.acm.org/pubs/contents/proceedings/pldi/301122/index.html; http://www.acm.org/pubs/contents/proceedings/pldi/301618/index.html; http://www.cs.rutgers.edu/pldi99/program.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "See PLDI'99 proceedings \cite{ACM:1999:PASa}.", URL = "http://www.acm.org:80/pubs/citations/proceedings/pldi/301122/p247-pugh/", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Article{Pusch:1999:PSJ, author = "C. Pusch", title = "Proving the Soundness of a {Java} Bytecode Verifier Specification in {Isabelle\slash HOL}", journal = j-LECT-NOTES-COMP-SCI, volume = "1579", pages = "89--103", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Sep 14 06:09:05 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", keywords = "algorithms; ETAPS; TACAS; tools", } @Article{Qian:1999:FSJ, author = "Z. Qian", title = "A Formal Specification of {Java[TM]} Virtual Machine Instructions for Objects, Methods and Subroutines", journal = j-LECT-NOTES-COMP-SCI, volume = "1523", pages = "271--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Rangaraajan:1999:JQD, author = "Krishnan Rangaraajan", title = "{Java Q\&A}: Does {Java} Support Design by Contract?", journal = j-DDJ, volume = "24", number = "11", pages = "113--114, 116", month = nov, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Nov 9 06:25:05 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1999/1999_11/jqa1199.txt", abstract = "Does Java support Design by Contract? Not directly, but as Krishnan shows here, support is still possible. Additional resources include jqa1199.txt (listings).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Rangaraajan:1999:JQH, author = "Krishnan Rangaraajan", title = "{Java Q and A}: How Can {I} Test {Java} Classes?", journal = j-DDJ, volume = "24", number = "7", pages = "107--109", month = jul, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Jun 2 12:37:25 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1999/1999_07/jqa799.txt; http://www.ddj.com/ftp/1999/1999_07/jqa799.zip", abstract = "There are a number of ways to test Java classes. Our author examines conventional techniques, then presents an alternate approach that he feels is superior in many ways. Additional resources include jqa799.txt (listings) and jqa799.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Rao:1999:UJ, author = "Prithvi Rao", title = "Using {Java}", journal = j-LOGIN, volume = "24", number = "6", pages = "??--??", month = dec, year = "1999", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:59 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/1999-12/index.html", URL = "http://www.usenix.org/publications/java/usingjava19.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{Rao:1999:UJA, author = "Prithvi Rao", title = "Using {Java}: Applets and Animation", journal = j-LOGIN, volume = "24", number = "2", pages = "??--??", month = apr, year = "1999", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:47 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/contents/contents.apr99.html", URL = "http://www.usenix.org/publications/java/usingjava16.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{Rao:1999:UJI, author = "Prithvi Rao", title = "Using {Java}: Input and Output Streams", journal = j-LOGIN, volume = "24", number = "4", pages = "??--??", month = aug, year = "1999", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:51 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/1999-8/index.html", URL = "http://www.usenix.org/publications/java/usingjava18.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{Rao:1999:UJJ, author = "Prithvi Rao", title = "Using {Java}: The {Java Native Interface}", journal = j-LOGIN, volume = "24", number = "1", pages = "??--??", month = feb, year = "1999", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:45 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/contents/contents.feb99.html", URL = "http://www.usenix.org/publications/java/usingjava15.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Article{Rao:1999:UJR, author = "Prithvi Rao", title = "Using {Java}: {Remote Method Invocation}", journal = j-LOGIN, volume = "24", number = "3", pages = "??--??", month = jun, year = "1999", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:49 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.usenix.org/publications/login/1999-6/index.html", URL = "http://www.usenix.org/publications/java/usingjava17.html", acknowledgement = ack-nhfb, fjournal = ";login: the USENIX Association newsletter", } @Book{Reddy:1999:FJP, author = "Achut Reddy", title = "Fast {Java}: Performance Tuning Guide", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "????", year = "1999", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Nov 03 11:44:27 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = "SunSoft Press Java series", URL = "http://www.phptr.com/bookseri/java.html", acknowledgement = ack-nhfb, } @InProceedings{Refling:1999:HUT, author = "John Refling", title = "Hands-on universe: teaching astronomy with {Java}-based image processing tools", crossref = "ACM:1999:SPCd", pages = "58--58", year = "1999", bibdate = "Mon Oct 4 10:35:34 MDT 1999", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/citations/proceedings/graph/311625/p58-refling/", acknowledgement = ack-nhfb, } @Article{Reinke:1999:THJ, author = "C. Reinke", title = "Towards a {Haskell\slash Java} Connection", journal = j-LECT-NOTES-COMP-SCI, volume = "1595", pages = "200--215", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Sep 14 06:09:05 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", keywords = "functional languages; IFL", } @Book{Roberts:1999:CJC, author = "Simon Roberts and Philip Heller and Michael Ernest", title = "The Complete {Java 2} Certification Study Guide", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xxvi + 885", year = "1999", ISBN = "0-7821-2463-1", ISBN-13 = "978-0-7821-2463-7", LCCN = "QA76.3 .R627 1999", bibdate = "Tue Aug 31 17:45:13 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.com/", price = "US\$45", acknowledgement = ack-nhfb, url-publisher = "http://www.sybex.com/", } @Book{Roberts:1999:EJJ, author = "Spencer Roberts", title = "Essential {JTAPI}: {Java} telephony {API}: designing telecom projects with {Java}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxi + 565", year = "1999", ISBN = "0-13-080360-X", ISBN-13 = "978-0-13-080360-3", LCCN = "TK6421.R63 1999", bibdate = "Wed Jun 23 18:22:36 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$89.99", URL = "http://www.phptr.com/ptrbooks/ptr_013080360X.html", acknowledgement = ack-nhfb, keywords = "JTAPI (Java Telephony Application Programming Interface)", } @Book{Roman:1999:MEJ, author = "Ed Roman", title = "Mastering Enterprise {JavaBeans} and the {Java 2} Platform, Enterprise Edition", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxviii + 722", year = "1999", ISBN = "0-471-33229-1", ISBN-13 = "978-0-471-33229-9", LCCN = "QA76.73.J38 R66 1999", bibdate = "Sat Mar 11 15:59:05 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/compbooks", note = "Includes CD-ROM.", price = "US\$49.99", URL = "http://www.wiley.com/compbooks/", acknowledgement = ack-nhfb, } @Article{Salo:1999:OPB, author = "Timo Salo and Justin Hill and Scott Rich and Chuck Bridgham and Daniel Berg", title = "Object Persistence: Beyond Serialization", journal = j-DDJ, volume = "24", number = "5", pages = "19, 22, 24--27, 30--33", month = may, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Apr 30 10:07:03 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1999/1999_05/persist.txt", abstract = "Our authors describe techniques and frameworks necessary to successfully implement scalable object persistence for complex database systems. Much of the technology they examine has been incorporated in development tools ranging from {VisualAge} for Java, to EJB tools for {WebSphere}. Additional resources include persist.txt (listings).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Sander:1999:HCM, author = "Volker Sander and Dietmar Erwin and Valentina Huber", title = "High-performance computer management based on {Java}", journal = j-FUT-GEN-COMP-SYS, volume = "15", number = "3", pages = "425--??", month = "????", year = "1999", CODEN = "FGSEVI", ISSN = "0167-739X (print), 1872-7115 (electronic)", ISSN-L = "0167-739X", bibdate = "Mon Jun 21 08:03:55 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Future Generation Computer Systems", } @Article{Sander:1999:HPC, author = "Volker Sander and Dietmar Erwin and Valentina Huber", title = "High-performance computer management based on {Java}", journal = j-FUT-GEN-COMP-SYS, volume = "15", number = "3", pages = "425--432", day = "1", month = apr, year = "1999", CODEN = "FGSEVI", ISSN = "0167-739X (print), 1872-7115 (electronic)", ISSN-L = "0167-739X", bibdate = "Wed Feb 27 12:41:18 MST 2002", bibsource = "ftp://ftp.ira.uka.de/bibliography/Compiler/java.bib; ftp://ftp.ira.uka.de/bibliography/Compiler/JAVA/java.bib; http://www.elsevier.com/locate/issn/0167739X; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.elsevier.com/gej-ng/10/19/19/30/19/27/abstract.html", acknowledgement = ack-nhfb, fjournal = "Future Generation Computer Systems", } @Article{Sarmenta:1999:AFT, author = "L. F. G. Sarmenta", title = "An Adaptive, Fault-Tolerant Implementation of {BSP} for {Java}-Based Volunteer Computing Systems", journal = j-LECT-NOTES-COMP-SCI, volume = "1586", pages = "763--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Sarmenta:1999:BBS, author = "Luis F. G. Sarmenta and Satoshi Hirano", title = "{Bayanihan}: building and studying {Web}-based volunteer computing systems using {Java}", journal = j-FUT-GEN-COMP-SYS, volume = "15", number = "5--6", pages = "675--686", day = "1", month = oct, year = "1999", CODEN = "FGSEVI", ISSN = "0167-739X (print), 1872-7115 (electronic)", ISSN-L = "0167-739X", bibdate = "Wed Feb 27 12:41:19 MST 2002", bibsource = "http://www.elsevier.com/locate/issn/0167739X; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.elsevier.com/gej-ng/10/19/19/30/21/28/abstract.html", acknowledgement = ack-nhfb, fjournal = "Future Generation Computer Systems", } @Book{Saulpaugh:1999:IJ, author = "Tom Saulpaugh and Charles Mirho", title = "Inside the {JavaOS} operating system", publisher = pub-AW, address = pub-AW:adr, pages = "xix + 184", year = "1999", ISBN = "0-201-18393-5", ISBN-13 = "978-0-201-18393-1", LCCN = "QA76.76.O63S3563 1999", bibdate = "Tue May 11 07:31:29 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @Book{Savitch:1999:FCU, author = "Walter Savitch", title = "A First Course Using {Java}", publisher = pub-PH, address = pub-PH:adr, pages = "xxiv + 726", year = "1999", ISBN = "0-13-287426-1", ISBN-13 = "978-0-13-287426-7", LCCN = "A76.73.J38 S27 1998", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "????", URL = "http://www.prenhall.com/books/esm_0132874261.html", acknowledgement = ack-nhfb, } @Article{Schaps:1999:PTC, author = "Gary L. Schaps", title = "Programmer's Toolchest: Compiler Construction With {Antlr} and {Java}", journal = j-DDJ, volume = "24", number = "3", pages = "84, 86--89", month = mar, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 2 06:29:28 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/1999/9902/9902toc.htm; http://www.ddj.com/ftp/1999/1999_03/antlr.txt; http://www.ddj.com/ftp/1999/1999_03/antlr.zip", abstract = "ANTLR, short for ``Another Tool for Language Recognition'' is a language tool that gives you a framework for constructing recognizers, compilers, and translators for C, C++, and Java. Additional resources include antlr.txt (listings) and antlr.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @TechReport{Schreiner:1999:PCA, author = "Wolfgang Schreiner", title = "A Parallel Computer Algebra System Based on {Maple} and {Java}", type = "Technical report", number = "99-08", institution = "RISC-Linz, Johannes Kepler University", address = "Linz, Austria", month = mar, year = "1999", bibdate = "Wed Dec 17 18:05:19 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.risc.uni-linz.ac.at/software/distmaple/index_1.html", note = "Presented at Software for Communication Technologies: Third International Austrian-Israeli Technion Symposium with Industrial Forum, April 26--27, 1999, Hagenberg, Austria.", URL = "http://www.geocities.com/%7Etechnionges/Pages/Sympos.html; http://www.risc.uni-linz.ac.at/people/schreine/papers/swcomm99/distmaple.rtf; http://www.risc.uni-linz.ac.at/people/schreine/papers/swcomm99/swcomm99.ps.gz", acknowledgement = ack-nhfb, keywords = "Distributed Maple", } @Article{Schultz:1999:TAS, author = "U. P. Schultz and J. L. Lawall and C. Consel and G. Muller", title = "Towards Automatic Specialization of {Java} Programs", journal = j-LECT-NOTES-COMP-SCI, volume = "1628", pages = "367--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999b.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Schwartz:1999:DIB, author = "Robert Allan Schwartz", title = "Default Initialization of Built-in Types", journal = j-CCCUJ, volume = "17", number = "6", pages = "??--??", month = jun, year = "1999", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:21 MDT 2002", bibsource = "http://www.cuj.com/articles/1999/9906/9906toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Java supplies wrappers for all the built-in types. As it turns out, C++ can profit from similar wrappers.", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Sekiguchi:1999:SEJ, author = "T. Sekiguchi and H. Masuhara and A. Yonezawa", title = "A Simple Extension of {Java} Language for Controllable Transparent Migration and Its Portable Implementation", journal = j-LECT-NOTES-COMP-SCI, volume = "1594", pages = "211--226", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Sep 14 06:09:05 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", keywords = "coordination languages", } @Article{Selvakumar:1999:ATW, author = "M. Selvakumar", title = "Automated Testing for {Web} Applications", journal = j-DDJ, volume = "24", number = "5", pages = "88, 90, 92, 95--96", month = may, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Apr 30 10:07:03 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1999/1999_05/webtest.txt", abstract = "The technique for automated Web-user-interface testing presented here is based on HTML, JavaScript, and CGI, and implemented for Netscape Communicator 4.04 and Apache 1.2. Additional resources include webtest.txt (listings).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Shinsato:1999:WHP, author = "Harold Shinsato", title = "Writing High-Performance Graphical {Java} Components", journal = j-DDJ, volume = "24", number = "9", pages = "50, 52--54", month = sep, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Nov 9 06:25:04 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1999/1999_09/javacomp.txt", abstract = "Harold presents tips and tricks for writing high-performance, computationally intensive, graphical Java components. Additional resources include javacomp.txt (listings).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Southey:1999:NJA, author = "F. Southey and J. G. Linders", title = "{NOTIO} --- {A} {Java API} for Developing {CG} Tools", journal = j-LECT-NOTES-COMP-SCI, volume = "1640", pages = "262--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999b.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Sowizral:1999:PVJ, author = "Henry A. Sowizral and Michael F. Deering", title = "Projects in {VR}: The {Java 3D API} and Virtual Reality", journal = j-IEEE-CGA, volume = "19", number = "3", pages = "12--15", month = may # "\slash " # jun, year = "1999", CODEN = "ICGADZ", DOI = "http://dx.doi.org/10.1109/38.761542", ISSN = "0272-1716 (print), 1558-1756 (electronic)", ISSN-L = "0272-1716", bibdate = "Wed Apr 28 07:16:19 MDT 1999", bibsource = "http://computer.org/cga/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dlib.computer.org/cg/books/cg1999/pdf/g3012.pdf", acknowledgement = ack-nhfb, fjournal = "IEEE Computer Graphics and Applications", } @Article{Spiegel:1999:PAD, author = "A. Spiegel", title = "{Pangaea}: An Automatic Distribution Front-End for {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1586", pages = "93--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @InProceedings{Stankovic:1999:NVJ, author = "N. Stankovic and K. Zhang", title = "Native versus {Java} message passing", crossref = "Dongarra:1999:RAP", number = "1697", pages = "165--172", year = "1999", bibdate = "Thu Dec 9 06:08:35 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Stata:1999:TSJ, author = "Raymie Stata and Martin Abadi", title = "A Type System for {Java} Bytecode Subroutines", journal = j-TOPLAS, volume = "21", number = "1", pages = "90--137", month = jan, year = "1999", CODEN = "ATPSDT", ISSN = "0164-0925 (print), 1558-4593 (electronic)", ISSN-L = "0164-0925", bibdate = "Tue Sep 26 10:12:58 MDT 2000", bibsource = "http://www.acm.org/pubs/contents/journals/toplas/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/citations/journals/toplas/1999-21-1/p90-stata/", abstract = "Java is typically compiled into an intermediate language, JVML, that is interpreted by the Java Virtual Machine. Because mobile JVML code is not always trusted, a bytecode verifier enforces static constraints that prevent various dynamic errors. Given the importance of the bytecode verifier for security, its current descriptions are inadequate. This article proposes using typing rules to describe the bytecode verifier because they are more precise than prose, clearer than code, and easier to reason about than either. JVML has a subroutine construct which is used for the compilation of Java's try-finally statement. Subroutines are a major source of complexity for the bytecode verifier because they are not obviously last-in/first-out and because they require a kind of polymorphism. Focusing on subroutines, we isolate an interesting, small subset of JVML. We give typing rules for this subset and prove their correctness. Our type system constitutes a sound basis for bytecode verification and a rational reconstruction of a delicate part of Sun's bytecode verifier.", acknowledgement = ack-nhfb, fjournal = "ACM Transactions on Programming Languages and Systems", keywords = "bytecode verification; Java; languages; security; theory; verification", subject = "Software --- Programming Languages --- Language Classifications (D.3.2): {\bf Java}; Software --- Programming Languages --- Formal Definitions and Theory (D.3.1): {\bf Semantics}; Software --- Operating Systems --- Security and Protection (D.4.6): {\bf Invasive software}; Theory of Computation --- Logics and Meanings of Programs --- Semantics of Programming Languages (F.3.2): {\bf Operational semantics}; Theory of Computation --- Logics and Meanings of Programs --- Semantics of Programming Languages (F.3.2): {\bf Program analysis}; Theory of Computation --- Logics and Meanings of Programs --- Studies of Program Constructs (F.3.3): {\bf Type structure}", } @Article{Stevens:1999:CPJ, author = "Al Stevens", title = "{C} Programming: {Java} Jive and Scrolling the Editor", journal = j-DDJ, volume = "24", number = "4", pages = "96, 98", month = apr, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Mar 3 06:30:11 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/", abstract = "Before putting the ``scroll'' back in his scrolling editor, Al asks the questions ``What is Java?'' and ``Who the heck you gonna believe, anyway?''", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Stichnoth:1999:SGC, author = "James M. Stichnoth and Guei-Yuan Lueh and Micha{\l} Cierniak", title = "Support for Garbage Collection at Every Instruction in a {Java} Compiler", journal = j-SIGPLAN, volume = "34", number = "5", pages = "118--127", month = may, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:18:03 MST 2003", bibsource = "http://portal.acm.org/; http://www.acm.org/pubs/contents/proceedings/pldi/301122/index.html; http://www.acm.org/pubs/contents/proceedings/pldi/301618/index.html; http://www.cs.rutgers.edu/pldi99/program.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "See PLDI'99 proceedings \cite{ACM:1999:PASa}.", URL = "http://www.acm.org:80/pubs/citations/proceedings/pldi/301122/p118-stichnoth/", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Manual{Sun:1999:JCV, key = "JCVM", title = "{Java Card} 2.1 Virtual Machine Specification", organization = "{SUN} Microsystems, Inc.", day = "3", month = mar, year = "1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Final Revision 1.0", added-at = "Fri Jan 15 10:34:37 1999", added-by = "gka", } @Book{Sun:1999:JLF, author = "{Sun Microsystems Inc.}", title = "{Java} Look and Feel Design Guidelines", publisher = pub-AW-LONGMAN, address = pub-AW-LONGMAN:adr, pages = "xxviii + 230", year = "1999", ISBN = "0-201-61585-1", ISBN-13 = "978-0-201-61585-2", LCCN = "QA76.73.J38 S86 1999", bibdate = "Thu Jan 18 06:40:47 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.95", acknowledgement = ack-nhfb, } @Manual{Sun:1999:JPD, author = "{Sun Microsystems}", key = "JPDA", title = "{Java Platform Debugger Architecture (JPDA)}", organization = "Sun Microsystems", address = "Mountain View, CA, USA", year = "1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://java.sun.com/j2se/1.3/docs/guide/jpda/", comment = "Debugger architecture for {J}ava. Includes: Java Virtual Machine Debugger Interface (JVMDI) which defines the services a VM must provide for debugging; Java Debug Wire Protocol (JDWP) which defines the format of information and requests transferred between the process being debugged and the debugger front end that implements the Java Debug Interface (JDI) which defines information and requests at the user code level", } @Article{Syme:1999:PJT, author = "D. Syme", title = "Proving {Java} Type Soundness", journal = j-LECT-NOTES-COMP-SCI, volume = "1523", pages = "83--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Tai:1999:AP, author = "Hideki Tai and Kazuya Kosaka", title = "The {Aglets} project", journal = j-CACM, volume = "42", number = "3", pages = "100--101", month = mar, year = "1999", CODEN = "CACMA2", ISSN = "0001-0782 (print), 1557-7317 (electronic)", ISSN-L = "0001-0782", bibdate = "Thu Mar 4 07:57:21 MST 1999", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/journals/cacm/1999-42-3/p100-tai/", acknowledgement = ack-nhfb, annote = "``An Aglet is a composite Java object that includes mobility and persistence and its own thread of execution and can communicate with other Aglets.''", fjournal = "Communications of the ACM", } @Book{Taylor:1999:CJW, author = "Christopher Taylor and Tim Kimmett", title = "Core {Java Web} Server", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxii + 593", year = "1999", ISBN = "0-13-080559-9", ISBN-13 = "978-0-13-080559-1", LCCN = "TK5105.888.T39 1999", bibdate = "Sat Mar 11 15:59:25 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", acknowledgement = ack-nhfb, } @Book{Taylor:1999:JDR, author = "Art Taylor", title = "{JDBC} developer's resource: database programming on the {Internet}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xx + 730", year = "1999", ISBN = "0-13-901661-9", ISBN-13 = "978-0-13-901661-5", LCCN = "QA76.625 .T39 1999", bibdate = "Fri Jul 30 06:13:34 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.phptr.com/ptrbooks/ptr_0139016619.html", acknowledgement = ack-nhfb, } @Article{Teeter:1999:MRC, author = "Brian R. Teeter", title = "Media Reviews: {A} Cookbook for {JavaScript}: {{\em The JavaScript CD Cookbook 2/e} by Erica Sadun and J. Brook Monroe (Charles River Media, 1997, \$44.95, ISBN 1-886801-65-7)}", journal = j-IEEE-MULTIMEDIA, volume = "6", number = "1", pages = "90--90", month = jan # "--" # mar, year = "1999", CODEN = "IEMUE4", DOI = "http://dx.doi.org/10.1109/MMUL.1999.752969", ISSN = "1070-986X (print), 1941-0166 (electronic)", ISSN-L = "1070-986X", bibdate = "Mon Jan 29 16:49:44 MST 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "IEEE MultiMedia", } @Article{Thimbleby:1999:CJ, author = "Harold Thimbleby", title = "A critique of {Java}", journal = j-SPE, volume = "29", number = "5", pages = "457--478", day = "25", month = apr, year = "1999", CODEN = "SPEXBL", ISSN = "0038-0644 (print), 1097-024X (electronic)", ISSN-L = "0038-0644", bibdate = "Thu Jul 29 15:12:18 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=55003857; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=55003857&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Software---Practice and Experience", } @Article{Thirunarayan:1999:SMI, author = "Krishnaprasad Thirunarayan and G{\"u}nter Kniesel and Haripriyan Hampapuram", title = "Simulating multiple inheritance and generics in {Java}", journal = j-COMP-LANGS, volume = "25", number = "4", pages = "189--210", month = dec, year = "1999", CODEN = "COLADA", ISSN = "0096-0551", ISSN-L = "0096-0551", bibdate = "Thu Feb 21 11:33:48 MST 2002", bibsource = "http://www.elsevier.com/locate/complang; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.elsevier.com/gej-ng/10/15/18/28/30/24/abstract.html", acknowledgement = ack-nhfb, fjournal = "Computer Languages", } @Book{Thodler:1999:JDD, author = "Dora Thodler", title = "{Java} Database Developer's Guide", publisher = pub-PRIMA, address = pub-PRIMA:adr, pages = "700", month = jan, year = "1999", ISBN = "0-7615-0763-9", ISBN-13 = "978-0-7615-0763-5", LCCN = "????", bibdate = "Thu Aug 21 09:04:52 MDT 1997", bibsource = "http://www.amazon.com/exec/obidos/ISBN=0761507639/wholesaleproductA/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50.00", acknowledgement = ack-nhfb, } @Article{Tip:1999:PEA, author = "Frank Tip and Chris Laffra and Peter F. Sweeney and David Streeter", title = "Practical experience with an application extractor for {Java}", journal = j-SIGPLAN, volume = "34", number = "10", pages = "292--305", month = oct, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:18:09 MST 2003", bibsource = "http://portal.acm.org/; http://www.acm.org/pubs/contents/proceedings/oops/320384/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/citations/proceedings/oops/320384/p292-tip/", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Book{Topley:1999:CJF, author = "Kim Topley", title = "Core {Java} Foundation Classes", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxxv + 1168", year = "1999", ISBN = "0-13-080301-4", ISBN-13 = "978-0-13-080301-6", LCCN = "QA76.73.J38T67 1998", bibdate = "Wed Jun 02 16:57:19 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99", acknowledgement = ack-nhfb, } @Article{Tremblett:1999:JPA, author = "Paul Tremblett", title = "The {Java} Provider Architecture", journal = j-DDJ, volume = "24", number = "3", pages = "40, 42, 44--47, 49", month = mar, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 2 06:29:28 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/1999/9902/9902toc.htm; http://www.ddj.com/ftp/1999/1999_03/provider.txt; http://www.ddj.com/ftp/1999/1999_03/provider.zip", abstract = "Paul uses the JDK's Java Cryptography Extension to implement a cipher algorithm that simulates the Enigma machine made famous by Germany in World War II. Additional resources include provider.txt (listings) and provider.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Tremblett:1999:JQW, author = "Paul Tremblett", title = "{Java Q\&A}: What are {JavaServer} Pages?", journal = j-DDJ, volume = "24", number = "12", pages = "109--113, 115", month = dec, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Nov 9 06:25:06 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1999/1999_12/jqa1299.txt; http://www.ddj.com/ftp/1999/1999_12/jqa1299.zip", abstract = "One way to deliver dynamic data content to static HTML pages is by leveraging the power of Java and JavaServer Pages. Paul shows you how. Additional resources include jqa1299.txt (listings) and jqa1299.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Tremblett:1999:LJP, author = "Paull Tremblett and A. P. Madden and Serguei Patchkovskii and Edd Dumbill and Michael Olson and Tim Kientzle and Andrew Bowley", title = "Letters: {Java} Provided Update; Better Late Than Never; {CD} Authoring; Full-Text Searching; Taming {C}++", journal = j-DDJ, volume = "24", number = "5", pages = "10, 12", month = may, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Apr 30 10:07:03 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Tryggvesson:1999:JJR, author = "J{\"o}rgen Tryggvesson and Torbj{\"o}rn Mattsson and Hansruedi Heeb", title = "{Jbed}: {Java} For Real-Time Systems", journal = j-DDJ, volume = "24", number = "11", pages = "78, 80, 82--84, 86", month = nov, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Nov 9 06:25:05 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1999/1999_11/jbed.txt; http://www.ddj.com/ftp/1999/1999_11/jbed.zip", abstract = "Jbed, a small, fast Java Virtual Machine for embedded real-time systems, includes a complete real-time operating system. Additional resources include jbed.txt (listings) and jbed.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Tsirikos:1999:CDI, author = "D. Tsirikos and T. Markousis and Y. Mouroulis and M. Hatzopoulos", title = "A Client-Server Design for Interactive Multimedia Documents Based on {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1483", pages = "248--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Jan 5 07:05:15 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Tyma:1999:TVC, author = "Paul T{\'y}ma", title = "Transient variable caching in {Java}'s stack-based intermediate representation", journal = j-SCI-PROG, volume = "7", number = "2", pages = "157--166", year = "1999", CODEN = "SCIPEV", ISSN = "1058-9244 (print), 1875-919X (electronic)", ISSN-L = "1058-9244", bibdate = "Thu Mar 28 11:20:56 MST 2002", bibsource = "http://www.iospress.nl/site/html/10589244.html; http://www.math.utah.edu/pub/tex/bib/java.bib; OCLC Article1st database", URL = "http://iospress.metapress.com/app/home/contribution.asp%3Fwasp=f277qlrwwjr5m4vxjywv%26referrer=parent%26backto=issue%2C7%2C8%3Bjournal%2C7%2C9%3Blinkingpublicationresults%2C1%2C1", acknowledgement = ack-nhfb, fjournal = "Scientific Programming", } @Book{Valesky:1999:EJD, author = "Thomas C. Valesky", title = "Enterprise {JavaBeans}: developing component-based distributed applications", publisher = pub-AW, address = pub-AW:adr, pages = "352", year = "1999", ISBN = "0-201-60446-9", ISBN-13 = "978-0-201-60446-7", LCCN = "QA76.73.J38V35 1999", bibdate = "Tue May 11 07:16:42 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.95", acknowledgement = ack-nhfb, } @Article{vanDelft:1999:JES, author = "Andr{\'e} van Delft", title = "A {Java} extension with support for dimensions", journal = j-SPE, volume = "29", number = "7", pages = "605--616", month = jun, year = "1999", CODEN = "SPEXBL", ISSN = "0038-0644 (print), 1097-024X (electronic)", ISSN-L = "0038-0644", bibdate = "Thu Jul 29 15:12:22 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=62003574; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=62003574&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, fjournal = "Software---Practice and Experience", } @Article{VanderHeijden:1999:FJB, author = "G. {Van der Heijden} and G. Polder and J. W. {Van Eck}", title = "{FLORES}: {A} {JAVA} Based Image Database for Ornamentals", journal = j-LECT-NOTES-COMP-SCI, volume = "1614", pages = "641--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999b.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{vanderLinden:1999:JJ, author = "Peter {van der Linden}", title = "Just {Java} 1.2", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Fourth", pages = "xxi + 777", month = mar, year = "1999", ISBN = "0-13-010534-1", ISBN-13 = "978-0-13-010534-9", LCCN = "QA76.73.J38 V36 1999", bibdate = "Sat Mar 11 15:59:56 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$44.99", series = "SunSoft Press Java series", URL = "http://www.javaworld.com/books/jw-clbooks.html?030899txt; http://www.phptr.com/bookseri/java.html; http://www.phptr.com/ptrbooks/ptr_0130105341.html", acknowledgement = ack-nhfb, } @Book{vanderLinden:1999:JJT, author = "Peter {van der Linden}", title = "Not Just {Java}: a technology briefing", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Second", pages = "x + 329", year = "1999", ISBN = "0-13-079660-3", ISBN-13 = "978-0-13-079660-8", LCCN = "QA76.73.J38V363 1999", bibdate = "Tue May 11 08:14:55 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = "SunSoft Press Java series", URL = "http://www.phptr.com/ptrbooks/ptr_0130796603.html; http://www.sun.com/books/catalog/vanderLinden3/vanderLinden3.html; http://www1.clbooks.com/asp/BookInfo/BookInfo.asp?theisbn=0130796603", acknowledgement = ack-nhfb, } @Book{Venners:1999:IJV, author = "Bill Venners", title = "Inside the {Java Virtual Machine}", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, edition = "Second", pages = "xxxi + 703", year = "1999", ISBN = "0-07-135093-4", ISBN-13 = "978-0-07-135093-8", LCCN = "QA76.73.J38 V46 1999", bibdate = "Thu Mar 23 07:01:27 MST 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/description/mh024/00269375.html", acknowledgement = ack-nhfb, subject = "Java (Computer program language); Java Virtual Machine", } @InProceedings{Vijaykrishnan:1999:TBP, author = "N. Vijaykrishnan and N. Ranganathan", title = "Tuning Branch Predictors to Support Virtual Method Invocation in {Java}", crossref = "USENIX:1999:PFU", pages = "??--??", year = "1999", bibdate = "Fri Oct 18 07:14:18 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/coots99/vijaykrishnan.html", acknowledgement = ack-nhfb, } @Book{Vogel:1999:PEJ, author = "Andreas Vogel and Madhavan Rangarao", title = "Programming with {Enterprise JavaBeans}, {JTS}, and {OTS}: Building Distributed Transactions with {Java} and {C++}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "368", year = "1999", ISBN = "0-471-31972-4", ISBN-13 = "978-0-471-31972-6", LCCN = "QA76.73.J38P767 1999", bibdate = "Sat Oct 09 08:13:10 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/compbooks/", price = "US\$39.99", acknowledgement = ack-nhfb, } @Article{VonEicken:1999:JKC, author = "T. {Von Eicken} and C.-C. Chang and G. Czajkowski and C. Hawblitzel", title = "{J-Kernel}: {A} Capability-Based Operating System for {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1603", pages = "369--394", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Sep 14 06:09:05 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999b.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", keywords = "distributed object security; ECOOP; EWDOS; mobile object systems; object-oriented; programming; secure Internet programming", } @Article{VonOheimb:1999:MCJ, author = "D. {Von Oheimb} and T. Nipkow", title = "Machine-Checking the {Java} Specification: Proving Type-Safety", journal = j-LECT-NOTES-COMP-SCI, volume = "1523", pages = "119--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Article{Wakeling:1999:CLF, author = "David Wakeling", title = "Compiling lazy functional programs for the {Java Virtual Machine}", journal = j-J-FUNCT-PROGRAMMING, volume = "9", number = "6", pages = "579--603", month = "????", year = "1999", CODEN = "????", ISSN = "0956-7968 (print), 1469-7653 (electronic)", ISSN-L = "0956-7968", bibdate = "Wed Sep 21 08:33:45 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Journal of Functional Programming", onlinedate = "08 September 2000", } @Article{Waldo:1999:JAN, author = "Jim Waldo", title = "The {Jini} architecture for network-centric computing", journal = j-CACM, volume = "42", number = "7", pages = "76--82", month = jul, year = "1999", CODEN = "CACMA2", ISSN = "0001-0782 (print), 1557-7317 (electronic)", ISSN-L = "0001-0782", bibdate = "Sat Jul 3 10:59:15 MDT 1999", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/journals/cacm/1999-42-7/p76-waldo/", acknowledgement = ack-nhfb, fjournal = "Communications of the ACM", keywords = "design; languages", subject = "{\bf C.2.1} Computer Systems Organization, COMPUTER-COMMUNICATION NETWORKS, Network Architecture and Design. {\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Java.", } @InProceedings{Waldron:1999:AVM, author = "John Waldron and Owen Harrison", title = "Analysis of Virtual Machine Stack Frame Usage by {Java} Methods", crossref = "Anonymous:1999:PII", pages = "271--274", year = "1999", bibdate = "Tue Oct 24 10:29:21 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Article{Walker:1999:UJH, author = "D. Walker and O. Rana", title = "The Use of {Java} in High Performance Computing: {A} Data Mining Example", journal = j-LECT-NOTES-COMP-SCI, volume = "1593", pages = "863--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999a.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @Book{Wall:1999:GPJ, author = "David Wall and Arthur Griffith", title = "Graphics Programming with {JFC}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xv + 381", year = "1999", ISBN = "0-471-28307-X", ISBN-13 = "978-0-471-28307-2", LCCN = "T385.W352 1999", bibdate = "Sat Oct 09 08:13:10 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/compbooks/", note = "Includes CD-ROM.", price = "US\$44.99", acknowledgement = ack-nhfb, } @Book{Watson:1999:JPW, author = "Mark Watson", title = "{Java} programming for {Windows}: using {Microsoft AFC}, {WFC}, and {XML}", publisher = pub-MORGAN-KAUFMANN, address = pub-MORGAN-KAUFMANN:adr, pages = "xxiii + 344", year = "1999", ISBN = "1-55860-516-9", ISBN-13 = "978-1-55860-516-9", LCCN = "QA76.73.J38W383 1999", bibdate = "Fri Sep 11 08:29:11 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "Java (Computer program language); Microsoft AFC; Microsoft Windows (Computer file); Windows foundation class library; XML (Computer program language)", } @Book{Watt:1999:PLP, author = "David A. (David Anthony) Watt and Deryck F. Brown", title = "Programming language processors in {Java}: compilers and interpreters", publisher = "Prentice Hall", address = "Harlow, England", pages = "xvi + 436", year = "1999", ISBN = "0-13-025786-9 (case)", ISBN-13 = "978-0-13-025786-4 (case)", LCCN = "QA76.73.J38 W385 1999", bibdate = "Tue Apr 12 06:25:47 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Java (Computer program language); Compilers (Computer programs); Interpreters (Computer programs)", } @Article{Welch:1999:DKE, author = "I. Welch and R. Stroud", title = "From {Dalang} to {Kava} --- the Evolution of a Reflective {Java} Extension", journal = j-LECT-NOTES-COMP-SCI, volume = "1616", pages = "2--??", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Mon Sep 13 16:57:02 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999b.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", } @MastersThesis{Welsh:1999:SSH, author = "Matt Welsh", title = "A system supporting high-performance communication and {I/O} in {Java}", type = "{M.S. in Computer Science}", school = "University of California, Berkeley, Dept. of Computer Science", address = "Berkeley, CA, USA", pages = "46", year = "1999", LCCN = "T7.5.1999 W47", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", } @Article{Welsh:1999:UNS, author = "Matt Welsh and David Oppenheimer and David Culler", title = "{U-Net\slash SLE}: {A} {Java}-based user-customizable virtual network interface", journal = j-SCI-PROG, volume = "7", number = "2", pages = "147--156", month = "????", year = "1999", CODEN = "SCIPEV", ISSN = "1058-9244 (print), 1875-919X (electronic)", ISSN-L = "1058-9244", bibdate = "Thu Mar 28 12:27:27 MST 2002", bibsource = "Compendex database; http://www.iospress.nl/site/html/10589244.html; http://www.math.utah.edu/pub/tex/bib/java.bib; OCLC Article1st database", URL = "http://iospress.metapress.com/app/home/contribution.asp%3Fwasp=f277qlrwwjr5m4vxjywv%26referrer=parent%26backto=issue%2C6%2C8%3Bjournal%2C7%2C9%3Blinkingpublicationresults%2C1%2C1", acknowledgement = ack-nhfb, fjournal = "Scientific Programming", } @Article{Welstead:1999:JOL, author = "Steve Welstead", title = "A {Java} Object List Dialog", journal = j-CCCUJ, volume = "17", number = "1", pages = "??--??", month = jan, year = "1999", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:19 MDT 2002", bibsource = "http://www.cuj.com/articles/1999/9901/9901toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Java keeps getting better at handling those bread-and-butter windowing tasks that once required C or C++ under Windows.", acknowledgement = ack-nhfb, fjournal = "C/C++ Users Journal", } @Article{Welzel:1999:JS, author = "Doug Welzel", title = "{Java} Servlets", journal = j-LINUX-J, volume = "66", pages = "??--??", month = oct, year = "1999", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", ISSN-L = "1075-3583", bibdate = "Thu Sep 21 14:31:45 MDT 2000", bibsource = "http://noframes.linuxjournal.com/lj-issues/issue66/index.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://noframes.linuxjournal.com/lj-issues/issue66/3119.html", acknowledgement = ack-nhfb, fjournal = "Linux journal", } @Article{Whaley:1999:CPE, author = "John Whaley and Martin Rinard", title = "Compositional pointer and escape analysis for {Java} programs", journal = j-SIGPLAN, volume = "34", number = "10", pages = "187--206", month = oct, year = "1999", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:18:09 MST 2003", bibsource = "http://portal.acm.org/; http://www.acm.org/pubs/contents/proceedings/oops/320384/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/citations/proceedings/oops/320384/p187-whaley/", acknowledgement = ack-nhfb, fjournal = "ACM SIGPLAN Notices", } @Book{White:1999:JAT, author = "Seth White and Maydene Fisher and Rick Cattell and Graham Hamilton and Mark Hapner", title = "{JDBC API} tutorial and reference: universal data access for the {Java 2} platform", publisher = pub-AW, address = pub-AW:adr, pages = "xxv + 1059", year = "1999", ISBN = "0-201-43328-1", ISBN-13 = "978-0-201-43328-9", LCCN = "QA76.625.J43 1999", bibdate = "Fri Jul 30 06:12:57 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$44.95", acknowledgement = ack-nhfb, } @Book{Williamson:1999:JSE, author = "Alan R. Williamson", title = "{Java} Servlets By Example", publisher = pub-MANNING, address = pub-MANNING:adr, month = sep, year = "1999", ISBN = "1-884777-66-X", ISBN-13 = "978-1-884777-66-0", LCCN = "QA76.73.J38 W552 1999", bibdate = "Tue Aug 31 17:34:32 1999", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.manning.com/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", URL = "http://www.manning.com/Williamson/index.html", acknowledgement = ack-nhfb, } @Article{Wilson:1999:JQH, author = "Andrew Wilson", title = "{Java Q and A}: How Do {I} Implement {Microsoft}'s {\em delegate\/} in {Pure Java}?", journal = j-DDJ, volume = "24", number = "3", pages = "107--110", month = mar, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 2 06:29:28 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/1999/9902/9902toc.htm; http://www.ddj.com/ftp/1999/1999_03/jqa399.txt; http://www.ddj.com/ftp/1999/1999_03/jqa399.zip", abstract = "How do you implement Microsoft's delegate keyword? Andrew presents classes that mimic the delegate keyword, letting you build a complex user interface with simpler event-handling code. Additional resources include jqa399.txt (listings) and jqa399.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Wilson:1999:JQW, author = "Andy Wilson", title = "{Java Q\&A}: What is the {Java VM Profiler} Interface?", journal = j-DDJ, volume = "24", number = "9", pages = "103--106", month = sep, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Nov 9 06:25:04 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1999/1999_09/jqa999.txt; http://www.ddj.com/ftp/1999/1999_09/jqa999.zip", abstract = "The Java Virtual Machine Profiler Interface lets you build tools that collect events about the state of the virtual machine. These events then let you gather information about how the VM and your Java application actually run. Additional resources include jqa999.txt (listings) and jqa999.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Wilson:1999:PBG, author = "Gregory V. Wilson and Steve Chartley", title = "Programmer's Bookshelf: The General, the Particular, and the Just Plain Odd", journal = j-DDJ, volume = "24", number = "4", pages = "117--118", month = apr, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Mar 3 06:30:11 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/1999/9904q/9904q.htm", abstract = "Greg looks at Tom Armstrong's {\em The Active Template Library}, Jim Coplien's {\em Multi-Paradigm DESIGN for C++}, and Carlton Egremont's {\em Mr. Bunny's Guide to Active X}, while Steve Chartley tackles {\em Patterns in Java}, by Mark Grand.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Wilson:1999:PBJ, author = "Gregory V. Wilson", title = "Programmer's Bookshelf: {A} Joke Too Far", journal = j-DDJ, volume = "24", number = "11", pages = "127--128", month = nov, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Nov 9 06:25:05 MST 2000", bibsource = "http://www.ddj.com/; http://www.math.utah.edu/pub/tex/bib/java.bib", abstract = "Greg examines Mr. Bunny's Big Cup o' Java, The Inmates are Running the Asylum, Ready-to-Run Java 3D, The Java 3D API Specification, Advanced CORBA Programming with C++, and Inside the JavaOS Operating System.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Wilson:1999:PBS, author = "Gregory V. Wilson", title = "Programmer's Bookshelf: Small is Beautiful --- Kind Of", journal = j-DDJ, volume = "24", number = "2", pages = "135, 137", month = feb, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 2 06:29:28 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/1999/9902/9902toc.htm; http://www.ercb.com/ddj/1999/ddj.9902.html", abstract = "Greg looks at a number of books this month, including The Essence of SQL, by David Rozenshtein, The Perl Cookbook, by Tom Christiansen and Nathan Torkington, High Performance Computing, Second Edition, by Kevin Dowd and Charles Severance, JavaScript for the World Wide Web, Second Edition, by Tom Negrino and Dori Smith, AntiPatterns, by William J. Brown, Raphael C. Malveau, Hays W. McCormick III, and Thomas J. Mowbray, and Beginning Object-Oriented Analysis and Design with C++, by Jesse Liberty.", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Book{Winsor:1999:MJJ, author = "Janice Winsor and Brian Freeman", title = "More Jumping {JavaScript}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxviii + 512", year = "1999", ISBN = "0-13-922832-2", ISBN-13 = "978-0-13-922832-2", LCCN = "QA76.73.J39 W56 1999", bibdate = "Sun Jun 27 09:18:12 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = "SunSoft Press Java series", URL = "http://www.phptr.com/bookseri/java.html; http://www.phptr.com/ptrbooks/ptr_0139228322.html; http://www.sun.com/books/catalog/winsor8/index.html", acknowledgement = ack-nhfb, } @TechReport{Wolczko:1999:UTJ, author = "M. Wolczko", title = "Using a {Tracing Java Virtual Machine} to gather data on the behavior of {Java} programs", institution = "Sun Microsystems, Inc.", address = "Menlo Park, CA, USA", pages = "????", year = "1999", bibdate = "Tue Oct 24 10:30:38 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://research.sun.com/people/mario/tracing-jvm/", acknowledgement = ack-nhfb, } @Article{Wong:1999:JMA, author = "David Wong and Noemi Paciorek and Dana Moore", title = "{Java}-based mobile agents", journal = j-CACM, volume = "42", number = "3", pages = "92--95, 97--102", month = mar, year = "1999", CODEN = "CACMA2", ISSN = "0001-0782 (print), 1557-7317 (electronic)", ISSN-L = "0001-0782", bibdate = "Thu Mar 4 07:57:21 MST 1999", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/journals/cacm/1999-42-3/p92-wong/", acknowledgement = ack-nhfb, fjournal = "Communications of the ACM", } @Article{Wong:1999:JNE, author = "Hinkmond Wong", title = "{Jini} And Network-Enabled Devices", journal = j-DDJ, volume = "24", number = "7", pages = "21--22, 24--26", month = jul, year = "1999", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Jun 2 12:37:25 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ddj.com/ftp/1999/1999_07/jini.txt; http://www.ddj.com/ftp/1999/1999_07/jini.zip", abstract = "Jini is a technology designed to let anyone connect any device to any network in a straightforward manner. Hinkmond shows how you can use Sun's {EmbeddedJava} tools to build a system that incorporates Jini technology into small memory footprint, network-enabled devices. Additional resources include jini.txt (listings) and jini.zip (source code).", acknowledgement = ack-nhfb, fjournal = "Dr. Dobb's Journal of Software Tools", } @Article{Wood:1999:ACF, author = "Dave Wood", title = "{Ada}: a commercial flop and proud of it! -or- how to deal with {Java} envy", journal = j-SIGADA-LETTERS, volume = "19", number = "4", pages = "32--36", month = dec, year = "1999", CODEN = "AALEE5", ISSN = "0736-721X", ISSN-L = "0736-721X", bibdate = "Sat Aug 9 09:06:07 MDT 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGADA Ada Letters", } @Book{Woods:1999:DGJ, author = "Dan Woods", title = "The Developer's Guide to the {Java Web} Server: building effective and scalable server-side applications", publisher = pub-AW, address = pub-AW:adr, pages = "xxi + 577", month = jun, year = "1999", ISBN = "0-201-37949-X", ISBN-13 = "978-0-201-37949-5", LCCN = "QA76.73.J38W662 1999", bibdate = "Fri Jul 30 06:11:47 1999", bibsource = "http://www.awl.com/cseng/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.95", acknowledgement = ack-nhfb, } @Book{Wu:1999:IOO, author = "C. Thomas Wu", title = "An Introduction to Object-Oriented Programming With {Java}", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, month = jan, year = "1999", ISBN = "0-07-115612-7", ISBN-13 = "978-0-07-115612-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mcgraw-hill.com/", price = "US\$47", acknowledgement = ack-nhfb, } @Article{Wu:1999:JBD, author = "X. Wu and Q. Chen and X.-H. Sun", title = "A {Java}-based Distributed Debbuger Supporting {MPI} and {PVM}", journal = j-PARALLEL-DIST-COMP-PRACT, volume = "2", number = "4", pages = "??--??", month = "????", year = "1999", CODEN = "????", ISSN = "1097-2803", bibdate = "Fri Dec 19 08:14:14 MST 2003", bibsource = "http://www.cs.okstate.edu/~pdcp/vols/vol02/vol02no4.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.cs.okstate.edu/~pdcp/vols/vol02/vol02no4abs.html#wu", acknowledgement = ack-nhfb, fjournal = "PDCP: Parallel and Distributed Computing Practices", } @Article{Yang:1999:LMJ, author = "Byung-Sun Yang and Junpyo Lee and Jinpyo Park and Soo-Mook Moon and Kemal Ebcio{\u{g}}lu and Erik Altman", title = "Lightweight monitor for {Java VM}", journal = j-COMP-ARCH-NEWS, volume = "27", number = "1", pages = "35--38", month = mar, year = "1999", CODEN = "CANED2", ISSN = "0163-5964 (print), 1943-5851 (electronic)", ISSN-L = "0163-5964", bibdate = "Fri May 12 09:40:35 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "ACM SIGARCH Computer Architecture News", } @InProceedings{Yelland:1999:CAJ, author = "Phillip M. Yelland", title = "A compositional account of the {Java} virtual machine", crossref = "ACM:1999:PPA", pages = "57--69", year = "1999", bibdate = "Mon May 3 12:58:58 MDT 1999", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/plan/292540/p57-yelland/", acknowledgement = ack-nhfb, keywords = "measurement; verification", subject = "{\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Java. {\bf H.5.1} Information Systems, INFORMATION INTERFACES AND PRESENTATION, Multimedia Information Systems, Artificial, augmented, and virtual realities. {\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Haskell. {\bf D.3.3} Software, PROGRAMMING LANGUAGES, Language Constructs and Features, Polymorphism.", } @Article{Yerosheva:1999:PEM, author = "L. Yerosheva and P. M. Kogge", title = "Prototyping Execution Models for {HTMT} Petaflop Machine in {Java}", journal = j-LECT-NOTES-COMP-SCI, volume = "1602", pages = "32--46", year = "1999", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", ISSN-L = "0302-9743", bibdate = "Tue Sep 14 06:09:05 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs1999b.bib", acknowledgement = ack-nhfb, fjournal = "Lecture Notes in Computer Science", keywords = "architecture; CANPC; communication; parallel computing", } @Article{Zaki:1999:TSP, author = "Omer Zaki and Ewing Lusk and William Gropp and Deborah Swider", title = "Toward Scalable Performance Visualization with {Jumpshot}", journal = j-IJHPCA, volume = "13", number = "3", pages = "277--288", month = "Fall", year = "1999", CODEN = "IHPCFL", ISSN = "1094-3420 (print), 1741-2846 (electronic)", ISSN-L = "1094-3420", bibdate = "Wed Jul 28 14:14:38 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, keywords = "Java; MPI (Message Passing Interface) profiling", } @Article{Zingirian:1999:ESS, author = "N. Zingirian and M. Maresca and S. Nalin", title = "Efficiency of standard software architectures for {Java}-based access to remote databases", journal = j-FUT-GEN-COMP-SYS, volume = "15", number = "3", pages = "417--??", month = "????", year = "1999", CODEN = "FGSEVI", ISSN = "0167-739X (print), 1872-7115 (electronic)", ISSN-L = "0167-739X", bibdate = "Mon Jun 21 08:03:55 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, fjournal = "Future Generation Computer Systems", } @InProceedings{Zirintsis:1999:HPJ, author = "Evangelos Zirintsis and Graham N. C. Kirby and Ronald Morrison", title = "Hyper-Programming in {Java}", crossref = "Atkinson:1999:PTF", pages = "734--737", year = "1999", bibdate = "Fri Jan 12 07:50:37 MST 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.vldb.org/dblp/db/conf/vldb/vldb99.html; OCLC Proceedings database", URL = "http://www.vldb.org/dblp/db/conf/vldb/ZirintsisKM99.html", acknowledgement = ack-nhfb, authorurl = "http://www.vldb.org/dblp/db/indices/a-tree/z/Zirintsis:Evangelos.html; http://www.vldb.org/dblp/db/indices/a-tree/k/Kirby:Graham_N=_C=.html; http://www.vldb.org/dblp/db/indices/a-tree/m/Morrison:Ronald.html", } @Book{Zukowski:1999:JZD, author = "John Zukowski", title = "{John Zukowski}'s Definitive Guide to {Swing} for {Java 2}", publisher = pub-SV, address = pub-SV:adr, pages = "xvi + 861", year = "1999", ISBN = "1-893115-02-X", ISBN-13 = "978-1-893115-02-6", LCCN = "QA76.73.J38 Z8493 1999", bibdate = "Fri Apr 23 09:09:46 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.95", acknowledgement = ack-nhfb, } @Book{Abello:19xx:JLI, author = "Antonio M. Ferrer Abell{\'o}", title = "{Java} el Lenguaje de {Internet}", publisher = "Abeto Editorial", address = "????", pages = "????", year = "19xx", ISBN = "84-89554-45-5", ISBN-13 = "978-84-89554-45-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "1995 Ptas.", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Abello:19xx:LHJ, author = "Antonio M. Ferrer Abell{\'o}", title = "Lenguajes {HTML}, {Java} y {CGI}", publisher = "Abeto Editorial", address = "????", pages = "????", year = "19xx", ISBN = "84-89554-27-7", ISBN-13 = "978-84-89554-27-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "1995 Ptas.", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Aitken:19xx:JPV, author = "Peter Aitken", title = "{Java Programmierung mit Visual J++}", publisher = pub-ITCP, address = pub-ITCP:adr, year = "19xx", ISBN = "3-8266-0318-4 (??invalid ISBN??)", ISBN-13 = "978-3-8266-0318-1 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.itp.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "69 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Aitken:19xx:VJF, author = "Peter Aitken", title = "{Visual J++ FrontRunner}", publisher = pub-ITCP, address = pub-ITCP:adr, pages = "????", year = "19xx", ISBN = "4-89369-513-4", ISBN-13 = "978-4-89369-513-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.itpj.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "4,500 yen", URL = "http://www.itpj.co.jp/washo/513.shtml", acknowledgement = ack-nhfb, language = "Japanese", url-publisher = "http://www.itpj.co.jp/", } @Book{Ammann:19xx:PAW, author = "Eckhard Ammann", title = "{Programmierung animierter Welten: {Java}, {JavaScript} und VRML}", publisher = pub-ITCP, address = pub-ITCP:adr, year = "19xx", ISBN = "3-8266-0329-X (??invalid ISBN??)", ISBN-13 = "978-3-8266-0329-7 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.itp.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "79 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Anonymous:19xx:AJ, author = "Anonymous", title = "Applets for {Java}", publisher = pub-UNIVERSAL-CD-ROM, address = pub-UNIVERSAL-CD-ROM:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.bigmall.com/subucr.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$30", URL = "http://www.bigmall.com/program.html; http://www.bigmall.com/subucr.html", acknowledgement = ack-nhfb, } @Book{Anonymous:19xx:CJb, author = "Anonymous", title = "{CORBA} \& {Java}", publisher = "SRC", address = "????", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.src-j.com/book/BOOK_084.html", acknowledgement = ack-nhfb, language = "Japanese", url-publisher = "http://www.src-j.com/", } @Book{Anonymous:19xx:CJE, author = "Anonymous", title = "Cooking {JavaBeans} in The Enterprise", publisher = "IBM Redbooks", address = "????", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", URL = "http://www.redbooks.ibm.com/SG247006/index.htm", acknowledgement = ack-nhfb, url-author = "http://www.redbooks.ibm.com/SG247006/team.htm", url-publisher = "http://www.redbooks.ibm.com/", } @Book{Anonymous:19xx:COJ, author = "Anonymous", title = "{Corel Office} for {Java} Programming for Dummies", publisher = pub-IDG, address = pub-IDG:adr, pages = "????", year = "19xx", ISBN = "0-7645-0203-4", ISBN-13 = "978-0-7645-0203-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$30", acknowledgement = ack-nhfb, url-publisher = "http://www.idgbooks.com/", } @Book{Anonymous:19xx:CPJ, author = "Anonymous", title = "Como programar en {Java}", publisher = "Prensa T{\'e}cnica", address = "????", pages = "????", year = "19xx", ISBN = "84-89245-24-X", ISBN-13 = "978-84-89245-24-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Anonymous:19xx:CSH, author = "Anonymous", title = "Como se Hace con {Java}", publisher = pub-EDITORIAL-INFORBOOKS, address = pub-EDITORIAL-INFORBOOKS:adr, pages = "????", year = "19xx", ISBN = "84-89700-41-9 (??invalid ISBN??)", ISBN-13 = "978-84-89700-41-3 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.intercom.es/ibooks/ibooks.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "4250 Ptas.", acknowledgement = ack-nhfb, language = "Spanish", url-publisher = "http://www.intercom.es/ibooks/ibooks.html", } @Book{Anonymous:19xx:DBF, author = "Anonymous", title = "{Der Data Becker F{\"u}hrer Java}", publisher = pub-DATA-BECKER, address = pub-DATA-BECKER:adr, pages = "????", year = "19xx", ISBN = "3-8158-1561-4", ISBN-13 = "978-3-8158-1561-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.data-becker.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "30 DM", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.data-becker.de/", } @Book{Anonymous:19xx:DCJ, author = "Anonymous", title = "Distributed Computing for {Java}", publisher = pub-ORA, address = pub-ORA:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.com/", price = "????", acknowledgement = ack-nhfb, url-publisher = "http://www.ora.com/", } @Book{Anonymous:19xx:DJa, author = "Anonymous", title = "Dubbelboek {JavaScript}", publisher = pub-SYBEX-NEDERLAND, address = pub-SYBEX-NEDERLAND:adr, pages = "????", year = "19xx", ISBN = "90-419-0162-0", ISBN-13 = "978-90-419-0162-0", LCCN = "????", bibdate = "Mon Jun 22 11:47:17 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "fl. 37,50; Bfr. 750", URL = "http://www.sybex.nl/catalogus/index.html", acknowledgement = ack-nhfb, } @Book{Anonymous:19xx:DJb, author = "Anonymous", title = "{DGB Java}", publisher = pub-DATA-BECKER, address = pub-DATA-BECKER:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.data-becker.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "69 DM", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.data-becker.de/", } @Book{Anonymous:19xx:DTJ, author = "Anonymous", title = "Developer Tools for {Java}", publisher = pub-UNIVERSAL-CD-ROM, address = pub-UNIVERSAL-CD-ROM:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.bigmall.com/subucr.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$30", URL = "http://www.bigmall.com/program.html", acknowledgement = ack-nhfb, } @Book{Anonymous:19xx:EHJ, author = "Anonymous", title = "100\% Efficage {HTML} et {Java}", publisher = pub-EASY-COMPUTING-BELGIUM, address = pub-EASY-COMPUTING-BELGIUM:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.easycomputing.com/homefr.htm; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "920 BeF", URL = "http://www.easycomputing.com/francais/efficaceframe.htm", acknowledgement = ack-nhfb, language = "French", } @Book{Anonymous:19xx:FSV, author = "Anonymous", title = "First Step of {Visual J++} \& {ActiveX}", publisher = pub-SOFTBANK, address = pub-SOFTBANK:adr, pages = "????", year = "19xx", ISBN = "4-7973-0168-6", ISBN-13 = "978-4-7973-0168-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.softbank.co.jp/softbank/publishing/", price = "2200 yen", URL = "http://www.softbank.co.jp/sbnet/books/editer/pg/ActiveX/", acknowledgement = ack-nhfb, language = "Japanese", url-publisher = "http://www.softbank.co.jp/softbank/publishing/", } @Book{Anonymous:19xx:HCJ, author = "Anonymous", title = "{HTML}, {CGI}, {Java}, {VRML}", publisher = pub-OHMSHA, address = pub-OHMSHA:adr, pages = "????", year = "19xx", ISBN = "4-274-13112-2", ISBN-13 = "978-4-274-13112-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ohmsha.co.jp/", price = "2,500 yen", URL = "http://www.ohmsha.co.jp/data/books/contents/4-274-13112-2.htm", acknowledgement = ack-nhfb, language = "Japanese", url-publisher = "http://www.ohmsha.co.jp/", } @Book{Anonymous:19xx:IJ, author = "Anonymous", title = "Inleiding {Java}", publisher = pub-SYBEX-NEDERLAND, address = pub-SYBEX-NEDERLAND:adr, year = "19xx", ISBN = "90-5160-998-1", ISBN-13 = "978-90-5160-998-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/dutch.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.nl/", price = "fl. 49", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Anonymous:19xx:IJA, author = "Anonymous", title = "An Introduction to {Java} Applets", publisher = pub-SOFTBANK, address = pub-SOFTBANK:adr, pages = "????", year = "19xx", ISBN = "4-89052-968-3", ISBN-13 = "978-4-89052-968-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.softbank.co.jp/softbank/publishing/", price = "2400 yen", URL = "http://www.softbank.co.jp/softbank/publishing/books/kikan/kikan5/015.htm", acknowledgement = ack-nhfb, language = "Japanese", url-publisher = "http://www.softbank.co.jp/softbank/publishing/", } @Book{Anonymous:19xx:Ja, author = "Anonymous", title = "{JavaBeans}", publisher = pub-UNIVERSAL-CD-ROM, address = pub-UNIVERSAL-CD-ROM:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.bigmall.com/subucr.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$60", URL = "http://www.bigmall.com/PJ0284.html; http://www.bigmall.com/program.html", acknowledgement = ack-nhfb, url-publisher = "http://www.bigmall.com/subucr.html", xxtitle = "{Java} +", } @Book{Anonymous:19xx:JAA, author = "Anonymous", title = "{Java API} (Applet \& {AWT})", publisher = pub-PH, address = pub-PH:adr, pages = "????", year = "19xx", ISBN = "4-88735-036-8", ISBN-13 = "978-4-88735-036-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mmjp.or.jp/prentice/", price = "1900 yen", URL = "http://www.mmjp.or.jp/prentice/wa_net08-j.html", acknowledgement = ack-nhfb, language = "Japanese", url-publisher = "http://www.mmjp.or.jp/prentice/", } @Book{Anonymous:19xx:JAb, author = "Anonymous", title = "{Java} \& {AKI-80}", publisher = "CQ Publishing", address = "????", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.cqpub.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "1,800 yen", URL = "http://www.cqpub.co.jp/hanbai/sinkan/367080.HTM", acknowledgement = ack-nhfb, language = "Japanese", url-publisher = "http://www.cqpub.co.jp/", } @Book{Anonymous:19xx:JAc, author = "Anonymous", title = "{Java} Applets", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.gotop.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "420 NT\$", acknowledgement = ack-nhfb, language = "Chinese", url-publisher = "http://www.gotop.com/", } @Book{Anonymous:19xx:Jb, author = "Anonymous", title = "{Java+}", publisher = "Universal CD-ROM", address = "????", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35", acknowledgement = ack-nhfb, url-publisher = "http://www.bigmall.com/subucr.html", } @Book{Anonymous:19xx:JBM, author = "Anonymous", title = "{Java} Bo{\^\i}te {\`a} Malice Le Programmeur ({French}) [{Java} Bag of Tricks: the Programmer]", publisher = pub-SIMON-SCHUSTER-FRANCE, address = pub-SIMON-SCHUSTER-FRANCE:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ssm.fr/", price = "99 FF", URL = "http://www.ssm.fr/", acknowledgement = ack-nhfb, language = "French", } @Book{Anonymous:19xx:Jc, author = "Anonymous", title = "{JavaScript}", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 07:55:47 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "340 NT\$", URL = "http://www.gotop.com.tw", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Anonymous:19xx:Jca, author = "Anonymous", title = "{Java}", publisher = "Ai-Publishing", address = "????", year = "19xx", ISBN = "4-87193-439-X", ISBN-13 = "978-4-87193-439-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.ai-pub.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "2,524 yen", URL = "http://www.ai-pub.co.jp/aipub/book/inet/java.html", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Anonymous:19xx:JCC, author = "Anonymous", title = "{Java} Core Class 1.1", publisher = pub-UNIVERSAL-CD-ROM, address = pub-UNIVERSAL-CD-ROM:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.bigmall.com/subucr.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", URL = "http://www.bigmall.com/program.html", acknowledgement = ack-nhfb, } @Book{Anonymous:19xx:Je, author = "Anonymous", title = "{JavaScript}", publisher = pub-UNALIS, address = pub-UNALIS:adr, pages = "????", year = "19xx", ISBN = "957-22-2390-9", ISBN-13 = "978-957-22-2390-1", LCCN = "????", bibdate = "Mon Aug 18 07:55:47 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unalis.com.tw/index.html; http://www.unalis.com.tw/~orderbk/chinese/g/g51.htm", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Anonymous:19xx:Jea, author = "Anonymous", title = "{Java}", publisher = "L-Gate Digital Group", address = "????", year = "19xx", ISBN = "4-89621-155-3", ISBN-13 = "978-4-89621-155-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.alles.or.jp/~lgate/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "2,800 yen", URL = "http://www.alles.or.jp/~lgate/book.htm#g1", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Anonymous:19xx:Jf, author = "Anonymous", title = "{Java} 1.1", publisher = pub-DAERIM, address = pub-DAERIM:adr, pages = "????", year = "19xx", ISBN = "89-7280-364-2 (??invalid ISBN??)", ISBN-13 = "978-89-7280-364-5 (??invalid ISBN??)", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "17,000 won", URL = "http://www.drbook.co.kr/daerim/tmjv11.htm", acknowledgement = ack-nhfb, language = "Korean", url-publisher = "http://www.drbook.co.kr/", } @Book{Anonymous:19xx:Jg, author = "Anonymous", title = "{JavaScript}", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 07:55:47 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "420 NT\$", URL = "http://www.gotop.com.hk/cl050.htm; http://www.gotop.com.tw", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Anonymous:19xx:JHB, author = "Anonymous", title = "{Java\slash HotJava} boek", publisher = pub-EASY-COMPUTING, address = pub-EASY-COMPUTING:adr, pages = "????", year = "19xx", ISBN = "90-5167-117-2", ISBN-13 = "978-90-5167-117-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/dutch.html; http://www.easycomputing.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "fl. 89", URL = "http://www.easycomputing.com/", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Anonymous:19xx:JHV, author = "Anonymous", title = "{Java} Hands on {Visual J++} 1.1", publisher = pub-UNIVERSAL-CD-ROM, address = pub-UNIVERSAL-CD-ROM:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.bigmall.com/subucr.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", URL = "http://www.bigmall.com/program.html", acknowledgement = ack-nhfb, } @Book{Anonymous:19xx:Jia, author = "Anonymous", title = "{JavaBeans}", publisher = pub-UNIVERSAL-CD-ROM, address = pub-UNIVERSAL-CD-ROM:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.bigmall.com/subucr.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$60", URL = "http://www.bigmall.com/program.html", acknowledgement = ack-nhfb, } @Book{Anonymous:19xx:Jib, author = "Anonymous", title = "{Java}", publisher = pub-PITER-PUBLISHING, address = pub-PITER-PUBLISHING:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 15:37:04 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", URL = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.piter-press.ru/; http://www.piter-press.ru/koi/ourbooks/comp/progr/jpj.html", acknowledgement = ack-nhfb, language = "Russian", } @Book{Anonymous:19xx:JIC, author = "Anonymous", title = "{JavaScript} Interactive Course", publisher = pub-NUOVA-ITALIA, address = pub-NUOVA-ITALIA:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 14:46:20 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", price = "118000 Lire", URL = "????", acknowledgement = ack-nhfb, language = "Italian", } @Book{Anonymous:19xx:JIF, author = "Anonymous", title = "{Java} Intranet Framework", publisher = pub-FLAG, address = pub-FLAG:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.flag.com.tw/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://www.flag.com.tw/book_info/F8903.htm", acknowledgement = ack-nhfb, language = "Chinese", url-publisher = "http://www.flag.com.tw/", } @Book{Anonymous:19xx:JIPa, author = "Anonymous", title = "{Java Internet} Programming", publisher = pub-UNIVERSAL-CD-ROM, address = pub-UNIVERSAL-CD-ROM:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.bigmall.com/subucr.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35", URL = "http://www.bigmall.com/program.html", acknowledgement = ack-nhfb, url-publisher = "http://www.kasper-cdrom.com/; http://www.bigmall.com/subucr.html", } @Book{Anonymous:19xx:JIPb, author = "Anonymous", title = "{Java Internet} Programming", publisher = "Frank Kasper", address = "????", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, url-publisher = "http://www.kasper-cdrom.com/", } @Book{Anonymous:19xx:JIPc, author = "Anonymous", title = "{Java} Introduction to Programming 1.1", publisher = pub-UNIVERSAL-CD-ROM, address = pub-UNIVERSAL-CD-ROM:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.bigmall.com/subucr.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", URL = "http://www.bigmall.com/program.html", acknowledgement = ack-nhfb, } @Book{Anonymous:19xx:JJ, author = "Anonymous", title = "{Java} \& {Javascript}", publisher = pub-SOFTBANK, address = pub-SOFTBANK:adr, pages = "????", year = "19xx", ISBN = "4-7973-0024-8", ISBN-13 = "978-4-7973-0024-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.softbank.co.jp/softbank/publishing/", price = "2700 yen", URL = "http://www.softbank.co.jp/softbank/publishing/books/editer/pg/javahomepage/index.html", acknowledgement = ack-nhfb, language = "Japanese", url-publisher = "http://www.softbank.co.jp/softbank/publishing/", } @Book{Anonymous:19xx:JJD, author = "Anonymous", title = "Jolt {Java} Developer's Toolkit", publisher = pub-UNIVERSAL-CD-ROM, address = pub-UNIVERSAL-CD-ROM:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.bigmall.com/subucr.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", URL = "http://www.bigmall.com/program.html", acknowledgement = ack-nhfb, } @Book{Anonymous:19xx:JJW, author = "Anonymous", title = "{Java JDK1}.1 for Windows", publisher = "Ai-Publishing", address = "????", year = "19xx", ISBN = "4-87193-580-9", ISBN-13 = "978-4-87193-580-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.ai-pub.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "2,800 yen", URL = "http://www.ai-pub.co.jp/aipub/book/inet/jdk.html", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Anonymous:19xx:Jk, author = "Anonymous", title = "{JDK} 1.1", publisher = "Flag Publishing", address = "????", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "450 NT\$", acknowledgement = ack-nhfb, language = "Chinese", url-publisher = "http://www.flag.com.tw/", } @Book{Anonymous:19xx:Jka, author = "Anonymous", title = "{Java}", publisher = "CQ Publishing", address = "????", year = "19xx", ISBN = "4-7898-3086-1", ISBN-13 = "978-4-7898-3086-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.cqpub.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "2,835 yen", URL = "http://www.cqpub.co.jp/hanbai/sinkan/30861.htm", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Anonymous:19xx:Jl, author = "Anonymous", title = "{Java}", publisher = "Periplus Editions", address = "??, Italy", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 15:20:58 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", price = "14000 Lire", URL = "????", acknowledgement = ack-nhfb, language = "Italian", } @Book{Anonymous:19xx:Jla, author = "Anonymous", title = "{Java}", publisher = pub-ASCII, address = pub-ASCII:adr, year = "19xx", ISBN = "4-7561-1694-9", ISBN-13 = "978-4-7561-1694-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.ascii.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://www.ascii.co.jp/pb/book1/shinkan/detail/1190402.html", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Anonymous:19xx:JLD, author = "Anonymous", title = "{Java} Libreria Del Programmatore", publisher = "Mondadori Informatica", address = "????", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "90000 L.", acknowledgement = ack-nhfb, language = "Italian", url-author = "http://www.wizard.com/~slalani", url-publisher = "http://www.mondadori.com/", } @Book{Anonymous:19xx:Jn, author = "Anonymous", title = "{Java}", publisher = pub-SOFTBANK, address = pub-SOFTBANK:adr, year = "19xx", ISBN = "4-7973-0221-6", ISBN-13 = "978-4-7973-0221-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.softbank.co.jp/softbank/publishing/", price = "2500 yen", URL = "http://www.softbank.co.jp/sbnet/books/editer/os1/javapd/", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Anonymous:19xx:Jo, author = "Anonymous", title = "{Java}", publisher = pub-ASCII, address = pub-ASCII:adr, year = "19xx", ISBN = "4-7561-1114-9", ISBN-13 = "978-4-7561-1114-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.ascii.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://www.ascii.co.jp/pb/book1/shinkan/detail/1322406.html", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Anonymous:19xx:Jp, author = "Anonymous", title = "{Java}", publisher = pub-ASCII, address = pub-ASCII:adr, year = "19xx", ISBN = "4-7561-1721-X", ISBN-13 = "978-4-7561-1721-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.ascii.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://www.ascii.co.jp/pb/book1/shinkan/detail/1322769.html", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Anonymous:19xx:JPH, author = "Anonymous", title = "{Java} Programming Handbook", publisher = pub-SOFTBANK, address = pub-SOFTBANK:adr, pages = "????", year = "19xx", ISBN = "4-89052-895-4", ISBN-13 = "978-4-89052-895-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.softbank.co.jp/softbank/publishing/", price = "????", URL = "http://www.softbank.co.jp/softbank/publishing/books/editer/nw/index.html", acknowledgement = ack-nhfb, language = "Japanese", url-publisher = "http://www.softbank.co.jp/softbank/publishing/", } @Book{Anonymous:19xx:JPI, author = "Anonymous", title = "{Java} Programming on the Interent", publisher = pub-VENTANA, address = pub-VENTANA:adr, pages = "????", year = "19xx", ISBN = "1-56604-442-1", ISBN-13 = "978-1-56604-442-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.vmedia.com/", price = "????", acknowledgement = ack-nhfb, url-publisher = "http://www.vmedia.com/", } @Book{Anonymous:19xx:JPT, author = "Anonymous", title = "{Java} Programmers Toolkit", publisher = "Frank Kasper", address = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.kasper-cdrom.com/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", acknowledgement = ack-nhfb, } @Book{Anonymous:19xx:JPW, author = "Anonymous", title = "{Java} pour {Windows}", publisher = pub-SYBEX-FRANCE, address = pub-SYBEX-FRANCE:adr, pages = "????", year = "19xx", ISBN = "2-7361-2225-9", ISBN-13 = "978-2-7361-2225-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.fr/", note = "Includes CD-ROM.", price = "128 FF", URL = "http://www.sybex.com/", acknowledgement = ack-nhfb, language = "French", } @Book{Anonymous:19xx:Jq, author = "Anonymous", title = "{Java}", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.gotop.com.tw; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "480 NT\$", URL = "http://www.gotop.com/ch/book/new/new9706cl062.html", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Anonymous:19xx:Js, author = "Anonymous", title = "{Java}", publisher = pub-EDITION-MICRO-APPLICATIONS, address = pub-EDITION-MICRO-APPLICATIONS:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.microapp.com/", price = "195 FF", acknowledgement = ack-nhfb, language = "French", } @Book{Anonymous:19xx:JSC, author = "Anonymous", title = "{Java} Simple Comme Bonjour", publisher = pub-EDITION-MICRO-APPLICATIONS, address = pub-EDITION-MICRO-APPLICATIONS:adr, pages = "????", year = "19xx", ISBN = "2-7429-0803-X", ISBN-13 = "978-2-7429-0803-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.microapp.com/", price = "78 FF", URL = "http://www.microapp.com/", acknowledgement = ack-nhfb, language = "French", url-publisher = "http://www.microapp.com/", } @Book{Anonymous:19xx:JSKa, author = "Anonymous", title = "{Java} Starter Kit 3.0", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, pages = "????", year = "19xx", ISBN = "1-57521-311-7", ISBN-13 = "978-1-57521-311-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/", } @Book{Anonymous:19xx:JSM, author = "Anonymous", title = "{Java} Security: Managing Risks", publisher = pub-UNIVERSAL-CD-ROM, address = pub-UNIVERSAL-CD-ROM:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.bigmall.com/subucr.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$60", URL = "http://www.bigmall.com/program.html", acknowledgement = ack-nhfb, url-publisher = "http://www.bigmall.com/subucr.html", } @Book{Anonymous:19xx:JSP, author = "Anonymous", title = "{Java} Starter Pack Shareware {CD} Compilation", publisher = pub-EDITION-MICRO-APPLICATIONS, address = pub-EDITION-MICRO-APPLICATIONS:adr, pages = "????", year = "19xx", ISBN = "2-7429-0704-1", ISBN-13 = "978-2-7429-0704-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.microapp.com/", price = "149 FF", acknowledgement = ack-nhfb, language = "French", url-publisher = "http://www.microapp.com/", } @Book{Anonymous:19xx:Ju, author = "Anonymous", title = "{Java}", publisher = "Chuen Hwa Books \& Technology Co., Ltd.", address = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.chwa.com.tw; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "550 NT\$", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Anonymous:19xx:Jw, author = "Anonymous", title = "{JDK} 1.1", publisher = pub-FLAG, address = pub-FLAG:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.flag.com.tw/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "450 NT\$", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Anonymous:19xx:Jx, author = "Anonymous", title = "{Java}", publisher = pub-FLAG, address = pub-FLAG:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.flag.com.tw/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://www.flag.com.tw/book_info/F8901.htm", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Anonymous:19xx:KDD, author = "Anonymous", title = "{KickAss} Database Development with {Visual J++}", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "????", year = "19xx", ISBN = "1-57610-068-5", ISBN-13 = "978-1-57610-068-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", acknowledgement = ack-nhfb, url-publisher = "http://www.coriolis.com/", } @Book{Anonymous:19xx:PJa, author = "Anonymous", title = "Programmation {Java} 100\%", publisher = pub-EDITION-MICRO-APPLICATIONS, address = pub-EDITION-MICRO-APPLICATIONS:adr, pages = "????", year = "19xx", ISBN = "2-7429-0779-3", ISBN-13 = "978-2-7429-0779-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.microapp.com/", note = "Includes CD-ROM.", price = "99 FF", URL = "http://www.microapp.com/", acknowledgement = ack-nhfb, language = "French", } @Book{Anonymous:19xx:PJc, author = "Anonymous", title = "Programmation {Java}", publisher = pub-EASY-COMPUTING-BELGIUM, address = pub-EASY-COMPUTING-BELGIUM:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.easycomputing.com/homefr.htm; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "945 BeF", URL = "http://www.easycomputing.com/francais/programmationframe.htm", acknowledgement = ack-nhfb, language = "French", } @Book{Anonymous:19xx:PPJa, author = "Anonymous", title = "{PC} Poche {Java}", publisher = pub-EASY-COMPUTING-BELGIUM, address = pub-EASY-COMPUTING-BELGIUM:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.easycomputing.com/homefr.htm; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "400 BeF", URL = "http://www.easycomputing.com/francais/pcpocheframe.htm", acknowledgement = ack-nhfb, language = "French", } @Book{Anonymous:19xx:PPJb, author = "Anonymous", title = "{PC} Poche {Java}", publisher = pub-EDITION-MICRO-APPLICATIONS, address = pub-EDITION-MICRO-APPLICATIONS:adr, pages = "500", year = "19xx", ISBN = "2-7429-0752-1", ISBN-13 = "978-2-7429-0752-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.microapp.com/", note = "Includes CD-ROM.", price = "59 FF", URL = "http://www.microapp.com/", acknowledgement = ack-nhfb, language = "French", } @Book{Anonymous:19xx:SEUb, author = "Anonymous", title = "Special Edition Using {Solstice} Workshop", publisher = pub-QUE, address = pub-QUE:adr, pages = "????", year = "19xx", ISBN = "0-7897-0967-8", ISBN-13 = "978-0-7897-0967-7", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/que/", } @Book{Anonymous:19xx:SJa, author = "Anonymous", title = "In 20 Stappen {JavaScript}", publisher = pub-SYBEX-NEDERLAND, address = pub-SYBEX-NEDERLAND:adr, pages = "????", year = "19xx", ISBN = "90-419-0161-2", ISBN-13 = "978-90-419-0161-3", LCCN = "????", bibdate = "Mon Jun 22 11:47:17 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "fl. 19; Bfr. 380", URL = "http://www.sybex.nl/catalogus/index.html", acknowledgement = ack-nhfb, } @Book{Anonymous:19xx:SJb, author = "Anonymous", title = "{SoftwareTraining Java}", publisher = pub-DATA-BECKER, address = pub-DATA-BECKER:adr, year = "19xx", ISBN = "3-8158-1303-X", ISBN-13 = "978-3-8158-1303-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.data-becker.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "49 DM", URL = "http://www.data-becker.de/buecher/buecher.htm#softwaretr.htmljava", acknowledgement = ack-nhfb, language = "German", } @Book{Anonymous:19xx:STP, author = "Anonymous", title = "Software Training Programmatie {Java}", publisher = pub-EASY-COMPUTING, address = pub-EASY-COMPUTING:adr, year = "19xx", ISBN = "90-5167-159-8", ISBN-13 = "978-90-5167-159-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/dutch.html; http://www.easycomputing.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "fl. 50", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Anonymous:19xx:TJ, author = "Anonymous", title = "Tools For {Java}", publisher = pub-UNIVERSAL-CD-ROM, address = pub-UNIVERSAL-CD-ROM:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.bigmall.com/subucr.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$30", URL = "http://www.bigmall.com/program.html", acknowledgement = ack-nhfb, } @Book{Anonymous:19xx:UJE, author = "Anonymous", title = "Using {Java} By Example", publisher = pub-UNALIS, address = pub-UNALIS:adr, pages = "????", year = "19xx", ISBN = "957-99055-1-7 (??invalid ISBN??)", ISBN-13 = "978-957-99055-1-0 (??invalid ISBN??)", LCCN = "????", bibdate = "Mon Aug 18 07:55:47 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.unalis.com.tw/index.html", note = "Includes CD-ROM.", price = "430 NT\$", URL = "http://www.unalis.com.tw/index.html", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Anonymous:19xx:VCJ, author = "Anonymous", title = "{Visual Caf{\'e} Java}", publisher = pub-SOFTBANK, address = pub-SOFTBANK:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.softbank.co.jp/softbank/publishing/", price = "????", URL = "http://www.softbank.co.jp/books/editor/4th/Cafe_Sample/index.htm", acknowledgement = ack-nhfb, language = "Japanese", url-publisher = "http://www.softbank.co.jp/softbank/publishing/", } @Book{Anonymous:19xx:VJa, author = "Anonymous", title = "{Visual J++}", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.gotop.com.tw; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "560 NTUS\$", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Anonymous:19xx:VJb, author = "Anonymous", title = "{Visual J++} Bible", publisher = pub-EDITION-MICRO-APPLICATIONS, address = pub-EDITION-MICRO-APPLICATIONS:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.microapp.com/", price = "195 FF", URL = "http://sirius.imaginet.fr/cgi-bin/MicroApp/Webdriver?MIval=manouv01.htm&Action=Aff&ID_Categorie=1&ID_Collection=1#Produits", acknowledgement = ack-nhfb, language = "French", } @Book{Anonymous:19xx:VJc, author = "Anonymous", title = "{Visual J++}", publisher = "Edition Micro Application", address = "????", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "195 FF", URL = "http://sirius.imaginet.fr/cgi-bin/MicroApp/Webdriver?MIval=manouv01.htm&Action=Aff&ID_Categorie=1&ID_Collection=1#Produits", acknowledgement = ack-nhfb, language = "French", url-publisher = "http://www.microapp.com/", } @Book{Anonymous:19xx:VJd, author = "Anonymous", title = "{Visual J++}", publisher = pub-UNALIS, address = pub-UNALIS:adr, year = "19xx", ISBN = "957-8426-03-8 (??invalid ISBN??)", ISBN-13 = "978-957-8426-03-0 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.unalis.com.tw/index.html", price = "400 NT\$", URL = "http://202.39.182.202/unalis/book/book.asp?sku=2101633", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Anonymous:19xx:VJV, author = "Anonymous", title = "{Visual J++ Version 1.1 --- Schnell{\"u}bersicht}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, year = "19xx", ISBN = "382725257", ISBN-13 = "382725257", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "????", URL = "http://www.mut.ch/html/buchtext.htx?&x_pp=STb4XDV284xv2gpf&x_pk=Direkt&x_pa=&x_pr=Fr&x_artikelnr=25257", acknowledgement = ack-nhfb, language = "German", } @Book{Anonymous:19xx:WJ, author = "Anonymous", title = "{WinCaf{\'e} Java}", publisher = "BNN Corporation", address = "????", pages = "????", year = "19xx", ISBN = "4-89369-435-9", ISBN-13 = "978-4-89369-435-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.bnn.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "3800 yen", URL = "http://www.bnn.co.jp/books/BOOK435-9.html", acknowledgement = ack-nhfb, language = "Japanese", url-publisher = "http://www.bnn.co.jp/", } @Book{Anonymous:19xx:WSJ, author = "Anonymous", title = "{Webmaster SuperPack Java} \& {HTML 3}", publisher = pub-ZD, address = pub-ZD:adr, pages = "????", year = "19xx", ISBN = "1-56276-425-X", ISBN-13 = "978-1-56276-425-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/zdpress/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/zdpress/", } @Book{Anuff:19xx:PJc, author = "Ed Anuff", title = "Programmer en {Java}", publisher = pub-SYBEX-FRANCE, address = pub-SYBEX-FRANCE:adr, pages = "????", year = "19xx", ISBN = "2-7361-2259-3", ISBN-13 = "978-2-7361-2259-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.fr/", price = "229 FF", URL = "http://www-db.sybex.fr/cgi-bin/Sybex/Webdriver?MIval=Fiche_Book.html&Reference=2259", acknowledgement = ack-nhfb, language = "French", url-publisher = "http://www.sybex.fr/", } @Book{Aoyagi:19xx:JAP, author = "Tatsuya Aoyagi", title = "{Java API} Programming Guide", publisher = "Quality Books", address = "????", pages = "????", year = "19xx", ISBN = "4-7692-0372-1", ISBN-13 = "978-4-7692-0372-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.quality.co.jp/publishing/", price = "3,689 yen", URL = "http://www.quality.co.jp/publishing/catalog/catalog.html", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Aoyagi:19xx:JWP, author = "Tatsuya Aoyagi", title = "{Java}: {Web} Pages Alive", publisher = "Quality Books", address = "????", pages = "????", year = "19xx", ISBN = "4-7692-0352-7", ISBN-13 = "978-4-7692-0352-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.quality.co.jp/publishing/", price = "1,700 yen", URL = "http://www.cup.com/java/", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Arnold:19xx:JPLa, author = "Ken Arnold and James Gosling", title = "The {Java} Programming Language", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, pages = "????", year = "19xx", ISBN = "957-641-852-6", ISBN-13 = "978-957-641-852-5", LCCN = "????", bibdate = "Mon Aug 18 07:55:47 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Chinese translation by Khang Zien Hwa and others.", price = "400 NT\$", URL = "http://java.sun.com/people/arnold/; http://www.gotop.com.hk/cl055.htm; http://www.gotop.com.tw", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Arnold:19xx:JPLb, author = "Ken Arnold and James Gosling", title = "The {Java} Programming Language", publisher = "Piter Publishing Company", address = "????", year = "19xx", ISBN = "5-88782-218-X", ISBN-13 = "978-5-88782-218-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.piter-press.ru/", note = "Russian translation.", price = "????", acknowledgement = ack-nhfb, language = "Russian", url-author = "http://java.sun.com/people/arnold/", url-publisher = "http://www.piter-press.ru/", } @Book{Arnold:19xx:JS, author = "James Gosling and others", title = "{Java --- Die Sprachspezifikation}", publisher = pub-AW, address = pub-AW:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 17:40:22 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.addison-wesley.de/; http://www.javasoft.com/people/arnold/; http://www.javasoft.com/people/jag/", acknowledgement = ack-nhfb, language = "German", } @Book{Arnold:19xx:JTT, author = "Ken Arnold and Eric Freeman and Susan Hupfer", title = "JavaSpace Technology: {A} Tutorial and Reference Guide", publisher = pub-AW, address = pub-AW:adr, pages = "????", year = "19xx", ISBN = "0-201-30955-6", ISBN-13 = "978-0-201-30955-3", LCCN = "????", bibdate = "Mon Jun 22 11:32:00 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www2.awl.com/cseng/javaseries/index.html#Overview", acknowledgement = ack-nhfb, } @Book{Arnold:19xx:LPJ, author = "Ken Arnold and James Gosling", title = "El Lenguaje de Programacion {Java}", publisher = pub-AW, address = pub-AW:adr, pages = "????", year = "19xx", ISBN = "84-7829-010-9", ISBN-13 = "978-84-7829-010-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Spanish translation of \cite{Arnold:1996:JPL}.", price = "3950 Ptas.", acknowledgement = ack-nhfb, language = "Spanish", url-author = "http://java.sun.com/people/arnold/", } @Book{Arnold:19xx:PJa, author = "Ken Arnold and James Gosling", title = "Programando en {Java}", publisher = pub-MAKRON, address = pub-MAKRON:adr, year = "19xx", ISBN = "85-346-0772-9 (??invalid ISBN??)", ISBN-13 = "978-85-346-0772-8 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://safe.tesla.com.br/makron/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://www.awl.com/cseng/javaseries/international/85-346-0772-9.gif", acknowledgement = ack-nhfb, language = "Portuguese", url-author = "http://java.sun.com/people/arnold/", url-publisher = "http://safe.tesla.com.br/makron/", } @Book{Arnold:19xx:PJb, author = "Ken Arnold and James Gosling", title = "{Die Programmiersprache Java}", publisher = pub-AW, address = pub-AW:adr, year = "19xx", ISBN = "3-8273-1034-2 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1034-7 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "80 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Back:19xx:PJP, author = "Svend Back", title = "{Professionelle {Java}-Programmierung}", publisher = pub-ITCP, address = pub-ITCP:adr, year = "19xx", ISBN = "3-8266-0249-8 (??invalid ISBN??)", ISBN-13 = "978-3-8266-0249-8 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.itp.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "79 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Back:19xx:WPJ, author = "?. Back", title = "{Web-Programmierrung mit Java}", publisher = pub-ITCP, address = pub-ITCP:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 17:40:22 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "79 DM", URL = "http://www.thomson.com/itcp/default.html", acknowledgement = ack-nhfb, language = "German", } @Book{Baker:19xx:CDO, author = "Se{\'a}n Baker", title = "{CORBA} Distributed Objects Using {Orbix}", publisher = pub-AW, address = pub-AW:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$44", URL = "http://cseng.aw.com/bookdetail.qry?ISBN=0-201-92475-7&ptype=0", acknowledgement = ack-nhfb, } @Book{Bellin:19xx:CCB, author = "David Bellin and Susan Simone", title = "The {CRC} Card Book (Includes {Java})", publisher = pub-AW, address = pub-AW:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://cseng.aw.com/bookdetail.qry?ISBN=0-201-89535-8&ptype=0", acknowledgement = ack-nhfb, } @Book{Bercik:19xx:CBNb, author = "Bill Bercik and Sylvia Purcupile", title = "{Castanet} \& {Bongo}: No experience required ({Japanese} translation)", publisher = pub-SOFTBANK, address = pub-SOFTBANK:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.softbank.co.jp/softbank/publishing/", note = "Japanese translation.", price = "????", URL = "http://www.softbank.co.jp/books/editor/os1/castanet/", acknowledgement = ack-nhfb, language = "Japanese", url-publisher = "http://www.softbank.co.jp/softbank/publishing/", } @Book{Bielecki:19xx:JAC, author = "Jan Bielecki", title = "{Java} after {C++}", publisher = "Intersoftland", address = "????", pages = "????", year = "19xx", ISBN = "83-86861-02-9 (??invalid ISBN??)", ISBN-13 = "978-83-86861-02-6 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", acknowledgement = ack-nhfb, language = "Polish", } @Book{Bielecki:19xx:JPC, author = "Jan Bielecki", title = "{Java} po {C++} [{English: Java after C++}]", publisher = "Intersoftland", address = "Warszawa, Poland", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 17:04:01 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", URL = "http://www.enter.pol.pl/ent96.10/en5083.htm", acknowledgement = ack-nhfb, language = "Polish", } @Book{Binas-Holz:19xx:JRT, author = "Antje Binas-Holz", title = "{Java} Referentiehandboek --- {A} tot {Z}", publisher = pub-SYBEX-NEDERLAND, address = pub-SYBEX-NEDERLAND:adr, pages = "????", year = "19xx", ISBN = "90-419-0070-5", ISBN-13 = "978-90-419-0070-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/dutch.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.nl/", note = "Includes CD-ROM.", price = "fl. 69", URL = "http://www.sybex.nl/; http://www.sybex.nl/catalogus/programmeren/azjava.htm; http://www.sybex.nl/nieuw/azjava.htm", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Boccato:19xx:J, author = "Monica Boccato and Pierangelo Ferrari", title = "{Java}", publisher = pub-JACKSON-LIBRI, address = pub-JACKSON-LIBRI:adr, pages = "80", year = "19xx", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.jacksonlibri.it/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "9500 L.", acknowledgement = ack-nhfb, language = "Italian", } @Book{Bonjour:19xx:JEM, author = "Michel Bonjour and Gilles Falquet and Jacques Guyot and Andr{\'e} Le Grand", title = "{Java}: De l'esprit {\`a} la m{\'e}thode", publisher = pub-ITCP, address = pub-ITCP:adr, pages = "442", year = "19xx", ISBN = "2-84180-134-9", ISBN-13 = "978-2-84180-134-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.thomson.com/intluk.html", note = "Includes CD-ROM.", price = "240 FF", URL = "http://cuiwww.unige.ch/java/livre/; http://cuiwww.unige.ch/~bonjour/; http://cuiwww.unige.ch/~falquet/; http://cuiwww.unige.ch/~guyot/; http://cuiwww.unige.ch/~legrand/; http://www.thomson.com/intluk.html", acknowledgement = ack-nhfb, language = "French", } @Book{Brookshier:19xx:JDRa, author = "Dan Brookshier", title = "{JavaBeans} Developer's Reference", publisher = pub-DAERIM, address = pub-DAERIM:adr, year = "19xx", ISBN = "89-7280-401-0 (??invalid ISBN??)", ISBN-13 = "978-89-7280-401-7 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.drbook.co.kr/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "25,000 won", URL = "http://www.drbook.co.kr/daerim/javabref.htm", acknowledgement = ack-nhfb, language = "Korean", } @Book{Brookshier:19xx:JDRb, author = "Dan Brookshier", title = "{JavaBeans} Developer's Reference", publisher = pub-SOFTBANK, address = pub-SOFTBANK:adr, year = "19xx", ISBN = "4-7973-0365-4", ISBN-13 = "978-4-7973-0365-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.softbank.co.jp/softbank/publishing/", price = "3400 yen", URL = "http://www.softbank.co.jp/books/editor/os1/JBean/", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Buhrmann:19xx:CJ, author = "Peter Buhrmann and Thomas Kretzberg", title = "{Das CBT zu Java}", publisher = pub-AW, address = pub-AW:adr, year = "19xx", ISBN = "3-8273-1027-X (??invalid ISBN??)", ISBN-13 = "978-3-8273-1027-9 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "80 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Buhrmann:19xx:JCB, author = "Peter Buhrmann", title = "{Java 1.1 --- Computer Based Training auf CD-ROM: Eine Einf{\"u}hrung in die Programmierung}", publisher = pub-AW, address = pub-AW:adr, year = "19xx", ISBN = "3-8273-1236-1 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1236-5 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://www.addison-wesley.de/katalog/item.ppml?id=00207", acknowledgement = ack-nhfb, language = "German", } @Book{Buhrmann:19xx:JII, author = "Peter Buhrmann and Thomas Kretzberg", title = "{Java: Interaktiv im World Wide Web}", publisher = pub-AW, address = pub-AW:adr, year = "19xx", ISBN = "3-8273-1151-9 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1151-1 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "80 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Cadenhead:19xx:AEH, author = "Rogers Cadenhead", title = "Aprenda em 24 Horas {Java} 1.1", publisher = pub-EDITORE-CAMPUS, address = pub-EDITORE-CAMPUS:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.campus.com.br/about-us.htm; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://www.campus.com.br/catalogo/livro.cfm?cod_livro=20206", acknowledgement = ack-nhfb, language = "Portuguese", url-publisher = "http://www.campus.com.br/about-us.htm", } @Book{Cadenhead:19xx:JGP, author = "Rogers Cadenhead", title = "{Java} 1.1 Le Grand Poche", publisher = pub-SIMON-SCHUSTER-FRANCE, address = pub-SIMON-SCHUSTER-FRANCE:adr, pages = "????", year = "19xx", ISBN = "2-7440-0302-6", ISBN-13 = "978-2-7440-0302-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ssm.fr/", price = "99 FF", URL = "http://www.ssm.fr/catalog/fiches/0302.htm", acknowledgement = ack-nhfb, language = "French", url-publisher = "http://www.ssm.fr/", } @Book{Cadenhead:19xx:TPJ, author = "Rogers Cadenhead", title = "Le Tout en Poche {Java}", publisher = pub-SIMON-SCHUSTER-FRANCE, address = pub-SIMON-SCHUSTER-FRANCE:adr, year = "19xx", ISBN = "2-7440-0433-2", ISBN-13 = "978-2-7440-0433-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ssm.fr/", price = "62 FF", URL = "http://www.ssm.fr/catalog/fiches/0433.shtml", acknowledgement = ack-nhfb, language = "French", } @Book{Campione:19xx:JT, author = "Mary Campione and Kathy Walrath", title = "The {Java} Tutorial", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.gotop.com.tw; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Chinese translation by Thi Shiang Workshop.", price = "????", URL = "http://www.gotop.com.tw", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Campione:19xx:JTO, author = "Mary Campione and Kathy Walrath", title = "{Das Java-Tutorial: Objektorientierte Programmierung f{\"u}r das Internet}", publisher = pub-AW, address = pub-AW:adr, pages = "????", year = "19xx", ISBN = "3-8273-1050-4 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1050-7 (??invalid ISBN??)", LCCN = "????", bibdate = "Thu Aug 14 17:40:22 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://java.sun.com/people/kwalrath/; http://www.addison-wesley.de/", acknowledgement = ack-nhfb, language = "German", } @Book{Carrel:19xx:GSV, author = "Marc Carrel and others", title = "Getting Started with {VisualAge} for {Java} 1.0", publisher = "IBM Redbooks", address = "????", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.redbooks.ibm.com/SG242232/javarpc.htm", acknowledgement = ack-nhfb, url-publisher = "http://www.redbooks.ibm.com/", } @Book{Carrez:19xx:SED, author = "Christian Carrez", title = "Structures et Donn{\'e}es en {Java}, {C++}, et {Ada}", publisher = pub-MASSON, address = pub-MASSON:adr, pages = "????", year = "19xx", ISBN = "2-225-83007-X", ISBN-13 = "978-2-225-83007-5", LCCN = "????", bibdate = "Sun Oct 25 10:43:22 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.masson.fr/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "325 FF", URL = "http://www.masson.fr/cgi-bin/bookf.pl?1:1:is=222583007X", acknowledgement = ack-nhfb, language = "French", url-publisher = "http://www.masson.fr/", } @Book{Castillo:19xx:JLP, author = "Enrique Castillo and others", title = "{Java}: Un lenguaje de Programaci{\'o}n multiplataforma para {Internet}", publisher = pub-EDITORIAL-PARANINFO, address = pub-EDITORIAL-PARANINFO:adr, pages = "????", year = "19xx", ISBN = "84-283-2368-2", ISBN-13 = "978-84-283-2368-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Includes CD-ROM.", price = "5200 Ptas.", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Chan:19xx:JCLa, author = "Patrick Chan and Rosanna Lee", title = "{Java} Class Libraries", publisher = pub-AW, address = pub-AW:adr, year = "19xx", ISBN = "0-201-30011-7", ISBN-13 = "978-0-201-30011-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Chinese translation.", price = "????", acknowledgement = ack-nhfb, url-author = "http://cseng.aw.com/authordetail.qry?AuthorID=1023", url-publisher = "http://www.aw.com/", } @Book{Chan:19xx:JCLb, author = "Patrick Chan and Rosanna Lee", title = "The {Java} Class Libraries", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 07:55:47 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Chinese translation by Thi Shiang Workshop.", URL = "http://www.gotop.com.tw", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Chan:19xx:JCLc, author = "Patrick Chan and Rosanna Lee", title = "The {Java} Class Libraries Poster", publisher = pub-AW, address = pub-AW:adr, year = "19xx", ISBN = "0-201-32575-6", ISBN-13 = "978-0-201-32575-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$5", URL = "http://cseng.aw.com/bookdetail.qry?ISBN=0%2D201%2D32575%2D6&ptype=0", acknowledgement = ack-nhfb, url-author = "http://cseng.aw.com/authordetail.qry?AuthorID=1023", url-publisher = "http://www.aw.com/", } @Book{Chang:19xx:DJD, author = "Chen Ching Chang", title = "In Deep With {JavaScript} Design", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, pages = "????", year = "19xx", ISBN = "957-641-820-8", ISBN-13 = "978-957-641-820-4", LCCN = "????", bibdate = "Mon Aug 18 07:55:47 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "460 NT\$", URL = "http://www.gotop.com/", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Chapman:19xx:JRCa, author = "Randy Chapman", title = "{Java} Reference Card (Applets, {AWT}, Utils)", publisher = pub-SSC, address = pub-SSC:adr, pages = "????", year = "19xx", ISBN = "0-916151-93-X", ISBN-13 = "978-0-916151-93-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ssc.com/", price = "US\$4", acknowledgement = ack-nhfb, xxnote = "Duplicate ISBN with \cite{Anonymous:1996:JAW}.", } @Book{Charts:19xx:JBC, author = "Bar Charts", title = "{Java} Bar Chart", publisher = pub-IDG, address = pub-IDG:adr, pages = "????", year = "19xx", ISBN = "1-57222-211-5", ISBN-13 = "978-1-57222-211-3", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, url-publisher = "http://www.idgbooks.com/", } @Book{Chauvet:19xx:CAJa, author = "Jean-Marie Chauvet", title = "{CORBA}, {ActiveX} y {JavaBeans}", publisher = "Ediciones Gesti{\'o}n 2000, S.A.", address = "????", pages = "????", year = "19xx", ISBN = "84-8088-185-2", ISBN-13 = "978-84-8088-185-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.intercom.es/gestio2000/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", price = "2985 Ptas.", URL = "http://www.intercom.es/gestio2000/Novedad.html#n_corba_activex", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Che:19xx:FJP, author = "Chen Hung Che and others", title = "Foundation of {Java} Programming for the {WWW}", publisher = pub-UNALIS, address = pub-UNALIS:adr, pages = "????", year = "19xx", ISBN = "957-22-2399-2", ISBN-13 = "978-957-22-2399-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.unalis.com.tw/index.html", price = "490 NT\$", acknowledgement = ack-nhfb, language = "Chinese", url-publisher = "http://www.unalis.com.tw/index.html", } @Book{Chiang:19xx:IJ, author = "Frank Fu-Sun Chiang and H. S. Chen and Jerry P. Yeh", title = "Introduction to {Java}", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, pages = "452", year = "19xx", ISBN = "957-641-756-2", ISBN-13 = "978-957-641-756-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.gotop.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "460 NT\$", URL = "http://oceaninfo.ife.ntou.edu.tw/java/javaintr.htm", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Chiang:19xx:JRB, author = "Frank Fu-Sun Chiang and H. S. Chen and Jerry P. Yeh", title = "{Java} Resource Book", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, pages = "493", year = "19xx", ISBN = "957-641-757-0", ISBN-13 = "978-957-641-757-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.gotop.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "440 NT\$", URL = "http://oceaninfo.ife.ntou.edu.tw/java/javareso.htm", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Chip:19xx:HJ, author = "Chip", title = "{HTML} a {Java}", publisher = "Computer Press", address = "????", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.cpress.cz/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "298 K{\`e}", URL = "http://vltava.cpress.cz/cgi-bin/vltava/genbook.cgi?book=prg402", acknowledgement = ack-nhfb, language = "Czech", url-publisher = "http://www.cpress.cz/", } @Book{Chung:19xx:SCJ, author = "Whang You Chung", title = "Search on {CGI}, {Java} and {JavaScript}", publisher = "Ti Shan Bho Books", address = "??, Taiwan", pages = "????", year = "19xx", ISBN = "957-23-0425-9", ISBN-13 = "978-957-23-0425-9", LCCN = "????", bibdate = "Mon Aug 18 07:55:47 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "350 NT\$", URL = "????", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Clavel:19xx:JS, author = "Gilles Clavel", title = "{Java}: La synth{\`e}se", publisher = pub-MASSON, address = pub-MASSON:adr, pages = "????", year = "19xx", ISBN = "2-7296-0656-4", ISBN-13 = "978-2-7296-0656-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.masson.fr/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "225 FF", URL = "http://www.masson.fr/cgi-bin/bookf.pl?1:1:is=2729606564", acknowledgement = ack-nhfb, language = "French", url-publisher = "http://www.masson.fr/", } @Book{Clements:19xx:JDA, author = "Tom Clements and Tom Saulpaugh", title = "{Java OS} Design and Architecture", publisher = pub-AW, address = pub-AW:adr, pages = "????", year = "19xx", ISBN = "0-201-18393-5", ISBN-13 = "978-0-201-18393-1", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", acknowledgement = ack-nhfb, url-publisher = "http://www.aw.com/", xxnote = "Duplicate ISBN with \cite{Liang:19xx:JNI}.", } @Book{Cobley:19xx:CGJ, author = "Andy Cobley", title = "The Complete Guide to {Java}", publisher = "Computer Step", address = "????", pages = "????", year = "19xx", ISBN = "1-874029-48-2", ISBN-13 = "978-1-874029-48-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.computerstep.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "UK\pounds 15", URL = "http://www.computerstep.com/1874029482.htm", acknowledgement = ack-nhfb, url-publisher = "http://www.computerstep.com/", } @Book{Cobley:19xx:VJE, author = "Andy Cobley", title = "{Visual J++} in easy steps", publisher = "Computer Step", address = "????", pages = "????", year = "19xx", ISBN = "1-874029-75-X", ISBN-13 = "978-1-874029-75-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.computerstep.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://www.computerstep.com/187402975x.htm", acknowledgement = ack-nhfb, url-publisher = "http://www.computerstep.com/", } @Book{Cohn:19xx:WPVa, author = "Mike Cohn", title = "{Web-Programmierung mit Visual J++}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, year = "19xx", ISBN = "3-8272-5211-3 (??invalid ISBN??)", ISBN-13 = "978-3-8272-5211-1 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "80 DM", URL = "http://www.mut.ch/html/buchinfo.htx?&x_pp=dJgxRqA9wlAYNijX&x_az=10&x_pk=VpLvjnsx7b5V&x_pa=B&x_pr=oS&x_bestell=25211&x_stichwort=Cohn&x_sprache=A&x_start=1&x_gefunden=5&x_query=&x_lastpage=buchfund&x_soft=&x_suchewo=A", acknowledgement = ack-nhfb, language = "German", } @Book{Coriolis:19xx:VJP, author = "{The Coriolis Group}", title = "{Visual J++} Programming {EXplorer}", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "700", year = "19xx", ISBN = "1-57610-122-3", ISBN-13 = "978-1-57610-122-3", LCCN = "????", bibdate = "Tue Aug 19 15:00:16 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$39.99, CDN\$55.99", URL = "http://www.coriolis.com/", acknowledgement = ack-nhfb, } @Book{Cornell:19xx:CJa, author = "Gary Cornell and Cay S. Horstmann", title = "Core {Java}", publisher = pub-MAKRON, address = pub-MAKRON:adr, year = "19xx", ISBN = "85-346-0839-3 (??invalid ISBN??)", ISBN-13 = "978-85-346-0839-8 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://safe.tesla.com.br/makron/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://safe.tesla.com.br/makron/options/livro.asp?id=593", acknowledgement = ack-nhfb, language = "Portuguese", } @Book{Cornell:19xx:CJb, author = "Gary Cornell and Cay S. Horstmann", title = "Core {Java}", publisher = pub-MONDADORI-INFORMATICA, address = pub-MONDADORI-INFORMATICA:adr, year = "19xx", ISBN = "88-7131-791-2", ISBN-13 = "978-88-7131-791-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mondadori.com/", price = "90,000 L.", URL = "http://education.mondadori.com/books/SchBook.asp?Libro=123", acknowledgement = ack-nhfb, language = "Italian", url-author = "http://www.horstmann.com/", url-publisher = "http://www.mondadori.com/", } @Book{Cornell:19xx:CJc, author = "Gary Cornell and Cay S. Horstmann", title = "Core {Java}", publisher = pub-ASCII, address = pub-ASCII:adr, edition = "Second", year = "19xx", ISBN = "4-7561-1719-8", ISBN-13 = "978-4-7561-1719-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.ascii.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Japanese translation.", price = "????", URL = "http://www.ascii.co.jp/pb/book1/shinkan/detail/1322773.html", acknowledgement = ack-nhfb, language = "Japanese", url-author = "http://www.horstmann.com/", url-publisher = "http://www.ascii.co.jp/", } @Book{Courtney:19xx:JSB, editor = "Tom Courtney", title = "{Java-SIG}'s 100 Best Applets", publisher = pub-NUOVA-ITALIA, address = pub-NUOVA-ITALIA:adr, pages = "????", year = "19xx", ISBN = "80-471-1800-1 (??Invalid checksum??)", ISBN-13 = "978-80-471-1800-1 (??Invalid checksum??)", LCCN = "????", bibdate = "Mon May 11 09:42:50 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "72000 L.", acknowledgement = ack-nhfb, language = "Italian", } @Book{Creek:19xx:JA, author = "Walnut Creek", title = "{Java} Applets", publisher = "Walnut Creek", address = "????", year = "19xx", ISBN = "1-57711-065-X", ISBN-13 = "978-1-57711-065-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.cdrom.com; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$30", URL = "http://www.cdrom.com/titles/prog/javaapp.htm", acknowledgement = ack-nhfb, } @Book{Culwin:19xx:JAP, author = "Fintan Culwin", title = "A {Java\slash AWT} Programmer's Primer", publisher = pub-PH, address = pub-PH:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "????", URL = "http://www.prenhall.com/allbooks/esm_0139088490.html; http://www.scism.sbu.ac.uk/jfl/", acknowledgement = ack-nhfb, url-publisher = "http://www.prenhall.com/", } @Book{Culwin:19xx:JOF, author = "Fintan Culwin", title = "{Java} an Object First Approach", publisher = pub-PH, address = pub-PH:adr, pages = "????", year = "19xx", ISBN = "0-13-858457-X (??Invalid checksum??)", ISBN-13 = "978-0-13-858457-3 (??Invalid checksum??)", LCCN = "????", bibdate = "Mon May 11 09:42:40 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.scism.sbu.ac.uk/jfl/", acknowledgement = ack-nhfb, url-publisher = "http://www.prenhall.com/", } @Book{Daconta:19xx:JVC, author = "Mike Daconta", title = "{Java} voor {C\slash C++} programmeurs", publisher = pub-AW-NL, address = pub-AW-NL:adr, pages = "????", year = "19xx", ISBN = "90-6789-759-0", ISBN-13 = "978-90-6789-759-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/dutch.html; http://www.adweslo.nl/explorer.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "fl. 80", URL = "????", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Dadda:19xx:USJ, author = "Roberto Dadda", title = "Usare Subito {Java E I} Browser {Java}", publisher = pub-JACKSON-LIBRI, address = pub-JACKSON-LIBRI:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.jacksonlibri.it/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "35000 L.", acknowledgement = ack-nhfb, language = "Italian", url-publisher = "http://www.jacksonlibri.it/", } @Book{Dalheimer:19xx:JVM, author = "Matthias K. Dalheimer", title = "{Java Virtual Machine, Sprache, Konzept\ldots{}}", publisher = pub-ORA, address = pub-ORA:adr, year = "19xx", ISBN = "3-930673-73-8 (??invalid ISBN??)", ISBN-13 = "978-3-930673-73-5 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ora.de/", price = "29 DM", URL = "http://www.oreilly.de/german/essential/javavm/index.html", acknowledgement = ack-nhfb, language = "German", } @Book{Danesh:19xx:J, author = "Armen Danesh", title = "{JavaScript}", publisher = pub-SIMON-SCHUSTER-FRANCE, address = pub-SIMON-SCHUSTER-FRANCE:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 18:51:01 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "199 FF", URL = "http://www.ssm.fr/", acknowledgement = ack-nhfb, language = "French", } @Book{Davis:19xx:AJ, author = "Stephen R. Davis", title = "Aprenda {Java} Ya", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 13:17:24 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Spanish translation of \cite{Davis:1996:LJN}.", price = "5500 Ptas", URL = "http://mexplaza.udg.mx/McGraw/", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Davis:19xx:AJA, author = "Stephen R. Davis", title = "Aprenda {Java} Agora", publisher = pub-EDITORE-CAMPUS, address = pub-EDITORE-CAMPUS:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.campus.com.br/about-us.htm; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://www.campus.com.br/catalogo/livro.cfm?cod_livro=20147", acknowledgement = ack-nhfb, language = "Portuguese", } @Book{Davis:19xx:FJa, author = "Stephen Davis", title = "Formation 140 {Java}", publisher = pub-EYROLLES, address = pub-EYROLLES:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 18:51:01 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.estp.fr/eyrolles", acknowledgement = ack-nhfb, language = "French", xxnote = "Is this the same as \cite{Davis:1996:FJ}??", } @Book{Davis:19xx:OIJ, author = "Stephen R. Davis and others", title = "Opeta itsellesi {Java Visual J++}", publisher = "Suomen Atk-kustannus Oy", address = "PL 68, 02601 Espoo, Finland", pages = "387", year = "19xx", ISBN = "951-762-480-8", ISBN-13 = "978-951-762-480-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.satku.fi/; http://wwwiz.com/books/european.html", note = "Includes CD-ROM.", price = "295 Markka", URL = "http://www.satku.fi/; http://www.satku.fi/4jvisual.htm", acknowledgement = ack-nhfb, language = "Finnish", } @Book{December:19xx:JEU, author = "John December", title = "{Java-Einf{\"u}hrung und {\"U}berblick}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, year = "19xx", ISBN = "3-8272-5055-2 (??invalid ISBN??)", ISBN-13 = "978-3-8272-5055-1 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "49 DM", URL = "http://www.mut.ch/html/buchinfo.htx?&x_pp=dJgxRqA9wlAYNijX&x_az=10&x_pk=VpLvjnsx7b5V&x_pa=B&x_pr=oS&x_bestell=25055&x_stichwort=December&x_sprache=D&x_start=1&x_gefunden=2&x_query=&x_lastpage=buchfund&x_soft=&x_suchewo=A", acknowledgement = ack-nhfb, language = "German", } @Book{December:19xx:JIM, author = "John December", title = "{Java} --- Immagini in movimento nelle pagine {WWW}", publisher = pub-TECHNICE-NUOVE, address = pub-TECHNICE-NUOVE:adr, pages = "????", year = "19xx", ISBN = "88-8480-253-0 (??Invalid checksum??)", ISBN-13 = "978-88-8480-253-8 (??Invalid checksum??)", LCCN = "????", bibdate = "Mon May 11 09:42:45 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.tecnet.it/", price = "39000 L.", URL = "http://www.tecnet.it/cgi-shl/dbml.exe?Action=Query&Template=/LibriQueryDueLibro.dbm&ISBN=02530", acknowledgement = ack-nhfb, language = "Italian", url-publisher = "http://www.tecnet.it/", } @Book{December:19xx:PJb, author = "John December", title = "Presenting {Java}", publisher = "Focus-Computers Publishing", address = "????", year = "19xx", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.focus.co.il/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Hebrew translation.", price = "????", acknowledgement = ack-nhfb, language = "Hebrew", } @Book{Deitel:19xx:CPJ, author = "Harvey M. Deitel and Paul J. Deitel", title = "Como Programar en {Java}", publisher = pub-PH, address = pub-PH:adr, year = "19xx", ISBN = "970-17-0044-9 (??invalid ISBN??)", ISBN-13 = "978-970-17-0044-0 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prentice.com.mx/", price = "????", URL = "http://www.mcl.com.mx/sotano/prentice.fm$Retrive?RecID=2727&html=HTMLRecord1", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Deshpande:19xx:CDA, author = "Salil Deshpande", title = "{CORBA} and Distributed Applications Including {Java}", publisher = pub-PH, address = pub-PH:adr, pages = "????", year = "19xx", ISBN = "0-13-349960-X", ISBN-13 = "978-0-13-349960-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$45", acknowledgement = ack-nhfb, url-publisher = "http://www.prenhall.com/", } @Book{Dicken:19xx:WDI, author = "Hans Dicken", title = "{Web-Datenbank-Integration mit Java}", publisher = pub-ITCP, address = pub-ITCP:adr, year = "19xx", ISBN = "3-8266-0343-5 (??invalid ISBN??)", ISBN-13 = "978-3-8266-0343-3 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.itp.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "69 DM", URL = "http://www.itp.de/datenbanken/0343/0343.html", acknowledgement = ack-nhfb, language = "German", } @Book{Diehl:19xx:JCS, author = "Stephan Diehl", title = "{Java \& Co. --- Die Sprachen des Webs: HTML, VRML, Java, JavaScript}", publisher = pub-AWV, address = pub-AWV:adr, year = "19xx", ISBN = "3-8273-1124-1 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1124-5 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "50 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Dreyfus:19xx:JM, author = "Michel Dreyfus", title = "{JavaScript MagaPoche}", publisher = pub-SYBEX-FRANCE, address = pub-SYBEX-FRANCE:adr, pages = "????", year = "19xx", ISBN = "2-7361-2359-X", ISBN-13 = "978-2-7361-2359-8", LCCN = "????", bibdate = "Thu Aug 14 18:51:01 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", URL = "http://www.sybex.fr/", acknowledgement = ack-nhfb, language = "French", } @Book{Drix:19xx:LCN, author = "Drix", title = "Langage {C} Norme {ANSI} vers une Pens{\'e}e Objet en {Java}", publisher = pub-MASSON, address = pub-MASSON:adr, edition = "Third", pages = "????", year = "19xx", ISBN = "2-225-82937-3", ISBN-13 = "978-2-225-82937-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.masson.fr/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "225 FF", acknowledgement = ack-nhfb, language = "French", url-publisher = "http://www.masson.fr/", } @Book{Ek:19xx:JAT, author = "Jesper Ek", title = "{Java}-applets tips och till{\"a}mpningar", publisher = pub-PAGINA, address = pub-PAGINA:adr, pages = "????", year = "19xx", ISBN = "91-636-0427-2 (??invalid ISBN??)", ISBN-13 = "978-91-636-0427-0 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.pagina.se/", price = "471 krona", URL = "http://www.pagina.se/butik/product.html?9,20427,-1,unjqpsbwrv", acknowledgement = ack-nhfb, language = "Swedish", url-publisher = "http://www.pagina.se/", } @Book{Ek:19xx:JOT, author = "Jesper Ek", title = "{Java}-ohjelmointi tutuksi", publisher = pub-PAGINA, address = pub-PAGINA:adr, pages = "????", year = "19xx", ISBN = "951-644-089-4", ISBN-13 = "978-951-644-089-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.pagina.fi/", price = "????", URL = "http://www.pagina.fi/kirjat/44089.html", acknowledgement = ack-nhfb, language = "Finnish", url-publisher = "http://www.pagina.fi/", } @Book{Ek:19xx:JPIa, author = "Jesper Ek", title = "{Java}-programmering: En introduction", publisher = pub-PAGINA, address = pub-PAGINA:adr, pages = "????", year = "19xx", ISBN = "91-636-0419-1 (??invalid ISBN??)", ISBN-13 = "978-91-636-0419-5 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.pagina.se/", price = "292 krona", URL = "http://www.pagina.se/butik/product.html?9,20419,-1,cjnblpapne", acknowledgement = ack-nhfb, language = "Swedish", url-publisher = "http://www.pagina.se/", } @Book{Ek:19xx:JPIb, author = "Jesper Ek and Rasmus Ekman", title = "{Java}-programmering. En introduktion", publisher = pub-PAGINA, address = pub-PAGINA:adr, edition = "Second", pages = "????", year = "19xx", ISBN = "91-636-0474-4 (??invalid ISBN??)", ISBN-13 = "978-91-636-0474-4 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.pagina.fi/", price = "317 krona", URL = "http://www.pagina.se/cgi-bin/ps_main_show.pl?art=20474", acknowledgement = ack-nhfb, language = "Swedish", url-publisher = "http://www.pagina.fi/", } @Book{Ek:19xx:LOJ, author = "Jesper Ek", title = "{L}{\"a}ttpocket om {Java}-programmering", publisher = pub-PAGINA, address = pub-PAGINA:adr, pages = "????", year = "19xx", ISBN = "91-636-0477-9 (??invalid ISBN??)", ISBN-13 = "978-91-636-0477-5 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.pagina.se/", price = "245 krona", URL = "http://www.pagina.se/cgi-bin/ps_main_show.pl?art=20477", acknowledgement = ack-nhfb, language = "Swedish", url-publisher = "http://www.pagina.se/", } @Book{Englander:19xx:DJa, author = "Robert Englander", title = "Developing {JavaBeans}", publisher = pub-ORA, address = pub-ORA:adr, year = "19xx", ISBN = "4-900900-47-8", ISBN-13 = "978-4-900900-47-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.oreilly.co.jp/", note = "Japanese translation.", price = "3,700 yen", URL = "http://www.ohmsha.co.jp/data/books/contents/4-900900-47-8.htm", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Espeset:19xx:HPJ, author = "Tonny Espeset", title = "High Performance {JBuilder} Programming", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "700", year = "19xx", ISBN = "1-57610-067-7", ISBN-13 = "978-1-57610-067-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.99, CDN\$69.99", URL = "http://www.coriolis.com/", acknowledgement = ack-nhfb, xxauthor = "{The Coriolis Group}", } @Book{Feghhi:19xx:WDGb, author = "Jalal Feghhi", title = "{Web} Developer's Guide to {JavaBeans}", publisher = pub-NUOVA-ITALIA, address = pub-NUOVA-ITALIA:adr, pages = "????", year = "19xx", ISBN = "81-576-1012-1 (??Invalid checksum??)", ISBN-13 = "978-81-576-1012-9 (??Invalid checksum??)", LCCN = "????", bibdate = "Mon May 11 09:42:54 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "107000 L.", acknowledgement = ack-nhfb, language = "Italian", } @Book{Feil:19xx:GLV, author = "Peter Feil and others", title = "El Gran Libro de {Visual J++}", publisher = pub-EDITORIAL-MARCOMBO, address = pub-EDITORIAL-MARCOMBO:adr, pages = "????", year = "19xx", ISBN = "84-267-1112-x", ISBN-13 = "978-84-267-1112-0", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "4200 Ptas.", acknowledgement = ack-nhfb, language = "Spanish", } @Book{FerrerAbello:19xx:JLI, author = "Antonio M. {Ferrer Abell{\'o}}", title = "{Java} el Lenguaje de {Internet}", publisher = "Abeto Editorial", address = "Marqu{\'e}s de Portugalete 10, 28017 Madrid, Spain", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 16:48:54 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Includes CD-ROM.", URL = "http://www.virtualsw.es/abeto/ (??)", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Flanagan:19xx:JENa, author = "David Flanagan", title = "{Java} Examples in a Nutshell", publisher = pub-ORA, address = pub-ORA:adr, year = "19xx", ISBN = "4-900900-09-5", ISBN-13 = "978-4-900900-09-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.oreilly.co.jp/", note = "Japanese translation.", price = "4,300 yen", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Flanagan:19xx:JNC, author = "David Flanagan", title = "{Java} in a Nutshell ({Chinese} translation by {Liao Tze Shien})", publisher = pub-IMAGE-ART, address = pub-IMAGE-ART:adr, pages = "????", year = "19xx", ISBN = "957-9641-16-1", ISBN-13 = "978-957-9641-16-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Chinese translation by Liao Tze Shien.", price = "520 NT\$", acknowledgement = ack-nhfb, language = "Chinese", url-author = "http://www.ora.com/catalog/javanut/author.html", } @Book{Flanagan:19xx:PVJ, author = "David Flanagan and others", title = "Programov{\'a}n{\'\i} v jazyce {Java}", publisher = "Computer Press", address = "Brno-Bystrc, Czech Republic", pages = "????", year = "19xx", ISBN = "80-85896-78-8 (??invalid ISBN??)", ISBN-13 = "978-80-85896-78-7 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.cpress.cz/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Czech translation of \cite{Flanagan:1997:JNa}. Includes CD-ROM.", price = "270 K{\`e}", URL = "http://vltava.cpress.cz/cgi-bin/vltava/genbook.cgi?book=prg339; http://www.cpress.cz/; http://www.ora.com/catalog/jscriptbeta/author.html", acknowledgement = ack-nhfb, language = "Czech", } @Book{Fraizer:19xx:AJM, author = "Colin Fraizer and Jill Bond", title = "{API Java} Manual De Refer{\^e}ncia: Pacotes de {API} java.applet e java.awt", publisher = pub-MAKRON, address = pub-MAKRON:adr, pages = "416", year = "19xx", ISBN = "85-346-0758-3", ISBN-13 = "978-85-346-0758-2", LCCN = "????", bibdate = "Mon Aug 18 12:52:23 1997", bibsource = "http://safe.tesla.com.br/makron/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Portuguese translation of \cite{Fraizer:1996:JAR}.", price = "R\$ 49,00", URL = "http://safe.tesla.com.br/makron/options/livro.asp?id=66; http://www.makron.com/", acknowledgement = ack-nhfb, language = "Portuguese", url-publisher = "http://safe.tesla.com.br/makron/", } @Book{Friedel:19xx:COD, author = "David Friedel and others", title = "{Caf{\'e}}: Outils de {D}{\'e}veloppment Visuel pour {Java}", publisher = pub-ITCP, address = pub-ITCP:adr, pages = "????", year = "19xx", ISBN = "2-84180-138-1", ISBN-13 = "978-2-84180-138-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.thomson.com/intluk.html", note = "Includes CD-ROM.", price = "248 FF", URL = "http://www.thomson.com/intluk.html", acknowledgement = ack-nhfb, language = "French", } @Book{Friedel:19xx:CPFb, author = "David Friedel", title = "{Caf{\'e}} Programming {FrontRunner}", publisher = pub-EDITORIAL-PARANINFO, address = pub-EDITORIAL-PARANINFO:adr, pages = "????", year = "19xx", ISBN = "84-283-2413-1", ISBN-13 = "978-84-283-2413-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Friedel:19xx:JPC, author = "David Friedel and Anthony Potts", title = "{Java-Programmierung mit Caf{\'e}}", publisher = pub-ITCP, address = pub-ITCP:adr, year = "19xx", ISBN = "3-8266-0315-X (??invalid ISBN??)", ISBN-13 = "978-3-8266-0315-0 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.itp.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "50 DM", URL = "http://www.itp.de/progra/0315/0315.html", acknowledgement = ack-nhfb, language = "German", } @Book{Froherz:19xx:TPJ, author = "Michael Froherz", title = "{T{\"o}nne: Projekte mit Java}", publisher = pub-ITCP, address = pub-ITCP:adr, year = "19xx", ISBN = "3-8266-0316-8 (??invalid ISBN??)", ISBN-13 = "978-3-8266-0316-7 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.itp.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "69 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Frohlich:19xx:LNS, author = "Marcus Fr{\"o}hlich", title = "{Lernen Sie in Nur 14 Stunden {Java} Applets zu Programmieren und Einzusetzen}", publisher = pub-TEWI, address = pub-TEWI:adr, year = "19xx", ISBN = "3-89362-465-4", ISBN-13 = "978-3-89362-465-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.tewi.de/", price = "39 DM", URL = "http://www.tewi.de/scripts/tewi/details_ISBN.idc?ISBN=3-89362-465-4", acknowledgement = ack-nhfb, language = "German", } @Book{Garcia:19xx:PVJ, author = "Alvaro Ojeda Garc{\'\i}a", title = "Programaci{\'o}n en {Visual J++}", publisher = pub-ANAYA-MULTIMEDIA, address = pub-ANAYA-MULTIMEDIA:adr, pages = "????", year = "19xx", ISBN = "84-415-0171-8", ISBN-13 = "978-84-415-0171-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.anayamultimedia.es/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "4,595 Ptas.", URL = "http://www.anayamultimedia.es/cgi-multi/notas_prensa.pl?2318006&3&0&1", acknowledgement = ack-nhfb, language = "Spanish", url-publisher = "http://www.anayamultimedia.es/", } @Book{Geib:19xx:CCP, author = "Jean-Marc Geib and others", title = "{CORBA}: Des concepts {\`a} la pratique", publisher = pub-MASSON, address = pub-MASSON:adr, pages = "????", year = "19xx", ISBN = "2-225-83046-0", ISBN-13 = "978-2-225-83046-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.masson.fr/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "165 FF", URL = "http://www.masson.fr/cgi-bin/bookf.pl?1:1:is=2225830460", acknowledgement = ack-nhfb, language = "French", url-publisher = "http://www.masson.fr/", } @Book{Goggin:19xx:JPF, author = "Terence Goggin and Matt Telles and Steven Fraser", title = "{JBuilder} Programming {FrontRunner}", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "450", year = "19xx", ISBN = "1-57610-004-9", ISBN-13 = "978-1-57610-004-2", LCCN = "????", bibdate = "Tue Aug 19 15:08:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$29.99, CDN\$41.99", URL = "http://www.coriolis.com/", acknowledgement = ack-nhfb, xxnote = "Duplicate ISBN with \cite{Duntemann:1996:JPF,Goggin:19xx:JPF,Kerievsky:1997:OJP}.", } @Book{Golla:19xx:EHKb, author = "Andreas F. Golla", title = "{Erste-Hilfe-Kasten {Java} mit Jewelbox}", publisher = pub-SYBEX-VERLAG, address = pub-SYBEX-VERLAG:adr, pages = "????", year = "19xx", ISBN = "3-8155-9942-3", ISBN-13 = "978-3-8155-9942-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.de/", note = "Includes CD-ROM.", price = "40 DM", URL = "http://www.abc.de/gutenb/verlage/sybex/sybex.htm; http://www.sybex.de/", acknowledgement = ack-nhfb, language = "German", } @Book{Goodman:19xx:BMG, author = "Danny Goodman", title = "{Bongo Marimba} Guia Oficial", publisher = pub-PH, address = pub-PH:adr, pages = "????", year = "19xx", ISBN = "84-8322-033-4", ISBN-13 = "978-84-8322-033-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prentice.com.mx/", price = "????", acknowledgement = ack-nhfb, language = "Spanish", url-publisher = "http://prenhall.com.mx/", } @Book{Goodman:19xx:JH, author = "Danny Goodman", title = "Het {JavaScript} Handboek", publisher = pub-AW, address = pub-AW:adr, pages = "????", year = "19xx", ISBN = "90-6789-816-3", ISBN-13 = "978-90-6789-816-4", LCCN = "????", bibdate = "Mon Aug 18 07:31:30 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/dutch.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "fl. 90", URL = "http://www.dannyg.com/", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Gosling:19xx:JA, author = "James Gosling and others", title = "{Java --- Die Anwendungsprogrammierschnittstelle}", publisher = pub-AW, address = pub-AW:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 17:40:22 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://java.sun.com/people/jag/; http://www.addison-wesley.de/; http://www.javasoft.com/people/jag/", acknowledgement = ack-nhfb, language = "German", } @Book{Gosling:19xx:JABa, author = "James Gosling", title = "{Das {Java} API, Band 1: Die Basispakete}", publisher = pub-AW, address = pub-AW:adr, year = "19xx", ISBN = "3-8273-1040-7 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1040-8 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", acknowledgement = ack-nhfb, language = "German", } @Book{Gosling:19xx:JABb, author = "James Gosling", title = "{Das {Java} API, Band 2: Das Window Toolkit und Applets}", publisher = pub-AW, address = pub-AW:adr, year = "19xx", ISBN = "3-8273-1084-9 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1084-2 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", acknowledgement = ack-nhfb, language = "German", } @Book{Gosling:19xx:JAPa, author = "James Gosling and others", title = "The {Java} Application Programming Interface, Vol. 1", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.gotop.com.tw; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Chinese translation by Thi Shiang Workshop.", price = "????", URL = "http://java.sun.com/people/jag/; http://www.gotop.com.tw", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Gosling:19xx:JAPb, author = "James Gosling and others", title = "The {Java} Application Programming Interface, Vol. 2", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.gotop.com.tw; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Chinese translation by Thi Shiang Workshop.", price = "????", URL = "http://java.sun.com/people/jag/; http://www.gotop.com.tw", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Gosling:19xx:JAVa, author = "James Gosling and others", title = "The {Java API} Vol. 1 ({Japanese} translation)", publisher = pub-AW, address = pub-AW:adr, pages = "????", year = "19xx", ISBN = "4-7952-9688-X", ISBN-13 = "978-4-7952-9688-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Japanese translation.", price = "????", URL = "http://www.awl.com/cseng/javaseries/international/japan.htm", acknowledgement = ack-nhfb, language = "Japanese", url-author = "http://java.sun.com/people/jag/", } @Book{Gosling:19xx:JAVb, author = "James Gosling and others", title = "The {Java API} Vol. 2 ({Japanese} translation)", publisher = pub-AW, address = pub-AW:adr, pages = "????", year = "19xx", ISBN = "4-7952-9689-8", ISBN-13 = "978-4-7952-9689-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Japanese translation.", price = "????", URL = "http://www.awl.com/cseng/javaseries/international/japan.htm", acknowledgement = ack-nhfb, language = "Japanese", url-author = "http://java.sun.com/people/jag/", } @Book{Gosling:19xx:JLS, author = "James Gosling and others", title = "The {Java} Language Specification", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Mar 03 08:24:49 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Chinese translation by Thi Shiang Workshop.", URL = "http://java.sun.com/people/jag/; http://www.gotop.com.tw", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Gosling:19xx:JLSb, author = "James Gosling and others", title = "The {Java} Language Specification", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.gotop.com.tw; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Chinese translation by Thi Shiang Workshop.", price = "????", URL = "http://java.sun.com/people/jag/; http://www.gotop.com.tw", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Gosling:19xx:JS, author = "James Gosling", title = "{Java --- Die Sprachspezifikation}", publisher = pub-AW, address = pub-AW:adr, year = "19xx", ISBN = "3-8273-1038-5 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1038-5 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", acknowledgement = ack-nhfb, language = "German", } @Book{Griffith:19xx:JT, author = "Steven Griffith and Mark Chan", title = "{Java}: 1001 Tips", publisher = pub-OHMSHA, address = pub-OHMSHA:adr, pages = "????", year = "19xx", ISBN = "4-274-06223-6", ISBN-13 = "978-4-274-06223-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ohmsha.co.jp/", price = "5,000 yen", URL = "http://www.ohmsha.co.jp/data/books/contents/4-274-06223-6.htm", acknowledgement = ack-nhfb, language = "Japanese", url-publisher = "http://www.ohmsha.co.jp/", } @Book{Groner:19xx:JAS, author = "Daniel Groner", title = "{Java API SuperBible}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, year = "19xx", ISBN = "3-8272-4507-9 (??invalid ISBN??)", ISBN-13 = "978-3-8272-4507-6 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "119 DM", URL = "http://www.mut.ch/html/buchinfo.htx?&x_pp=dJgxRqA9wlAYNijX&x_az=10&x_pk=VpLvjnsx7b5V&x_pa=B&x_pr=oS&x_bestell=24507&x_stichwort=Groner&x_sprache=A&x_start=1&x_gefunden=2&x_query=&x_lastpage=buchfund&x_soft=&x_suchewo=A", acknowledgement = ack-nhfb, language = "German", } @Book{Group:19xx:KVJ, author = "Coriolis Group", title = "Kickass {Visual J++} Programming", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "????", year = "19xx", ISBN = "1-57610-093-6", ISBN-13 = "978-1-57610-093-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", acknowledgement = ack-nhfb, url-publisher = "http://www.coriolis.com/", } @Book{Guang:19xx:EJ, author = "Ting Tzung Guang", title = "Easy {Java}", publisher = "Chuen Hwa Books", address = "??, Taiwan", pages = "????", year = "19xx", ISBN = "957-21-1653-X (??invalid ISBN??)", ISBN-13 = "978-957-21-1653-1 (??invalid ISBN??)", LCCN = "????", bibdate = "Mon Aug 18 07:55:47 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.chwa.com.tw; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "430 NT\$", URL = "http://www.chwa.com.tw", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Gulbransen:19xx:WAJ, author = "David Gulbransen", title = "{Web Applets mit {Java} entwickeln}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, year = "19xx", ISBN = "3-8272-5182-6 (??invalid ISBN??)", ISBN-13 = "978-3-8272-5182-4 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "50 DM", URL = "http://www.mut.ch/html/buchinfo.htx?&x_pp=dJgxRqA9wlAYNijX&x_az=10&x_pk=VpLvjnsx7b5V&x_pa=B&x_pr=oS&x_bestell=25182&x_stichwort=Gulbransen&x_sprache=A&x_start=1&x_gefunden=4&x_query=&x_lastpage=buchfund&x_soft=&x_suchewo=A", acknowledgement = ack-nhfb, language = "German", } @Book{Gurewich:19xx:JGA, author = "Nathan Gurewich and Ori Gurewich", title = "{Java} Guida al Linguaggio per Creare Pagine {Web} Interattive", publisher = pub-MONDADORI-INFORMATICA, address = pub-MONDADORI-INFORMATICA:adr, pages = "????", year = "19xx", ISBN = "88-7131-743-2", ISBN-13 = "978-88-7131-743-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mondadori.com/; http://wwwiz.com/books/european.html", note = "Italian translation of \cite{Gurewich:1996:JMS}.", price = "25000 Lire", URL = "http://www.mondadori.com/", acknowledgement = ack-nhfb, language = "Italian", } @Book{Gurewich:19xx:JM, author = "Nathan Gurewich and Ori Gurewich", title = "{Java MiniDoc}", publisher = pub-SIMON-SCHUSTER-FRANCE, address = pub-SIMON-SCHUSTER-FRANCE:adr, pages = "????", year = "19xx", ISBN = "2-7440-0143-0", ISBN-13 = "978-2-7440-0143-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ssm.fr/", note = "Includes CD-ROM.", price = "69 FF", acknowledgement = ack-nhfb, language = "French", } @Book{Hamilton:19xx:JDAb, author = "Graham Hamilton", title = "{JDBC} Database Access with {Java}", publisher = pub-DAERIM, address = pub-DAERIM:adr, year = "19xx", ISBN = "89-7280-395-2 (??invalid ISBN??)", ISBN-13 = "978-89-7280-395-9 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.drbook.co.kr/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "18,000 won", URL = "http://www.drbook.co.kr/daerim/jdbc.htm", acknowledgement = ack-nhfb, language = "Korean", } @Book{Hamilton:19xx:JDC, author = "Graham Hamilton and others", title = "The {Java} Database Connectivity Specification and Tutorial", publisher = pub-AW, address = pub-AW:adr, pages = "????", year = "19xx", ISBN = "0-201-92454-4", ISBN-13 = "978-0-201-92454-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$37", acknowledgement = ack-nhfb, url-author = "http://cseng.aw.com/authordetail.qry?AuthorID=1083", url-publisher = "http://www.aw.com/", } @Book{Hamilton:19xx:JDJ, author = "Graham Hamilton", title = "{JDBC Datenbankzugriff mit Java}", publisher = pub-AW, address = pub-AW:adr, year = "19xx", ISBN = "3-8273-1306-6 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1306-5 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "80 DM", URL = "http://www.addison-wesley.de/katalog/item.ppml?id=00269", acknowledgement = ack-nhfb, language = "German", } @Book{Hamilton:19xx:JST, author = "Graham Hamilton and David Geary", title = "{JavaBeans} Specifications \& Tutorial", publisher = pub-AW, address = pub-AW:adr, pages = "????", year = "19xx", ISBN = "0-201-31001-5", ISBN-13 = "978-0-201-31001-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", acknowledgement = ack-nhfb, url-author = "http://cseng.aw.com/authordetail.qry?AuthorID=1083", url-publisher = "http://www.aw.com/", } @Book{Harmon:19xx:VJA, author = "Trevor Harmon", title = "{Visual J++} y {ActiveX}", publisher = pub-EDITORIAL-PARANINFO, address = pub-EDITORIAL-PARANINFO:adr, pages = "????", year = "19xx", ISBN = "84-283-2416-6", ISBN-13 = "978-84-283-2416-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Harold:19xx:JNPb, author = "Elliotte Rusty Harold", title = "{Java} Network Programming", publisher = pub-ORA, address = pub-ORA:adr, year = "19xx", ISBN = "4-900900-56-7", ISBN-13 = "978-4-900900-56-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.oreilly.co.jp/", note = "Japanese translation.", price = "4,300 yen", URL = "http://www.ohmsha.co.jp/data/books/contents/4-900900-56-7.htm", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Harold:19xx:SJT, author = "Elliotte Rusty Harold", title = "Los secretos de {Java} a tu alcance", publisher = pub-ANAYA-MULTIMEDIA, address = pub-ANAYA-MULTIMEDIA:adr, year = "19xx", ISBN = "84-415-0342-7", ISBN-13 = "978-84-415-0342-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.anayamultimedia.es/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "5995 Ptas.", URL = "http://www.anaya.es/Catalogo/CGA?act=L&art=2317019&ed=2300", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Hermeling:19xx:JK, author = "Wegen Hermeling", title = "{Java-Kompendium}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, year = "19xx", ISBN = "3-8272-5195-8 (??invalid ISBN??)", ISBN-13 = "978-3-8272-5195-4 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "90 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Heuchert:19xx:CJA, author = "Peter Heuchert and others", title = "Creating {Java} Applications Using {NetRexx}", publisher = pub-IBM-REDBOOKS, address = pub-IBM-REDBOOKS:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.redbooks.ibm.com/", price = "????", URL = "http://www.redbooks.ibm.com/SG242216/2216ht.htm", acknowledgement = ack-nhfb, url-publisher = "http://www.redbooks.ibm.com/", } @Book{Hobbs:19xx:DJT, author = "Ashtom Hobbs", title = "{Datenbankprogrammierung mit JDBC in 21 Tagen}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, year = "19xx", ISBN = "3-8272-2005-X (??invalid ISBN??)", ISBN-13 = "978-3-8272-2005-9 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "100 DM", URL = "http://www.mut.ch/html/buchtext.htx?&x_pp=STb4XDV284xv2gpf&x_pk=Direkt&x_pa=&x_pr=Fr&x_artikelnr=22005", acknowledgement = ack-nhfb, language = "German", } @Book{Hojas:19xx:LJ, author = "Luis Ignacio Hojas Hojas and others", title = "Lenguaje {Java}", publisher = "Html Editores", address = "????", pages = "????", year = "19xx", ISBN = "84-89807-02-7 (??invalid ISBN??)", ISBN-13 = "978-84-89807-02-0 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Holzner:19xx:ADLa, author = "Steven Holzner", title = "Al doende leert men: {Java} 1.1", publisher = pub-SYBEX-NEDERLAND, address = pub-SYBEX-NEDERLAND:adr, pages = "????", year = "19xx", ISBN = "90-419-0148-5", ISBN-13 = "978-90-419-0148-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.nl/", price = "fl. 69", URL = "http://www.sybex.nl/catalogus/programmeren/aldjava.htm", acknowledgement = ack-nhfb, language = "Dutch", url-publisher = "http://www.sybex.nl/", } @Book{Holzner:19xx:ADLb, author = "Steven Holzner", title = "Al doende leert men: {Visual J++} 1.1", publisher = pub-SYBEX-NEDERLAND, address = pub-SYBEX-NEDERLAND:adr, pages = "????", year = "19xx", ISBN = "90-419-0158-2", ISBN-13 = "978-90-419-0158-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.nl/", price = "fl. 49", URL = "http://www.sybex.nl/catalogus/programmeren/aldvj.htm", acknowledgement = ack-nhfb, language = "Dutch", url-publisher = "http://www.sybex.nl/", } @Book{Holzner:19xx:MJW, author = "Steven Holzner", title = "Il Manuale di {Java Workshop}", publisher = pub-JACKSON-LIBRI, address = pub-JACKSON-LIBRI:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 14:33:06 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Italian translation of \cite{Holzner:1996:JWP}.", price = "55,000 L.", URL = "http://www.jacksonlibri.it/", acknowledgement = ack-nhfb, language = "Italian", } @Book{Holzner:19xx:WMVa, author = "Steven Holzner", title = "Werken met {Visual J++}", publisher = pub-SYBEX-NEDERLAND, address = pub-SYBEX-NEDERLAND:adr, year = "19xx", ISBN = "90-419-0019-1", ISBN-13 = "978-90-419-0019-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.nl/; http://www.sybex.nl/catalogus/index.html", price = "fl. 89", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Holzner:19xx:WMVb, author = "Steve Holzner", title = "Werken met {Visual J++}", publisher = pub-SYBEX-NEDERLAND, address = pub-SYBEX-NEDERLAND:adr, pages = "????", year = "19xx", ISBN = "90-419-0119-1", ISBN-13 = "978-90-419-0119-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.nl/", price = "fl. 89", URL = "http://www.sybex.nl/catalogus/programmeren/visualj.htm", acknowledgement = ack-nhfb, language = "Dutch", url-publisher = "http://www.sybex.nl/", } @Book{Hopson:19xx:DAC, author = "K. C. Hopson and Stephen E. Ingram", title = "Desenvolvendo Applets com {Java}", publisher = pub-EDITORE-CAMPUS, address = pub-EDITORE-CAMPUS:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.campus.com.br/about-us.htm; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "R\$83", acknowledgement = ack-nhfb, language = "Portuguese", } @Book{Hopson:19xx:DPJ, author = "K. C. Hopson and Stephen E. Ingram", title = "Developing Professional {Java} Applets", publisher = pub-DAERIM, address = pub-DAERIM:adr, year = "19xx", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.drbook.co.kr/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Korean translation.", price = "18,000 won", URL = "http://www.drbook.co.kr/daerim/jvpapp.htm", acknowledgement = ack-nhfb, language = "Korean", } @Book{Hoque:19xx:JBB, author = "Reaz Hoque", title = "{JavaBeans} Black Book", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "????", year = "19xx", ISBN = "1-57610-163-0", ISBN-13 = "978-1-57610-163-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$50", acknowledgement = ack-nhfb, url-publisher = "http://www.coriolis.com/", } @Book{Hung:19xx:JA, author = "Whang Yue Hung", title = "{Java} Applets", publisher = "DrMaster Consulting Co., Ltd.", address = "??, Taiwan", pages = "????", year = "19xx", ISBN = "957-9625-08-5", ISBN-13 = "978-957-9625-08-1", LCCN = "????", bibdate = "Mon Aug 18 07:55:47 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "450 NT\$", URL = "http://www.drmaster.com/", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Hung:19xx:UJ, author = "Kao Wen Hung and others", title = "Ultimate {Java}", publisher = pub-UNALIS, address = pub-UNALIS:adr, year = "19xx", ISBN = "957-22-2378-4", ISBN-13 = "978-957-22-2378-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.unalis.com.tw/index.html", price = "320 NT\$", acknowledgement = ack-nhfb, language = "Chinese", url-publisher = "http://www.unalis.com.tw/index.html", } @Book{Hwang:19xx:JI, author = "C. K. Hwang and C. M. Lee and S. Y. Tzeng", title = "{Java} Introduction", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, pages = "500", year = "19xx", ISBN = "957-641-768-9 (??invalid ISBN??)", ISBN-13 = "978-957-641-768-9 (??invalid ISBN??)", LCCN = "????", bibdate = "Mon Aug 18 07:55:47 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "460 NT\$", acknowledgement = ack-nhfb, language = "Chinese", } @Book{InfoMagic:19xx:JDK, author = "{InfoMagic}", title = "{Java} Development Kit For Windows {NT\slash 95}", publisher = pub-SSC, address = pub-SSC:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ssc.com/", price = "US\$25", acknowledgement = ack-nhfb, url-publisher = "http://www.ssc.com/", } @Book{InfoMagic:19xx:JI, author = "{InfoMagic}", title = "{Java} from {InfoMagic}", publisher = pub-UNIVERSAL-CD-ROM, address = pub-UNIVERSAL-CD-ROM:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.bigmall.com/subucr.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$25", URL = "http://www.bigmall.com/PJ0279.htm; http://www.bigmall.com/program.html", acknowledgement = ack-nhfb, url-publisher = "http://www.bigmall.com/subucr.html", } @Book{IPD:19xx:JR, author = "{IPD}", title = "{Java} Report", publisher = "IPD", address = "????", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "50 FF", acknowledgement = ack-nhfb, language = "French", } @Book{Jackson:19xx:JEc, author = "Jerry Jackson and Alan McClellan", title = "{Java} by Example", publisher = pub-ASCII, address = pub-ASCII:adr, edition = "Second", year = "19xx", ISBN = "4-7561-1709-0", ISBN-13 = "978-4-7561-1709-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.ascii.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://www.ascii.co.jp/pb/book1/shinkan/detail/1322352.html", acknowledgement = ack-nhfb, language = "Japanese", url-author = "http://www.sun.com/smi/ssoftpress/books/Jackson/Jackson.html", url-publisher = "http://www.ascii.co.jp/", } @Book{Jackson:19xx:JPE, author = "Jerry Jackson and Alan McClellan", title = "{Java} Per Esempi", publisher = pub-MONDADORI-INFORMATICA, address = pub-MONDADORI-INFORMATICA:adr, year = "19xx", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mondadori.com/", price = "70000 L.", acknowledgement = ack-nhfb, language = "Italian", } @Book{Jamsa:19xx:ESJ, author = "Kris Jamsa", title = "Ed {\`e} subito {Java}!", publisher = pub-TECHNICE-NUOVE, address = pub-TECHNICE-NUOVE:adr, pages = "????", year = "19xx", ISBN = "88-8481-038-6 (??Invalid checksum??)", ISBN-13 = "978-88-8481-038-0 (??Invalid checksum??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.tecnet.it/", price = "39000 L.", URL = "http://www.tecnet.it/cgi-shl/dbml.exe?Action=Query&Template=/LibriQueryDueLibro.dbm&ISBN=03863", acknowledgement = ack-nhfb, language = "Italian", url-author = "http://www.jamsa.com/authors/bio.htm\#kjamsa", url-publisher = "http://www.tecnet.it/", } @Book{Jamsa:19xx:IPU, author = "Kris Jamsa and Ken Cope", title = "{Internet} Programming Under {Windows}", publisher = pub-PITER-PUBLISHING, address = pub-PITER-PUBLISHING:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 15:35:14 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", URL = "http://www.jamsa.com/authors/bio.htm#kjamsa; http://www.piter-press.ru/; http://www.piter-press.ru/koi/ourbooks/comp/progr/pdisw_i.html", acknowledgement = ack-nhfb, language = "Russian", } @Book{Jamsa:19xx:JO, author = "Kris Jamsa", title = "{Java}-ohjelmointi", publisher = "Teknolit", address = "????", pages = "????", year = "19xx", ISBN = "952-9823-77-0 (??invalid ISBN??)", ISBN-13 = "978-952-9823-77-2 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.teknolit.fi/", price = "????", acknowledgement = ack-nhfb, language = "Finnish", url-author = "http://www.jamsa.com/authors/bio.htm\#kjamsa", url-publisher = "http://www.teknolit.fi/", } @Book{Jarol:19xx:HPF, author = "Scott Jarol", title = "Hyperwire Programming {FrontRunner}", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, year = "19xx", ISBN = "1-57610-066-9", ISBN-13 = "978-1-57610-066-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.coriolis.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$30", acknowledgement = ack-nhfb, } @Book{Jasper:19xx:JM, author = "Dirk Jasper", title = "{Java} Makkie", publisher = pub-EASY-COMPUTING, address = pub-EASY-COMPUTING:adr, pages = "????", year = "19xx", ISBN = "90-5167-154-7", ISBN-13 = "978-90-5167-154-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/dutch.html; http://www.easycomputing.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "fl. 30", URL = "http://www.easycomputing.com/", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Jaworski:19xx:JGA, author = "Jamie Jaworski", title = "{Java} --- Guida alla programmazione", publisher = pub-TECHNICE-NUOVE, address = pub-TECHNICE-NUOVE:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.tecnet.it/", price = "89000 L.", URL = "http://www.tecnet.it/cgi-shl/dbml.exe?Action=Query&Template=/LibriQueryDueLibro.dbm&ISBN=03804", acknowledgement = ack-nhfb, language = "Italian", } @Book{Jaworski:19xx:JGD, author = "Jamie Jaworski", title = "{Java} Guia Desarrollo", publisher = pub-PH-HISPANOAMERICANA, address = pub-PH-HISPANOAMERICANA:adr, pages = "????", year = "19xx", ISBN = "84-89660-61-1 (??invalid ISBN??)", ISBN-13 = "978-84-89660-61-8 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prentice.com.mx/; http://wwwiz.com/books/european.html", note = "Spanish translation of \cite{Jaworski:1997:MJ}.", price = "6990 Ptas.", URL = "http://prentice.com.mx/; http://www.mcl.com.mx/sotano/prentice.fm$Retrive?RecID=2702&html=HTMLRecord1", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Jubin:19xx:CJE, author = "Henri Jubin and {The Jalape{\~n}o Team}", title = "Cooking {JavaBeans} in The Enterprise", publisher = pub-IBM-REDBOOKS, address = pub-IBM-REDBOOKS:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.redbooks.ibm.com/", price = "US\$50", URL = "http://www.redbooks.ibm.com/SG247006/index.htm", acknowledgement = ack-nhfb, } @Book{Kanerva:19xx:JF, author = "Jonni Kanerva", title = "The {Java FAQ}", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.gotop.com.tw; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Chinese translation by Thi Shiang Workshop.", price = "????", URL = "http://www.gotop.com.tw", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Kanerva:19xx:JFC, author = "Jonni Kanerva", title = "The {Java FAQ} ({Chinese} translation by {Thi Shiang Workshop})", publisher = pub-GOTOP-INFORMATION, address = "????", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, language = "Chinese", url-author = "http://cseng.aw.com/authordetail.qry?AuthorID=1096", url-publisher = "http://www.gotop.com.tw", } @Book{Kanerva:19xx:JFFb, author = "Jonni Kanerva", title = "The {Java FAQ}: Frequently Asked Questions ({Korean} translation)", publisher = pub-DAERIM, address = pub-DAERIM:adr, pages = "????", year = "19xx", ISBN = "89-7280-392-8 (??invalid ISBN??)", ISBN-13 = "978-89-7280-392-8 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.drbook.co.kr/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Korean translation.", price = "13,000 won", URL = "http://www.drbook.co.kr/daerim/javafaq.htm", acknowledgement = ack-nhfb, language = "Korean", url-author = "http://cseng.aw.com/authordetail.qry?AuthorID=1096", url-publisher = "http://www.drbook.co.kr/", } @Book{Kent:19xx:JPN, author = "Peter Kent and John Kent", title = "{JavaScript} para {Netscape}: Guia Oficial", publisher = pub-MAKRON, address = pub-MAKRON:adr, pages = "510", year = "19xx", ISBN = "85-346-0722-2", ISBN-13 = "978-85-346-0722-3", LCCN = "????", bibdate = "Mon Aug 18 13:03:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Portuguese translation of \cite{Kent:1996:ONJ}. Includes floppy disk.", price = "R\$ 59,00", URL = "http://safe.tesla.com.br/makron/options/livro.asp?id=24; http://www.makron.com/; http://www.mcp.com/authors/pkent/", acknowledgement = ack-nhfb, language = "Portuguese", } @Book{Kim:19xx:LJP, author = "Chungho Kim", title = "Learning {Java} Properly", publisher = "Moonyeimadang", address = "????", year = "19xx", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "15,000 won", acknowledgement = ack-nhfb, language = "Korean", } @Book{Kiuttu:19xx:JOP, author = "Petri Kiuttu", title = "{Java-ohjelmointi} pro-kurssi", publisher = "Suomen Atk-kustannus Oy", address = "????", pages = "????", year = "19xx", ISBN = "951-762-548-0", ISBN-13 = "978-951-762-548-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.satku.fi/", price = "????", URL = "http://www.satku.fi/4javapro.htm", acknowledgement = ack-nhfb, language = "Finnish", url-publisher = "http://www.satku.fi/", } @Book{Kiuttu:19xx:OIJ, author = "Petri Kiuttu and Juha Niemi", title = "Opeta itsellesi {Java}-ohjelmointi", publisher = "Suomen Atk-kustannus Oy", address = "????", pages = "????", year = "19xx", ISBN = "951-762-468-9", ISBN-13 = "978-951-762-468-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.satku.fi/", price = "????", acknowledgement = ack-nhfb, language = "Finnish", url-publisher = "http://www.satku.fi/", } @Book{Klute:19xx:JPD, author = "Rainer Klute", title = "{JDBC in der Praxis: Datenbankanwendungen in Intra- und Internet}", publisher = pub-AWV, address = pub-AWV:adr, year = "19xx", ISBN = "3-8273-1301-5 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1301-0 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "60 DM", URL = "http://www.addison-wesley.de/katalog/item.ppml?id=00264", acknowledgement = ack-nhfb, language = "German", } @Book{Knappe:19xx:HJ, author = "Heiko Knappe", title = "{HTML und Java}", publisher = "Vogel", address = "????", year = "19xx", ISBN = "3-8259-1382-1 (??invalid ISBN??)", ISBN-13 = "978-3-8259-1382-3 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "34 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Knappe:19xx:HJE, author = "Heiko Knappe", title = "{HTML} et {Java} 100\% Efficace", publisher = pub-EDITION-MICRO-APPLICATIONS, address = pub-EDITION-MICRO-APPLICATIONS:adr, pages = "????", year = "19xx", ISBN = "2-7429-0924-9", ISBN-13 = "978-2-7429-0924-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.microapp.com/", price = "135 FF", acknowledgement = ack-nhfb, language = "French", url-publisher = "http://www.microapp.com/", } @Book{KnowledgeMedia:19xx:BC, author = "{Knowledge Media}", title = "Black Coffee", publisher = "Knowledge Media", address = "????", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Book{Kolbeck:19xx:GLJ, author = "Rainer Kolbeck", title = "El Gran Libro De {JavaScript}", publisher = pub-EDITORIAL-MARCOMBO, address = pub-EDITORIAL-MARCOMBO:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 16:28:38 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/spanish.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Koosis:19xx:JPDc, author = "Donald Koosis and Wimmershoff", title = "{Java-Programmierung f{\"u}r Dummies}", publisher = pub-ITCP, address = pub-ITCP:adr, year = "19xx", ISBN = "3-8266-2732-6 (??invalid ISBN??)", ISBN-13 = "978-3-8266-2732-3 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.itp.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "50 DM", URL = "http://www.itp.de/dummies/2732/2732.html", acknowledgement = ack-nhfb, language = "German", } @Book{Koosis:19xx:JPN, author = "Donald Koosis and David Koosis", title = "{Java} pour Les Nuls", publisher = pub-SYBEX-FRANCE, address = pub-SYBEX-FRANCE:adr, pages = "????", year = "19xx", ISBN = "2-7361-2349-2", ISBN-13 = "978-2-7361-2349-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.fr/", note = "Includes CD-ROM.", price = "140 FF", URL = "http://www-db.sybex.fr/cgi-bin/Sybex/Webdriver?MIval=Fiche_Book.html&Reference=2349; http://www.sybex.fr/", acknowledgement = ack-nhfb, language = "French", xxauthor = "David Koosis and Donald Koosis", } @Book{Koosis:19xx:JPV, author = "Donald Koosis and David Koosis", title = "{Java} Programmeren voor Dummies", publisher = pub-AW-NL, address = pub-AW-NL:adr, pages = "????", year = "19xx", ISBN = "90-6789-754-X", ISBN-13 = "978-90-6789-754-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.adweslo.nl/explorer.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "fl. 50", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Kruger:19xx:JLA, author = "Guido Kr{\"u}ger", title = "{Java 1.1 lernen: Anfangen, anwenden, verstehen}", publisher = pub-AWV, address = pub-AWV:adr, year = "19xx", ISBN = "3-8273-1299-X (??invalid ISBN??)", ISBN-13 = "978-3-8273-1299-0 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "60 DM", URL = "http://www.addison-wesley.de/katalog/item.ppml?id=00251", acknowledgement = ack-nhfb, language = "German", } @Book{Kruger:19xx:JPS, author = "Guido Kr{\"u}ger", title = "{Java-Programmierung mit Symantec Visual Caf{\'e}}", publisher = pub-AW, address = pub-AW:adr, year = "19xx", ISBN = "3-8273-1141-1 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1141-2 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "70 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Kuhnel:19xx:JF, author = "Ralf K{\"u}hnel", title = "{Die Java-Fibel}", publisher = pub-AW, address = pub-AW:adr, year = "19xx", ISBN = "3-8273-1024-X (??invalid ISBN??)", ISBN-13 = "978-3-8273-1024-8 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "60 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Ladd:19xx:AMA, author = "Scott Robert Ladd", title = "Atelier Microsoft {ActiveX} --- {Visual J++}", publisher = "Microsoft Press France", address = "????", year = "19xx", ISBN = "2-84082-282-2", ISBN-13 = "978-2-84082-282-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.microsoft.com/france/mspress/", price = "299 FF", URL = "http://www.microsoft.com/france/mspress/ouvrage.asp?OuvrageID=171", acknowledgement = ack-nhfb, language = "French", } @Book{Ladd:19xx:AVJ, author = "Scott Robert Ladd", title = "Active {Visual J++}", publisher = pub-MONDADORI-INFORMATICA, address = pub-MONDADORI-INFORMATICA:adr, year = "19xx", ISBN = "88-7131-846-3", ISBN-13 = "978-88-7131-846-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mondadori.com/", price = "80,000 L.", URL = "http://education.mondadori.com/books/SchBook.asp?Libro=203", acknowledgement = ack-nhfb, language = "Italian", } @Book{Laffra:19xx:AJIb, author = "Chris Laffra", title = "Advanced {Java}: Idioms, Styles, Programming Tips, and Pitfalls ({Japanese} tranlsation)", publisher = pub-ASCII, address = pub-ASCII:adr, pages = "????", year = "19xx", ISBN = "4-7561-1399-0", ISBN-13 = "978-4-7561-1399-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.ascii.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "2800 yen", URL = "http://www.ascii.co.jp/pb/book1/shinkan/detail/1322412.html", acknowledgement = ack-nhfb, language = "Japanese", url-author = "http://members.aol.com/laffra/index.html", url-publisher = "http://www.ascii.co.jp/", } @TechReport{Laffra:19xx:CCJ, author = "Chris Laffra", title = "{C2J}, a {C++} to {Java} translator", type = "World-Wide Web document", institution = "IBM T.J. Watson Research Center", address = "P.O. Box 704, Yorktown Heights, NY 10598. USA", year = "19xx", bibdate = "Tue Feb 09 05:55:32 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://members.aol.com/laffra/c2j.html", acknowledgement = ack-nhfb, } @Book{Lai:19xx:UNU, author = "Michel Lai", title = "{UML}. La notation unifi{\'e}e de mod{\'e}lisation objet. Applications en {Java}", publisher = pub-MASSON, address = pub-MASSON:adr, pages = "????", year = "19xx", ISBN = "2-7296-0659-9", ISBN-13 = "978-2-7296-0659-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.masson.fr/; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "295 FF", URL = "http://www.masson.fr/cgi-bin/bookf.pl?2:2:'tx=(java*)'", acknowledgement = ack-nhfb, language = "French", url-publisher = "http://www.masson.fr/", } @Book{Lalani:19xx:JBDa, author = "Suleiman `Sam' Lalani and Kris A. Jamsa", title = "{Java} --- Biblioteca do Programador", publisher = pub-MAKRON, address = pub-MAKRON:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 12:55:59 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Portuguese translation of \cite{Lalani:1996:JPLa}.", URL = "http://www.jamsa.com/authors/bio.htm#kjamsa; http://www.makron.com/; http://www.wizard.com/~slalani", acknowledgement = ack-nhfb, language = "Portuguese", } @Book{Lalani:19xx:JBDb, author = "Suleiman `Sam' Lalani and Kris A. Jamsa", title = "{Java} --- Biblioteca del Programador", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 12:55:59 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Spanish translation of \cite{Lalani:1996:JPLa}.", URL = "http://mexplaza.udg.mx/McGraw/; http://www.jamsa.com/authors/bio.htm#kjamsa; http://www.wizard.com/~slalani", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Lalani:19xx:JBDc, author = "Suleiman Lalani and Kris Jamsa", title = "{Java} --- Biblioteca do Programador", publisher = pub-MAKRON, address = pub-MAKRON:adr, year = "19xx", ISBN = "85-346-0517-3 (??invalid ISBN??)", ISBN-13 = "978-85-346-0517-5 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://safe.tesla.com.br/makron/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://safe.tesla.com.br/makron/options/livro.asp?id=260", acknowledgement = ack-nhfb, language = "Portuguese", } @Book{Lalani:19xx:JLD, author = "Suleiman Lalani and Kris Jamsa", title = "{Java} Libreria Del Programmatore", publisher = pub-MONDADORI-INFORMATICA, address = pub-MONDADORI-INFORMATICA:adr, year = "19xx", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mondadori.com/", price = "90000 L.", acknowledgement = ack-nhfb, language = "Italian", } @Book{Lemay:19xx:AED, author = "Laura Lemay", title = "Aprenda em 21 Dias {Java}", publisher = pub-EDITORE-CAMPUS, address = pub-EDITORE-CAMPUS:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.campus.com.br/about-us.htm; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "R\$79", acknowledgement = ack-nhfb, language = "Portuguese", url-author = "http://slack.lne.com/lemay/index.html", url-publisher = "http://www.campus.com.br/about-us.htm", } @Book{Lemay:19xx:JL, author = "Laura Lemay", title = "{JavaScript} Labo", publisher = pub-SIMON-SCHUSTER-FRANCE, address = pub-SIMON-SCHUSTER-FRANCE:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 18:51:01 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.ssm.fr/", acknowledgement = ack-nhfb, language = "French", } @Book{Lemay:19xx:JTb, author = "Laura Lemay", title = "{Java 1.1 in 21 Tagen}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, year = "19xx", ISBN = "3-8272-2009-2 (??invalid ISBN??)", ISBN-13 = "978-3-8272-2009-7 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "80 DM", URL = "http://www.mut.ch/html/buchtext.htx?&x_pp=STb4XDV284xv2gpf&x_pk=Direkt&x_pa=&x_pr=Fr&x_artikelnr=22009", acknowledgement = ack-nhfb, language = "German", } @Book{Lemay:19xx:MCG, author = "Laura Lemay", title = "{Marimba Castanet} La guida ufficiale", publisher = pub-APOGEO, address = pub-APOGEO:adr, pages = "????", year = "19xx", ISBN = "88-7303-352-0", ISBN-13 = "978-88-7303-352-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.apogeonline.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "46,000 L.", URL = "http://www.apogeonline.com/catalogo/352.html; http://www.urra.it/352.html", acknowledgement = ack-nhfb, language = "Italian", url-author = "http://slack.lne.com/lemay/index.html", url-publisher = "http://www.urra.it/apocat.html", } @Book{Lemay:19xx:PJb, author = "Laura Lemay and Charles L. Perkins", title = "Le Programmeur {Java} 1.1", publisher = pub-SIMON-SCHUSTER-FRANCE, address = pub-SIMON-SCHUSTER-FRANCE:adr, pages = "????", year = "19xx", ISBN = "2-7440-0297-6", ISBN-13 = "978-2-7440-0297-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ssm.fr/", price = "199 FF", URL = "http://www.ssm.fr/catalog/fiches/0297.htm", acknowledgement = ack-nhfb, language = "French", url-author = "http://slack.lne.com/lemay/index.html", url-publisher = "http://www.ssm.fr/", } @Book{Lemay:19xx:TYJd, author = "Laura Lemay and Charles L. Perkins", title = "Teach Yourself {Java} 1.1 in 21 Days", publisher = pub-SAMS-NET, address = pub-SAMS-NET:adr, year = "19xx", ISBN = "1-57521-142-2", ISBN-13 = "978-1-57521-142-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/samsnet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", acknowledgement = ack-nhfb, } @Book{Lester:19xx:BDC, author = "Christopher S. Lester", title = "Bases de Datos con {Visual J++} Edicion Especial", publisher = pub-PH, address = pub-PH:adr, year = "19xx", ISBN = "84-8322-058-X", ISBN-13 = "978-84-8322-058-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prentice.com.mx/", price = "????", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Liang:19xx:IJP, author = "Daniel Liang", title = "Introduction to {Java} Programming", publisher = "Que E\&T", address = "????", pages = "????", year = "19xx", ISBN = "1-57576-548-9, 1-57576-549-7", ISBN-13 = "978-1-57576-548-8, 978-1-57576-549-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/queet/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/queet/", } @Book{Liang:19xx:JNI, author = "Sheng Liang and Beth Sterns", title = "The {Java} Native Interface: {A} Tutorial and Specification", publisher = pub-AW, address = pub-AW:adr, year = "19xx", ISBN = "0-201-18393-5", ISBN-13 = "978-0-201-18393-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.aw.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", URL = "http://www2.awl.com/cseng/javaseries/jni.html", acknowledgement = ack-nhfb, xxnote = "Duplicate ISBN with \cite{Clements:19xx:JDA}.", } @Book{Lie:19xx:JSM, author = "Chung Whei Lie and Yeung E Tai", title = "{Java} Special Manual", publisher = pub-FLAG, address = pub-FLAG:adr, pages = "????", year = "19xx", ISBN = "957-717-197-4 (??invalid ISBN??)", ISBN-13 = "978-957-717-197-9 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.flag.com.tw/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "500 NT\$", URL = "http://www.seed.net.tw/~flaginfo/", acknowledgement = ack-nhfb, language = "Chinese", url-publisher = "http://www.flag.com.tw/", } @Book{Lien:19xx:JV, author = "Shock Lien and others", title = "{Java}\slash {VRML}", publisher = "Acer TWP Corp.", address = "????", pages = "????", year = "19xx", ISBN = "957-23-0429-1", ISBN-13 = "978-957-23-0429-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.acertwp.com.tw; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "450 NT\$", acknowledgement = ack-nhfb, language = "Chinese", url-publisher = "http://www.acertwp.com.tw", } @Book{Lin:19xx:JAY, author = "Fu Yan Lin and Mitch Lai", title = "{Java} Applets For Your {Web} Page", publisher = pub-UNALIS, address = pub-UNALIS:adr, pages = "????", year = "19xx", ISBN = "957-22-2171-X", ISBN-13 = "978-957-22-2171-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.unalis.com.tw/index.html", price = "390 NT\$", URL = "http://www.unalis.com.tw/index.html", acknowledgement = ack-nhfb, language = "Chinese", xxauthor = "Fu Yau Lin and Mitch Lai", } @Book{Lindholm:19xx:JSV, author = "Tim Lindholm and Frank Yellin", title = "{Java --- Die Spezifikation der Virtuellen Maschine}", publisher = pub-AWV, address = pub-AWV:adr, year = "19xx", ISBN = "3-8273-1045-8 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1045-3 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", acknowledgement = ack-nhfb, language = "German", } @Book{Lindholm:19xx:JVMa, author = "Tim Lindholm and Frank Yellin", title = "The {Java} Virtual Machine", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 07:55:47 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Chinese translation by Thi Shiang Workshop.", URL = "http://www.gotop.com.tw", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Lindholm:19xx:JVMb, author = "Tim Lindholm and Frank Yellin", title = "The {Java} Virtual Machine", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.gotop.com.tw; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Chinese translation by Thi Shiang Workshop.", price = "????", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Longuet:19xx:LDJ, author = "Patrick Longuet", title = "Le Livre d'Or {Java}", publisher = pub-SYBEX-FRANCE, address = pub-SYBEX-FRANCE:adr, pages = "????", year = "19xx", ISBN = "2-7361-2274-7", ISBN-13 = "978-2-7361-2274-4", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "279 FF", URL = "http://www-db.sybex.fr/cgi-bin/Sybex/Webdriver?MIval=Fiche_Book.html&Reference=2274", acknowledgement = ack-nhfb, language = "French", url-publisher = "http://www.sybex.fr/", xxnote = "Duplicate ISBN with \cite{Martin:19xx:JL}.", } @Book{Longuet:19xx:PVJ, author = "Patrick Longuet", title = "Praktijkboek {Visual J++}", publisher = pub-SYBEX-NEDERLAND, address = pub-SYBEX-NEDERLAND:adr, pages = "????", year = "19xx", ISBN = "90-419-0076-4", ISBN-13 = "978-90-419-0076-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.nl/", price = "fl. 49", URL = "http://www.sybex.nl/catalogus/programmeren/pbvisj.htm", acknowledgement = ack-nhfb, language = "Dutch", url-publisher = "http://www.sybex.nl/", } @Book{Luis:19xx:JLP, author = "Jos{\'e} Luis and Otros Cort{\'e}s", title = "{Java}: El Lenguaje de Programaci{\'o}n de {Internet}", publisher = pub-EDITORIAL-MARCOMBO, address = pub-EDITORIAL-MARCOMBO:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 17:24:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", acknowledgement = ack-nhfb, language = "Spanish", } @Book{MacIntosh:19xx:TJM, author = "Harry MacIntosh", title = "Talk {Java} to Me", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.gotop.com.tw; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "300 NT\$", URL = "http://www.gotop.com.tw", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Mairet:19xx:JF, author = "Alexandre Mairet", title = "{Java} facile", publisher = "Les Editions Marabout", address = "Alleur, Belgique", pages = "????", year = "19xx", ISBN = "2-501-02911-7 (??Invalid checksum??)", ISBN-13 = "978-2-501-02911-7 (??Invalid checksum??)", LCCN = "????", bibdate = "Mon May 11 09:43:02 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", price = "46 FF", URL = "http://www.marabout.com/; http://www.marabout.com/c-javfac.htm; http://www.marabout.com/framecat.htm", acknowledgement = ack-nhfb, language = "French", url-publisher = "http://www.marabout.com/", } @Book{Manger:19xx:MJ, author = "Jason Manger", title = "Manuale {JavaScript}", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 17:04:53 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Includes floppy disk.", price = "62000 Lire", URL = "http://pallade.iol.it/cgi-bin/mercator2/mallurl/CESSECCOCEDRBILEDOMAa000eC/mcghill/index.html; http://www.gold.net/users/ag17/index.html", acknowledgement = ack-nhfb, language = "Italian", } @Book{Manning:19xx:VJI, author = "Michelle M. Manning", title = "{Visual J++} Intranet Programming Lab", publisher = pub-PRIMA, address = pub-PRIMA:adr, pages = "????", year = "19xx", ISBN = "0-7615-1043-5", ISBN-13 = "978-0-7615-1043-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.primapublishing.com/", price = "????", acknowledgement = ack-nhfb, url-publisher = "http://www.primapublishing.com/", } @Book{Margulies:19xx:UJT, author = "Edwin K. Margulies", title = "Understanding {Java} Telephony", publisher = "Flatiron Publishing", address = "????", pages = "????", year = "19xx", ISBN = "1-57820-003-2", ISBN-13 = "978-1-57820-003-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.ctexpo.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35", URL = "http://www.ctexpo.com/catalog/demo.html", acknowledgement = ack-nhfb, url-publisher = "http://www.ctexpo.com/", } @Book{Martin:19xx:JL, author = "Michel Martin", title = "{Java} Livre d'Or", publisher = pub-SYBEX-FRANCE, address = pub-SYBEX-FRANCE:adr, year = "19xx", ISBN = "2-7361-2274-7", ISBN-13 = "978-2-7361-2274-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.fr/", price = "279 FF", URL = "http://www-db.sybex.fr/cgi-bin/Sybex/Webdriver?MIval=Fiche_Book.html&Reference=2274", acknowledgement = ack-nhfb, language = "French", xxnote = "Duplicate ISBN with \cite{Longuet:19xx:LDJ}.", } @Book{Martin:19xx:VJM, author = "Michel Martin", title = "{Visual J++} Megapoche", publisher = pub-SYBEX-FRANCE, address = pub-SYBEX-FRANCE:adr, pages = "????", year = "19xx", ISBN = "2-7361-2319-0", ISBN-13 = "978-2-7361-2319-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.fr/", price = "98 FF", URL = "http://www-db.sybex.fr/cgi-bin/Sybex/Webdriver?MIval=Fiche_Book.html&Reference=2319", acknowledgement = ack-nhfb, language = "French", url-publisher = "http://www.sybex.fr/", } @Book{McCarthy:19xx:BWJ, author = "Martin McCarthy and Alistair Carty", title = "Building {3D} Worlds in {Java} and {VRML}", publisher = pub-PH, address = pub-PH:adr, year = "19xx", ISBN = "0-13-748625-1", ISBN-13 = "978-0-13-748625-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$55", acknowledgement = ack-nhfb, } @Book{McComb:19xx:CHJ, author = "Gordon McComb", title = "Het complete handboek {JavaScript}", publisher = pub-ACADEMIC-SERVICE, address = pub-ACADEMIC-SERVICE:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 07:31:30 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/dutch.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "fl. 109,00", URL = "http://www.acaserv.nl; http://www.acaserv.nl/5_0508.htm", acknowledgement = ack-nhfb, language = "Dutch", } @Book{McComb:19xx:JSC, author = "Gordon McComb", title = "{JavaScript} Sourcebook: Crie Programas Interativos {JavaScript} para a {World Wide Web}", publisher = pub-MAKRON, address = pub-MAKRON:adr, pages = "760", year = "19xx", ISBN = "85-346-0728-1", ISBN-13 = "978-85-346-0728-5", LCCN = "????", bibdate = "Mon Aug 18 12:47:42 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Portuguese translation of \cite{McComb:1996:JSC}. Includes CD-ROM.", price = "R\$ 85.00", URL = "http://safe.tesla.com.br/makron/options/livro.asp?id=9; http://www.makron.com/", acknowledgement = ack-nhfb, language = "Portuguese", } @Book{McHale:19xx:JTV, author = "Robert McHale", title = "{Java} Training Videos", publisher = "KeyStone Learning Systems", address = "????", year = "19xx", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.keylearnsys.com/index1.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$90", URL = "http://www.keylearnsys.com/outlines/java1.html", acknowledgement = ack-nhfb, } @Book{McIntosh:19xx:DOJ, author = "Harry McIntosh and Mike Britton", title = "Discover Open {JBuilder}", publisher = pub-IDG, address = pub-IDG:adr, pages = "????", year = "19xx", ISBN = "0-7645-3061-5", ISBN-13 = "978-0-7645-3061-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.idgbooks.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$25", acknowledgement = ack-nhfb, url-publisher = "http://www.idgbooks.com/", } @Book{Media:19xx:BC, author = "Knowledge Media", title = "Black Coffee", publisher = "Knowledge Media", address = "????", year = "19xx", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", acknowledgement = ack-nhfb, } @Book{Meyer:19xx:JVMb, author = "Jon Meyer and Troy Downing", title = "The {Java} Virtual Machine", publisher = pub-ORA, address = pub-ORA:adr, year = "19xx", ISBN = "4-900900-63-X", ISBN-13 = "978-4-900900-63-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.oreilly.co.jp/", note = "Japanese translation.", price = "4,500 yen", acknowledgement = ack-nhfb, language = "Japanese", } @Book{MindQ:19xx:JDP, author = "{MindQ}", title = "{Java} Database Programming", publisher = "MindQ Publishing", address = "????", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, url-author = "http://www.mindq.com/", url-publisher = "http://www.mindq.com/", } @Book{MindQ:19xx:JPS, author = "MindQ", title = "{Java} Programming Series", publisher = pub-MINDQ, address = pub-MINDQ:adr, year = "19xx", ISBN = "JAVPROSER-", ISBN-13 = "JAVPROSER-", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mindq.com/", price = "????", acknowledgement = ack-nhfb, url-author = "http://www.mindq.com/", url-publisher = "http://www.mindq.com/", } @Book{MindQ:19xx:MDT, author = "{MindQ}", title = "{MindQ}'s Developer Training for {Java}", publisher = pub-MINDQ, address = pub-MINDQ:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mindq.com/", price = "US\$995", URL = "http://www.mindq.com/java/javaover.html", acknowledgement = ack-nhfb, url-publisher = "http://www.mindq.com/", } @Book{Ming:19xx:BGJ, author = "Li Cia Ming and others", title = "Beginner's Guide To {Java}", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, pages = "????", year = "19xx", ISBN = "957-641-768-6", ISBN-13 = "978-957-641-768-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.gotop.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "460 NT\$", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Ming:19xx:JL, author = "Chang Shin Ming", title = "The {Java} Language", publisher = "Rulin Books", address = "????", pages = "????", year = "19xx", ISBN = "957-652-900-X", ISBN-13 = "978-957-652-900-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "250 NT\$", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Ming:19xx:WJ, author = "Chen Tjien Ming", title = "World Of {Java}", publisher = "LIWIL Publishing Co Ltd.", address = "????", pages = "????", year = "19xx", ISBN = "957-8982-64-X", ISBN-13 = "978-957-8982-64-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "320 NT\$", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Moncur:19xx:J, author = "Michael Moncur", title = "{JavaScript}", publisher = pub-MONDADORI-INFORMATICA, address = pub-MONDADORI-INFORMATICA:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 15:13:44 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", URL = "http://slack.lne.com/lemay/index.html; http://www.mondadori.com/; http://www.starlingtech.com/books/javascript/author.html", acknowledgement = ack-nhfb, language = "Italian", } @Book{Moreno:19xx:PJ, author = "Oscar Gonz{\'a}lez Moreno", title = "Programaci{\'o}n en {JavaScript}", publisher = pub-ANAYA-MULTIMEDIA, address = pub-ANAYA-MULTIMEDIA:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 12:43:34 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", price = "Ptas 1695", URL = "http://www.anaya.es/Catalogo/CGA?act=L&art=2335130&ed=2300; http://www.anaya.es/Catalogo/CGA?act=Q&autor_id=09032&max_rows=all; http://www.anayamultimedia.es/", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Morris:19xx:IWH, author = "Mary E. S. Morris and John A. Pew", title = "Instant {WebSite} with {HTML} and {Java} Applets Boxed Set", publisher = pub-PH, address = pub-PH:adr, pages = "????", year = "19xx", ISBN = "0-13-270067-0", ISBN-13 = "978-0-13-270067-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "US\$70", acknowledgement = ack-nhfb, url-author = "http://www.vivids.com/java/author.html", url-publisher = "http://www.prenhall.com/", } @Book{Morrison:19xx:JI, author = "Michael Morrison", title = "{Java 1.1 f{\"u}r Insider}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, year = "19xx", ISBN = "3-8272-2007-6 (??invalid ISBN??)", ISBN-13 = "978-3-8272-2007-3 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "100 DM", URL = "http://www.mut.ch/html/buchtext.htx?&x_pp=STb4XDV284xv2gpf&x_pk=VpLvjnsx7b5V&x_pa=B&x_pr=oS&x_artikelnr=22007", acknowledgement = ack-nhfb, language = "German", } @Book{Morrison:19xx:JSE, author = "Michael Morrison", title = "{Java} 1.1 Secrets d'Experts", publisher = pub-SIMON-SCHUSTER-FRANCE, address = pub-SIMON-SCHUSTER-FRANCE:adr, pages = "????", year = "19xx", ISBN = "2-7440-0194-5", ISBN-13 = "978-2-7440-0194-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ssm.fr/", price = "????", URL = "http://www.ssm.fr/catalog/fiches/0194.htm", acknowledgement = ack-nhfb, language = "French", url-publisher = "http://www.ssm.fr/", } @Book{Morrison:19xx:JT, author = "Michael Morrison", title = "{JavaBeans-Technik}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, year = "19xx", ISBN = "3-8272-5284-9 (??invalid ISBN??)", ISBN-13 = "978-3-8272-5284-5 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "60 DM", URL = "http://www.mut.ch/html/buchtext.htx?&x_pp=STb4XDV284xv2gpf&x_pk=Direkt&x_pa=&x_pr=Fr&x_artikelnr=25284", acknowledgement = ack-nhfb, language = "German", } @Book{Morrison:19xx:JUb, author = "Michael Morrison and others", title = "{Java} Unleashed", publisher = pub-DAERIM, address = pub-DAERIM:adr, pages = "????", year = "19xx", ISBN = "89-7280-303-0 (??invalid ISBN??)", ISBN-13 = "978-89-7280-303-4 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.drbook.co.kr/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Korean translation.", price = "????", URL = "http://www.drbook.co.kr/daerim/ulsjv.htm", acknowledgement = ack-nhfb, language = "Korean", url-publisher = "http://www.drbook.co.kr/", } @Book{Morrison:19xx:VJ, author = "Michael Morrison and others", title = "{Visual J++} 1.1", publisher = pub-DAERIM, address = pub-DAERIM:adr, pages = "????", year = "19xx", ISBN = "89-7280-375-8 (??invalid ISBN??)", ISBN-13 = "978-89-7280-375-1 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.drbook.co.kr/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Korean translation.", price = "????", URL = "http://www.drbook.co.kr/daerim/ltvj.htm", acknowledgement = ack-nhfb, language = "Korean", url-publisher = "http://www.drbook.co.kr/", } @Book{Morrison:19xx:VJD, author = "Mike Morrison", title = "{Visual J++} Database Programming Lab", publisher = pub-PRIMA, address = pub-PRIMA:adr, pages = "????", year = "19xx", ISBN = "0-7615-1045-1", ISBN-13 = "978-0-7615-1045-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.primapublishing.com/", price = "????", acknowledgement = ack-nhfb, url-publisher = "http://www.primapublishing.com/", } @Book{Nagarathnam:19xx:JNAb, author = "Nataraj Nagarathnam and others", title = "{Java} Networking \& {AWT API SuperBible} ({Korean} Translation)", publisher = pub-DAERIM, address = pub-DAERIM:adr, pages = "????", year = "19xx", ISBN = "89-7280-332-4 (??invalid ISBN??)", ISBN-13 = "978-89-7280-332-4 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.drbook.co.kr/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Korean translation.", price = "????", URL = "http://www.drbook.co.kr/daerim/jvnaapi.htm", acknowledgement = ack-nhfb, language = "Korean", url-publisher = "http://www.drbook.co.kr/", } @Book{Naughton:19xx:DJ, author = "Patrick Naughton", title = "Dominando o {Java}", publisher = pub-MAKRON, address = pub-MAKRON:adr, year = "19xx", ISBN = "85-346-0566-1 (??invalid ISBN??)", ISBN-13 = "978-85-346-0566-3 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://safe.tesla.com.br/makron/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", price = "????", URL = "http://safe.tesla.com.br/makron/options/livro.asp?id=262; http://www.makron.com/; http://www.makron.com/G57.htm", acknowledgement = ack-nhfb, language = "Portuguese", } @Book{Naughton:19xx:JM, author = "Patrick Naughton", title = "{Java} --- Il Manuale", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://pallade.iol.it/cgi-bin/mercator2/mallurl/CESSECCOCEDRBILEDOMAa000eC/mcghill/index.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "52000 L.", URL = "http://pallade.iol.it/cgi-bin/mercator2/mallurl/CESSECCOCEDRBILEDOMAa000eC/mcghill/001074.html", acknowledgement = ack-nhfb, language = "Italian", url-publisher = "http://pallade.iol.it/cgi-bin/mercator2/mallurl/CESSECCOCEDRBILEDOMAa000eC/mcghill/index.html", } @Book{Nemirovski:19xx:AJ, author = "German Nemirovski and Michael Heise", title = "{Algorithmen in Java}", publisher = pub-AWV, address = pub-AWV:adr, year = "19xx", ISBN = "3-8273-1234-5 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1234-1 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "40 DM", URL = "http://www.addison-wesley.de/katalog/item.ppml?id=00201", acknowledgement = ack-nhfb, language = "German", } @Book{Newman:19xx:GGJ, author = "Alex Newman and others", title = "Grande Guida a {Java}", publisher = pub-JACKSON-LIBRI, address = pub-JACKSON-LIBRI:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.jacksonlibri.it/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Italian translation of \cite{Newman:1996:UJC}.", price = "95000 Lire", URL = "http://www.jacksonlibri.it/", acknowledgement = ack-nhfb, language = "Italian", } @Book{Newman:19xx:SEJ, author = "Alex Newman", title = "{Special Edition Java}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, year = "19xx", ISBN = "3-8272-1001-1 (??invalid ISBN??)", ISBN-13 = "978-3-8272-1001-2 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "80 DM", URL = "http://www.mut.ch/html/buchinfo.htx?&x_pp=dJgxRqA9wlAYNijX&x_az=10&x_pk=VpLvjnsx7b5V&x_pa=B&x_pr=oS&x_bestell=21001&x_stichwort=Newman&x_sprache=A&x_start=1&x_gefunden=2&x_query=&x_lastpage=buchfund&x_soft=&x_suchewo=A", acknowledgement = ack-nhfb, language = "German", } @Book{Newman:19xx:UJ, author = "Alex Newman", title = "Usando {Java}", publisher = pub-EDITORE-CAMPUS, address = pub-EDITORE-CAMPUS:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.campus.com.br/about-us.htm; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "R\$89", acknowledgement = ack-nhfb, language = "Portuguese", } @Book{Nghiem:19xx:LJV, author = "Nghiem", title = "Language {Java} Version {JDK} 1.1", publisher = "Infoprax", address = "????", pages = "????", year = "19xx", ISBN = "2-901683-15-0", ISBN-13 = "978-2-901683-15-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "195 FF", acknowledgement = ack-nhfb, language = "French", } @Book{Nickerson:19xx:CPJ, author = "Doug Nickerson", title = "Component Programming With {JavaBeans}", publisher = pub-VENTANA, address = pub-VENTANA:adr, pages = "????", year = "19xx", ISBN = "1-56604-753-6", ISBN-13 = "978-1-56604-753-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.vmedia.com/", price = "US\$40", acknowledgement = ack-nhfb, url-publisher = "http://www.vmedia.com/", } @Book{Nicolas:19xx:JCS, author = "C. Nicolas and others", title = "{Java} Client Serveur", publisher = pub-EYROLLES, address = pub-EYROLLES:adr, pages = "????", year = "19xx", ISBN = "2-212-08938-X (??Invalid checksum??)", ISBN-13 = "978-2-212-08938-7 (??Invalid checksum??)", LCCN = "????", bibdate = "Mon May 11 09:43:08 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "285 FF", URL = "http://www.estp.fr/eyrolles; http://www.estp.fr/eyrolles/ouvrages/book159.html", acknowledgement = ack-nhfb, language = "French", } @Book{Niemeyer:19xx:EJd, author = "Pat Niemeyer and Josh Peck", title = "Exploring {Java}", publisher = pub-IMAGE-ART, address = pub-IMAGE-ART:adr, year = "19xx", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Chinese translation.", price = "????", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Niemi:19xx:OIJ, author = "Juha Niemi and Petri Kiuttu", title = "Opeta itsellesi {JavaScript}", publisher = "Suomen Atk-kustannus Oy", address = "PL 68, 02601 Espoo, Finland", pages = "290", year = "19xx", ISBN = "951-762-447-6", ISBN-13 = "978-951-762-447-3", LCCN = "????", bibdate = "Mon Aug 18 16:44:01 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Includes CD-ROM.", price = "265 Markka", URL = "http://www.satku.fi/; http://www.satku.fi/4javascr.htm", acknowledgement = ack-nhfb, language = "Finnish", } @Book{Nishimura:19xx:IJ, author = "Toshihiro Nishimura and others", title = "Introduction to {Java}", publisher = "Shoeisha Co., Ltd.", address = "????", pages = "????", year = "19xx", ISBN = "4-88135-351-9", ISBN-13 = "978-4-88135-351-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "2800 yen", URL = "http://www.coara.or.jp/coara/eto/jbook/", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Oaks:19xx:JTb, author = "Scott Oaks and Henry Wong", title = "{Java} Threads", publisher = pub-ORA, address = pub-ORA:adr, pages = "????", year = "19xx", ISBN = "4-900900-54-0", ISBN-13 = "978-4-900900-54-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.oreilly.co.jp/", note = "Japanese translation.", price = "3,400 yen", URL = "http://www.oreilly.co.jp/BOOK/jthread.htm", acknowledgement = ack-nhfb, language = "Japanese", url-publisher = "http://www.oreilly.co.jp/", } @Book{Orfali:19xx:CSPb, author = "Robert Orfali and Dan Harkey", title = "{Client}-Server Programming with {Java} and {CORBA}", publisher = pub-NUOVA-ITALIA, address = pub-NUOVA-ITALIA:adr, pages = "????", year = "19xx", ISBN = "80-471-1635-1 (??Invalid checksum??)", ISBN-13 = "978-80-471-1635-9 (??Invalid checksum??)", LCCN = "????", bibdate = "Mon May 11 09:43:12 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "108000 L.", acknowledgement = ack-nhfb, language = "Italian", } @Book{Orfali:19xx:PJC, author = "Robert Orfali and Dan Harkey", title = "{Programmieren mit {Java} und CORBA}", publisher = pub-AWV, address = pub-AWV:adr, year = "19xx", ISBN = "3-8273-1324-4 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1324-9 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "90 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Perry:19xx:MVJ, author = "Greg Perry", title = "Minidoc {Visual J++}", publisher = pub-SIMON-SCHUSTER-FRANCE, address = pub-SIMON-SCHUSTER-FRANCE:adr, pages = "????", year = "19xx", ISBN = "2-7440-0230-5", ISBN-13 = "978-2-7440-0230-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ssm.fr/", price = "79 FF", URL = "http://www.ssm.fr/catalog/fiches/0230.htm", acknowledgement = ack-nhfb, language = "French", url-publisher = "http://www.ssm.fr/", } @Book{Perry:19xx:UVJb, author = "Greg Perry", title = "Usare {Visual J++}", publisher = pub-JACKSON-LIBRI, address = pub-JACKSON-LIBRI:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.jacksonlibri.it/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "45000 L.", acknowledgement = ack-nhfb, language = "Italian", url-publisher = "http://www.jacksonlibri.it/", } @Book{Perry:19xx:UVJs, author = "Greg Perry", title = "Usando {Visual J++}", publisher = pub-EDITORE-CAMPUS, address = pub-EDITORE-CAMPUS:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.campus.com.br/about-us.htm; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://www.campus.com.br/catalogo/livro.cfm?cod_livro=20148", acknowledgement = ack-nhfb, language = "Portuguese", } @Book{Pew:19xx:CJ, author = "John A. Pew and John Cable", title = "Core {JavaBeans}", publisher = pub-PH, address = pub-PH:adr, year = "19xx", ISBN = "0-13-786294-6", ISBN-13 = "978-0-13-786294-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prenhall.com/", price = "????", acknowledgement = ack-nhfb, } @Book{Pew:19xx:IJ, author = "John A. Pew", title = "Instant {Java}", publisher = pub-ASCII, address = pub-ASCII:adr, pages = "????", year = "19xx", ISBN = "4-7561-1684-1", ISBN-13 = "978-4-7561-1684-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.ascii.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Japanese translation.", price = "????", URL = "http://www.ascii.co.jp/pb/book1/shinkan/detail/1322237.html", acknowledgement = ack-nhfb, language = "Japanese", url-author = "http://www.vivids.com/java/author.html", url-publisher = "http://www.ascii.co.jp/", } @Book{Pew:19xx:SJ, author = "John A. Pew", title = "Subito {Java}", publisher = pub-MONDADORI-INFORMATICA, address = pub-MONDADORI-INFORMATICA:adr, year = "19xx", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mondadori.com/", price = "70000 L.", acknowledgement = ack-nhfb, language = "Italian", } @Book{Phing:19xx:JCA, author = "Chen Ing Phing and E Wen Wei", title = "{Java}: Creating Animation Homepage", publisher = pub-FLAG, address = pub-FLAG:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 07:55:47 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "522 NT\$", URL = "http://www.seed.net.tw/~flaginfo/", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Piemont:19xx:JBE, author = "Claudia Piemont", title = "{Java f{\"u}r den Business Einsatz}", publisher = pub-VIEWEG, address = pub-VIEWEG:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Aug 14 17:40:22 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "88 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Preis:19xx:EJ, author = "Rotter Preis", title = "{Einblicke in Java}", publisher = pub-CARL-HANSER, address = pub-CARL-HANSER:adr, pages = "????", year = "19xx", ISBN = "3-446-18908-4", ISBN-13 = "978-3-446-18908-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/german.html; http://www.hanser.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "49 DM", URL = "http://www.hanser.de/", acknowledgement = ack-nhfb, language = "German", } @Book{Prosise:19xx:DMA, author = "Jeff Prosise", title = "In Deep with {MFC\slash ActiveX}", publisher = pub-IMAGE-ART, address = pub-IMAGE-ART:adr, pages = "????", year = "19xx", ISBN = "957-9641-27-7", ISBN-13 = "978-957-9641-27-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Chinese translation by Liu The Ming.", price = "1000 NT\$", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Purcell:19xx:WMJ, author = "Lee Purcell", title = "Werken met {JavaScript}", publisher = pub-SYBEX-NEDERLAND, address = pub-SYBEX-NEDERLAND:adr, pages = "????", year = "19xx", ISBN = "90-5160-997-3", ISBN-13 = "978-90-5160-997-4", LCCN = "????", bibdate = "Mon Jun 22 11:49:57 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/dutch.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "fl. 49,00", URL = "http://www.sybex.nl/nieuw/wmjavas.htm", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Redlich:19xx:CPE, author = "Jens-Peter Redlich", title = "{CORBA 2.0: Praktische Einf{\"u}hrung f{\"u}r C++ und Java}", publisher = pub-AW, address = pub-AW:adr, year = "19xx", ISBN = "3-8273-1060-1 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1060-6 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "60 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Reed:19xx:CC, author = "Jim Reed and others", title = "{Caf{\'e}} Companion", publisher = "Symantec", address = "????", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://cafe.symantec.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$30", acknowledgement = ack-nhfb, url-publisher = "http://cafe.symantec.com/", } @Book{Ren:19xx:RHJ, author = "Huang Jung Ren", title = "Relax on hand with {Java}", publisher = "Acer TWP Corp.", address = "????", pages = "????", year = "19xx", ISBN = "957-23-0435-6", ISBN-13 = "978-957-23-0435-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.acertwp.com.tw; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "350 NT\$", acknowledgement = ack-nhfb, language = "Chinese", url-publisher = "http://www.acertwp.com.tw", } @Book{Reynolds:19xx:SEU, author = "Mark Reynolds and Andrew Wooldridge", title = "Special Edition Using {JavaScript}", publisher = "Simon and Schuster (Asia)", address = "Singapore", pages = "????", year = "19xx", ISBN = "957-9625-56-5", ISBN-13 = "978-957-9625-56-2", LCCN = "????", bibdate = "Mon Aug 18 07:55:47 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Chinese translation by Yhou Chi Fhu of \cite{Reynolds:1996:UJ}. Includes CD-ROM.", price = "460 NT\$", URL = "http://www.sbpa.org.sg/members/4764688.htm", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Rhung:19xx:JJP, author = "Chen Jien Rhung and others", title = "{Java\slash JavaScript} Programming Design", publisher = "Ru Lin Books Co.", address = "??, Taiwan", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 07:55:47 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "300 NT\$", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Rhung:19xx:JPD, author = "Chen Jien Rhung and Wang Tze Rhung", title = "{Java} Programing and Design", publisher = "Ru Lin Books Co.", address = "????", pages = "????", year = "19xx", ISBN = "957-652-848-8", ISBN-13 = "978-957-652-848-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "270 NT\$", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Ritchey:19xx:JJ, author = "Tim Ritchey", title = "{Javascript} \& {Java}", publisher = pub-IMPRESS, address = pub-IMPRESS:adr, pages = "????", year = "19xx", ISBN = "4-8443-4918-X", ISBN-13 = "978-4-8443-4918-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.ips.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "2,980 yen", URL = "http://www.ips.co.jp/book/4918/4918.htm", acknowledgement = ack-nhfb, language = "Japanese", url-publisher = "http://www.ips.co.jp/", } @Book{Ritchey:19xx:JPb, author = "Tim Ritchey", title = "{Java} Programming", publisher = "CA Books c/o DRT Int'l", address = "????", pages = "????", year = "19xx", ISBN = "89-86604-08-6 (??invalid ISBN??)", ISBN-13 = "978-89-86604-08-5 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Korean translation by Hee-Chun Kang and Bok-Sik Kim.", price = "15,000 Won", acknowledgement = ack-nhfb, language = "Korean", } @Book{Ritchey:19xx:PCJa, author = "Tim Ritchey", title = "Programando con {Java}", publisher = pub-PH, address = pub-PH:adr, pages = "????", year = "19xx", ISBN = "84-89660-60-3 (??invalid ISBN??)", ISBN-13 = "978-84-89660-60-1 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.prentice.com.mx/", price = "4495 Ptas.", acknowledgement = ack-nhfb, language = "Spanish", url-publisher = "http://prentice.com.mx/", } @Book{Ritchey:19xx:PCJb, author = "Tim Ritchey", title = "Programando com {Java}! Beta 2.0", publisher = pub-EDITORE-CAMPUS, address = pub-EDITORE-CAMPUS:adr, year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.campus.com.br/about-us.htm; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "R\$60", acknowledgement = ack-nhfb, language = "Portuguese", } @Book{Ritchey:19xx:PJa, author = "Tim Ritchey", title = "Programming with {Java}", publisher = "New Riders", address = "????", edition = "Second", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/newriders/", } @Book{Ritchey:19xx:PJb, author = "Tim Ritchey", title = "Programming with {Java}", publisher = pub-NRP, address = pub-NRP:adr, edition = "Second", year = "19xx", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/newriders/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$35", acknowledgement = ack-nhfb, } @Book{Ritchey:19xx:PMJ, author = "Tim Ritchey", title = "Programmeren met {Java}!", publisher = pub-ACADEMIC-SERVICE, address = pub-ACADEMIC-SERVICE:adr, pages = "377", year = "19xx", ISBN = "90-395-0390-7", ISBN-13 = "978-90-395-0390-4", LCCN = "????", bibdate = "Mon Jun 22 08:00:50 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/dutch.html; http://www.acaserv.nl; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "fl. 69; Bfr 1388", URL = "http://acaserv.nl/bestel/5_0390.htm; http://www.acaserv.nl; http://www.acaserv.nl/5_0390.html", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Ritchey:19xx:UJ, author = "Tim Ritchey", title = "Usare {Java}", publisher = pub-JACKSON-LIBRI, address = pub-JACKSON-LIBRI:adr, pages = "352", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.jacksonlibri.it/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "59000 Lire", URL = "http://www.jacksonlibri.it/Libri/libri-aut.htm", acknowledgement = ack-nhfb, language = "Italian", url-publisher = "http://www.jacksonlibri.it/", } @Book{Ritchey:19xx:VJJ, author = "Tim Ritchey", title = "{Visual J++} \& {Java}", publisher = pub-IMPRESS, address = pub-IMPRESS:adr, pages = "????", year = "19xx", ISBN = "4-8443-4809-4", ISBN-13 = "978-4-8443-4809-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.ips.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "2,800 yen", URL = "http://www.ips.co.jp/book/4809/4809.htm", acknowledgement = ack-nhfb, language = "Japanese", url-publisher = "http://www.ips.co.jp/", } @Book{Rodley:19xx:OVJ, author = "John Rodley", title = "Het ontwikkelen van {Java} Applets", publisher = pub-AW-NL, address = pub-AW-NL:adr, pages = "????", year = "19xx", ISBN = "90-6789-734-5", ISBN-13 = "978-90-6789-734-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/dutch.html; http://www.adweslo.nl/explorer.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "fl. 80", URL = "http://www.channel1.com/users/ajrodley/", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Rodley:19xx:PAJ, author = "John Rodley", title = "Programmer des Applets {Java} Megapoche", publisher = pub-SYBEX-FRANCE, address = pub-SYBEX-FRANCE:adr, pages = "????", year = "19xx", ISBN = "2-7361-2142-2", ISBN-13 = "978-2-7361-2142-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.fr/", price = "98 FF", URL = "http://www-db.sybex.fr/cgi-bin/Sybex/Webdriver?MIval=Fiche_Book.html&Reference=2142", acknowledgement = ack-nhfb, language = "French", url-author = "http://www.channel1.com/users/ajrodley/", url-publisher = "http://www.sybex.fr/", } @Book{Rodley:19xx:WJAc, author = "John Rodley", title = "Writing {Java} Applets", publisher = pub-IMAGE-ART, address = pub-IMAGE-ART:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Chinese translation by Chiang Yhung Shiang.", acknowledgement = ack-nhfb, language = "Chinese", url-author = "http://www.channel1.com/users/ajrodley/", } @Book{Saleh:19xx:LDW, author = "Imad Saleh", title = "Les langages de d{\'e}veloppement sur Web: {Java}, Shockwave, {VRML}", publisher = "Editions Herm{\`e}s", address = "????", year = "19xx", ISBN = "2-86601-542-8", ISBN-13 = "978-2-86601-542-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.editions-hermes.fr/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "145 FF", URL = "http://www.editions-hermes.fr/principal/html/saleh.htm", acknowledgement = ack-nhfb, language = "French", } @Book{Schlabach:19xx:JPV, author = "Torsten Schlabach", title = "{Java-Programmierung mit Visual J++}", publisher = pub-AW, address = pub-AW:adr, year = "19xx", ISBN = "3-8273-1191-8 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1191-7 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "60 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Schmid:19xx:JS, author = "Volker Schmid", title = "{Java 1.2 Schnell{\"u}bersicht}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, year = "19xx", ISBN = "3-8272-9040-6 (??invalid ISBN??)", ISBN-13 = "978-3-8272-9040-3 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "46 SF", URL = "http://www.mut.ch/html/v2/Produkt-Information.htx?&x_pp=204%2e94%2e76%2e206VanW4xQbKi&x_pk=Direkt-Fr&x_stichwort=java&x_suchsprache=A&x_search=T&x_artikelnr=25435", acknowledgement = ack-nhfb, language = "German", } @Book{Schneider:19xx:UEJ, author = "Jeff Schneider and Rajeev Arora", title = "Using Enterprise {Java}", publisher = pub-NUOVA-ITALIA, address = pub-NUOVA-ITALIA:adr, pages = "????", year = "19xx", ISBN = "80-7897-088-7 (??Invalid checksum??)", ISBN-13 = "978-80-7897-088-3 (??Invalid checksum??)", LCCN = "????", bibdate = "Mon May 11 09:43:20 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "142000 L.", acknowledgement = ack-nhfb, language = "Italian", } @Book{Schnoor:19xx:IHJa, author = "Peter Schnoor", title = "{Intranet}, {HTML} og {Java}", publisher = "KnowWare", address = "Ordrupvej 63 C, 2920 Charlottenlund, Denmark", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 16:50:25 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", URL = "http://www.knowware.dk/dk/dk06.htm", acknowledgement = ack-nhfb, language = "Danish", } @Book{Schnoor:19xx:IHJb, author = "Peter Schnoor", title = "{Intranet, HTML und Java}", publisher = "KnowWare", address = "Ordrupvej 63 C, 2920 Charlottenlund, Denmark", pages = "48", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 16:50:25 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Nr. 133", URL = "http://www.knowware.dk; http://www.knowware.dk/de/de06.htm", acknowledgement = ack-nhfb, language = "German", } @Book{Schnoor:19xx:IHJc, author = "Peter Schnoor", title = "Intranet, {HTML} und {Java}", publisher = "KnowWare", address = "????", year = "19xx", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.knowware.dk; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://www.knowware.dk/de/internet.htm", acknowledgement = ack-nhfb, language = "German", } @Book{Schnoor:19xx:IHO, author = "Peter Schnoor", title = "Intranet, {HTML} og {Java}", publisher = "KnowWare", address = "????", year = "19xx", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.knowware.dk; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", acknowledgement = ack-nhfb, language = "Danish", } @Book{Schulz:19xx:JT, author = "Paul Schulz", title = "{Java 1.1 Taschenbuch}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, year = "19xx", ISBN = "3-8272-5227-X (??invalid ISBN??)", ISBN-13 = "978-3-8272-5227-2 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "20 DM", URL = "http://www.mut.ch/html/buchinfo.htx?&x_pp=dJgxRqA9wlAYNijX&x_az=10&x_pk=VpLvjnsx7b5V&x_pa=B&x_pr=oS&x_bestell=25227&x_stichwort=Schulz&x_sprache=A&x_start=1&x_gefunden=2&x_query=&x_lastpage=buchfund&x_soft=&x_suchewo=A", acknowledgement = ack-nhfb, language = "German", } @Book{Shen:19xx:JJ, author = "Chuang Thung Shen and Syu Sheng Shiung", title = "{Java (JavaScript)}", publisher = "Computer and Information Publishing", address = "??, Taiwan", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Aug 18 07:55:47 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "380 NT\$", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Shing:19xx:IPD, author = "Yang We Shing", title = "{Internet} Programming and Design ({Java} and {HTML})", publisher = "Chuen Hwa Books \& Technology Co., Ltd.", address = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.chwa.com.tw; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "250 NT\$", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Shing:19xx:SJ, author = "Chou Chung Shing", title = "Search on {Java}", publisher = pub-UNALIS, address = pub-UNALIS:adr, pages = "????", year = "19xx", ISBN = "957-22-2084-5", ISBN-13 = "978-957-22-2084-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.unalis.com.tw/index.html", price = "220 NT\$", URL = "http://www.unalis.com.tw/index.html", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Shiu:19xx:EKJ, author = "Chi Shiu", title = "Easy To Know {Java}", publisher = "Infowide Book Co.", address = "????", pages = "????", year = "19xx", ISBN = "957-726-335-6 (??invalid ISBN??)", ISBN-13 = "978-957-726-335-3 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "130 NT\$", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Siddalingaiah:19xx:JHa, author = "Madhu Siddalingaiah and Stephen Lockwood and Chris Ott", title = "{Java} How To", publisher = pub-IMAGE-ART, address = pub-IMAGE-ART:adr, pages = "????", year = "19xx", ISBN = "957-9641-51-X", ISBN-13 = "978-957-9641-51-7", LCCN = "????", bibdate = "Mon Aug 18 07:55:47 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Chinese translation by Chai Bao Zing of \cite{Siddalingaiah:1996:JHD}. Includes CD-ROM.", price = "480 NT\$", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Siddalingaiah:19xx:JHb, author = "Madhu Siddalingaiah and Stephen D. Lockwood", title = "{Java} How-To", publisher = pub-DAERIM, address = pub-DAERIM:adr, pages = "????", year = "19xx", ISBN = "89-7280-338-3 (??invalid ISBN??)", ISBN-13 = "978-89-7280-338-6 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.drbook.co.kr/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Korean translation.", price = "????", URL = "http://www.drbook.co.kr/daerim/jvht.htm", acknowledgement = ack-nhfb, language = "Korean", url-author = "http://www.kaizen.net/kaizenpeople/madhu/", url-publisher = "http://www.drbook.co.kr/", } @Book{Simon:19xx:JE, author = "Hanno Simon", title = "{Java, eine Einf{\"u}hrung}", publisher = pub-SYBEX-VERLAG, address = pub-SYBEX-VERLAG:adr, pages = "????", year = "19xx", ISBN = "3-8155-7219-3", ISBN-13 = "978-3-8155-7219-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.de/", price = "49 DM", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.sybex.de/", } @Book{Sinclair:19xx:JWMb, author = "Joseph Sinclair", title = "{Java Web Magic}", publisher = pub-ACADEMIC-SERVICE-VERLAG, address = pub-ACADEMIC-SERVICE-VERLAG:adr, year = "19xx", ISBN = "3-932073-25-8 (??invalid ISBN??)", ISBN-13 = "978-3-932073-25-0 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "45 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Smith:19xx:JSC, author = "Randy J. Smith", title = "{Java}: Strictly for {C} Programmers Video Tape Series", publisher = "RJS Int'l Research", address = "????", year = "19xx", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.rjsinternational.com/", price = "US\$100", URL = "http://www.rjsinternational.com/java/index.html", acknowledgement = ack-nhfb, } @Book{Smith:19xx:UJC, author = "Randy J. Smith", title = "Using {Java} to Create an Application Video Tape Series", publisher = "RJS Int'l Research", address = "????", year = "19xx", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.rjsinternational.com/", price = "US\$200", URL = "http://www.rjsinternational.com/java/index.html", acknowledgement = ack-nhfb, } @Book{Smith:19xx:UJV, author = "Randy J. Smith", title = "Understanding {Java} Video Tape Series", publisher = "RJS Int'l Research", address = "????", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.rjsinternational.com/", price = "US\$250", URL = "http://www.javatrain.com; http://www.rjsinternational.com/java/index.html", acknowledgement = ack-nhfb, url-author = "http://www.javatrain.com", url-publisher = "http://javatrain.com", } @Book{Solutions:19xx:IPJc, author = "{Rapid Systems Solutions}", title = "An Introduction to Programming {Java} Applets Using {J++}", publisher = pub-MINDQ, address = pub-MINDQ:adr, year = "19xx", ISBN = "1-57559-009-3", ISBN-13 = "978-1-57559-009-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mindq.com/", price = "US\$50", acknowledgement = ack-nhfb, url-author = "http://www.rssi.com/", url-publisher = "http://www.mindq.com/", } @Book{Standish:19xx:SDJ, author = "Thomas A. Standish", title = "Structures de Donn{\'e}es en {Java}", publisher = pub-ITCP, address = pub-ITCP:adr, pages = "????", year = "19xx", ISBN = "2-84180-194-2", ISBN-13 = "978-2-84180-194-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.thomson.com/intluk.html", price = "250 FF", acknowledgement = ack-nhfb, language = "French", url-author = "http://cseng.aw.com/authordetail.qry?AuthorID=386", url-publisher = "http://www.thomson.com/intluk.html", } @Book{Stark:19xx:PJ, author = "Brian Stark", title = "{Programmieren in Java}", publisher = pub-FRANZIS-VERLAG, address = pub-FRANZIS-VERLAG:adr, year = "19xx", ISBN = "3-7723-4432-1", ISBN-13 = "978-3-7723-4432-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.franzis-buch.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "49 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Steyer:19xx:JK, author = "Ralph Steyer", title = "{Java 1.2 Kompendium}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, year = "19xx", ISBN = "3-8272-5317-9 (??invalid ISBN??)", ISBN-13 = "978-3-8272-5317-0 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "90 DM", URL = "http://www.mut.ch/html/buchinfo.htx?&x_pp=dJgxRqA9wlAYNijX&x_az=10&x_pk=VpLvjnsx7b5V&x_pa=B&x_pr=oS&x_bestell=25317&x_stichwort=Steyer&x_sprache=A&x_start=1&x_gefunden=1&x_query=&x_lastpage=buchfund&x_soft=&x_suchewo=A", acknowledgement = ack-nhfb, language = "German", } @Book{Steyer:19xx:JT, author = "R. Steyer", title = "{Java 1.2\slash 2.0 Taschenbuch}", publisher = pub-MARKT-TECHNIK, address = pub-MARKT-TECHNIK:adr, year = "19xx", ISBN = "3-8272-5409-4 (??invalid ISBN??)", ISBN-13 = "978-3-8272-5409-2 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mut.ch/", price = "20 SF", URL = "http://www.mut.ch/html/v2/Produkt-Information.htx?&x_pp=204%2e94%2e76%2e206VanW4xQbKi&x_pk=Direkt-Fr&x_stichwort=java&x_suchsprache=A&x_search=T&x_artikelnr=25409", acknowledgement = ack-nhfb, language = "German", } @Book{Suanj:19xx:JPZ, author = "Dario Suanj", title = "{Java}: Programiranje za Internet i {World Wide Web}", publisher = "Znak", address = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.znak.tel.hr/znak", price = "199 Kn", URL = "http://www.znak.tel.hr/znak/java", acknowledgement = ack-nhfb, language = "Croatian", xxnote = "Check accents in author name??", } @Book{Suematsu:19xx:JR, author = "Chihiro Suematsu and Keith Bennett", title = "{Java} Revolution", publisher = "Diamond, Inc.", address = "????", pages = "????", year = "19xx", ISBN = "4-483-71970-0", ISBN-13 = "978-4-483-71970-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "1,900 yen", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Sun:19xx:Ja, author = "{Sun Microsystems}", title = "{Java}", publisher = pub-ASCII, address = pub-ASCII:adr, year = "19xx", ISBN = "4-7561-1664-7", ISBN-13 = "978-4-7561-1664-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.ascii.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://www.ascii.co.jp/pb/book1/shinkan/detail/1322200.html", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Sun:19xx:Jb, author = "{Sun Microsystems}", title = "{Java}", publisher = pub-ASCII, address = pub-ASCII:adr, year = "19xx", ISBN = "4-7561-1688-4", ISBN-13 = "978-4-7561-1688-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.ascii.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://www.ascii.co.jp/pb/book1/shinkan/detail/1322245.html", acknowledgement = ack-nhfb, language = "Japanese", } @Book{SunSoft:19xx:JEC, author = "{SunSoft}", title = "{Java} Enterprise Computing: Enabling Breakaway Business Strategies", publisher = pub-SUN, address = pub-SUN:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sun.com/", price = "????", acknowledgement = ack-nhfb, url-publisher = "http://www.sun.com/", } @Book{Swan:19xx:MVJ, author = "Tom Swan", title = "Mastering {Visual J++}", publisher = "Dialectica Computer Pub.", address = "????", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.dcp.kiev.ua/koi8/Welcome.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://www.dcp.kiev.ua/koi8/books/master/m_vjpp.html", acknowledgement = ack-nhfb, language = "Russian", url-publisher = "http://www.dcp.kiev.ua/koi8/Welcome.html", } @Book{Takagi:19xx:J, author = "K. Takagi", title = "{Java}", publisher = "RESET Publishing", address = "????", year = "19xx", ISBN = "4-8103-9304-6", ISBN-13 = "978-4-8103-9304-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.reset.co.jp/home.html", price = "????", URL = "http://www.reset.co.jp/jb/home.html", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Taylor:19xx:OJ, author = "Taylor", title = "Open {JBuilder}", publisher = pub-ITCP, address = pub-ITCP:adr, pages = "????", year = "19xx", ISBN = "1-85032-891-9", ISBN-13 = "978-1-85032-891-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.thomson.com/intlitcp.html", price = "US\$40", acknowledgement = ack-nhfb, url-publisher = "http://www.thomson.com/intlitcp.html", } @Book{Thai:19xx:JDI, author = "Liu Pang Thai", title = "{Java} Database and Interactive Programming Design", publisher = pub-UNALIS, address = pub-UNALIS:adr, pages = "????", year = "19xx", ISBN = "957-22-2208-2", ISBN-13 = "978-957-22-2208-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.unalis.com.tw/index.html", price = "220 NT\$", URL = "http://www.unalis.com.tw/index.html", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Thomas:19xx:JIa, author = "Michael D. Thomas and Pratik R. Patel and Alan D. Hudson and Donald A. {Ball, Jr.}", title = "{Java} For The {Internet}", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, pages = "????", year = "19xx", ISBN = "957-641-874-7", ISBN-13 = "978-957-641-874-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.gotop.com.tw; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Chinese translation by Infocom of \cite{Thomas:1996:JPI}. Includes CD-ROM.", price = "580 NT\$", URL = "http://www.gotop.com.tw", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Thomas:19xx:JIb, author = "Michael D. Thomas and Pratik R. Patel and Alan D. Hudson and Donald A. {Ball, Jr.}", title = "{Java} For The {Internet}", publisher = pub-PITER-PUBLISHING, address = pub-PITER-PUBLISHING:adr, pages = "????", year = "19xx", ISBN = "5-88782-119-1", ISBN-13 = "978-5-88782-119-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Russian translation of \cite{Thomas:1996:JPI}. Includes CD-ROM.", URL = "http://www.piter-press.ru/; http://www.piter-press.ru/koi/ourbooks/comp/progr/er_pdij.html", acknowledgement = ack-nhfb, language = "Russian", url-publisher = "http://www.piter-press.ru/", } @Book{Thomas:19xx:JPIb, author = "Michael Thomas", title = "{Java} 1.1 Programming for the {Internet}", publisher = pub-VENTANA, address = pub-VENTANA:adr, edition = "Second", pages = "????", year = "19xx", ISBN = "1-56604-746-3", ISBN-13 = "978-1-56604-746-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.vmedia.com/", price = "????", acknowledgement = ack-nhfb, url-publisher = "http://www.vmedia.com/", } @Book{Thomas:19xx:PEJ, author = "Michael D. Thomas and others", title = "Programando em {Java} para a {Internet}", publisher = pub-MAKRON, address = pub-MAKRON:adr, pages = "????", year = "19xx", ISBN = "85-346-0689-7 (??invalid ISBN??)", ISBN-13 = "978-85-346-0689-9 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://safe.tesla.com.br/makron/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://safe.tesla.com.br/makron/options/livro.asp?id=62", acknowledgement = ack-nhfb, language = "Portuguese", url-publisher = "http://safe.tesla.com.br/makron/", } @Book{Thomas:19xx:PJ, author = "Michael Thomas", title = "Programmeren in {Java}", publisher = pub-SYBEX-NEDERLAND, address = pub-SYBEX-NEDERLAND:adr, year = "19xx", ISBN = "90-419-0018-7", ISBN-13 = "978-90-419-0018-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.nl/", price = "fl. 89", URL = "http://www.sybex.nl/catalogus/programmeren/progjava.htm", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Thomas:19xx:PJP, author = "Michael Thomas", title = "Programaci{\'o}n en {Java} para Internet", publisher = pub-EDITORIAL-PARANINFO, address = pub-EDITORIAL-PARANINFO:adr, year = "19xx", ISBN = "84-283-2394-1", ISBN-13 = "978-84-283-2394-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "6726 Ptas.", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Tittel:19xx:EJA, author = "Ed Tittel and Mark Gaither", title = "{Einf{\"u}hrung in {Java} (AKA Alles {Java}!)}", publisher = pub-ITCP, address = pub-ITCP:adr, year = "19xx", ISBN = "3-8266-0259-5 (??invalid ISBN??)", ISBN-13 = "978-3-8266-0259-7 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.itp.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "59 DM", URL = "http://www.itp.de/progra/0259/0259.html", acknowledgement = ack-nhfb, language = "German", } @Book{Tittel:19xx:JSa, author = "Ed Tittel", title = "{Java} Secrets", publisher = "Dialectica Computer Pub.", address = "????", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.dcp.kiev.ua/koi8/books/secrets/s_java.html", acknowledgement = ack-nhfb, language = "Russian", url-publisher = "http://www.dcp.kiev.ua/koi8/Welcome.html", } @Book{Tittel:19xx:JSb, author = "Ed Tittel", title = "{Java} Secrets", publisher = "Dialectica Computer Pub.", address = "????", year = "19xx", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.dcp.kiev.ua/koi8/Welcome.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://www.dcp.kiev.ua/koi8/books/secrets/s_java.html", acknowledgement = ack-nhfb, language = "Russian", } @Book{Tittel:19xx:MFJ, author = "Ed Tittel and Bill Brogden", title = "Manual fundamental de {Java}", publisher = pub-ANAYA-MULTIMEDIA, address = pub-ANAYA-MULTIMEDIA:adr, year = "19xx", ISBN = "84-415-0274-9", ISBN-13 = "978-84-415-0274-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.anayamultimedia.es/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "3750 Ptas.", URL = "http://www.anaya.es/Catalogo/CGA?act=L&art=2310138&ed=2300", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Tittel:19xx:MGJ, author = "Ed Tittel and Mark Gaither", title = "60 Minute Guide to {Java}", publisher = pub-SOFTBANK, address = pub-SOFTBANK:adr, pages = "????", year = "19xx", ISBN = "4-89052-894-6", ISBN-13 = "978-4-89052-894-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.softbank.co.jp/softbank/publishing/", price = "????", URL = "http://www.softbank.co.jp/softbank/publishing/books/kikan/kikan6/003.htm", acknowledgement = ack-nhfb, language = "Japanese", url-publisher = "http://www.softbank.co.jp/softbank/publishing/", } @Book{Tung:19xx:HCJ, author = "Wu Shiu Tung and others", title = "{HTML}, {CGI}, {Java}, and {VB Script}", publisher = "Run PC", address = "??, Taiwan", pages = "????", year = "19xx", ISBN = "957-99138-0-3 (??invalid ISBN??)", ISBN-13 = "978-957-99138-0-5 (??invalid ISBN??)", LCCN = "????", bibdate = "Mon Aug 18 07:55:47 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "450 NT\$", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Tyma:19xx:JPPb, author = "Paul Tyma and Gabriel Torok and Troy Downing", title = "{Java} Primer Plus", publisher = pub-WAITE-GROUP, address = pub-WAITE-GROUP:adr, pages = "????", year = "19xx", ISBN = "957-99224-9-7 (??invalid ISBN??)", ISBN-13 = "978-957-99224-9-4 (??invalid ISBN??)", LCCN = "????", bibdate = "Mon Aug 18 07:55:47 MDT 1997", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/waite/; http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Chinese translation by Chiang Yung Hsiang of \cite{Tyma:1996:JPPa}. Includes CD-ROM.", price = "580 NT\$", URL = "http://www.preemptive.com/aboutauth.html; http://www.waite.com/waite/", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Tyma:19xx:JPPc, author = "Paul Tyma and others", title = "{Java} Primer Plus", publisher = pub-SOFTBANK, address = pub-SOFTBANK:adr, year = "19xx", ISBN = "4-7973-0119-8", ISBN-13 = "978-4-7973-0119-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Japanese translation.", price = "5900 yen", URL = "http://www.softbank.co.jp/softbank/publishing/books/editer/os1/JavaPower/index.html", acknowledgement = ack-nhfb, language = "Japanese", url-author = "http://www.preemptive.com/aboutauth.html", url-publisher = "http://www.softbank.co.jp/softbank/publishing/", } @Book{Urgo:19xx:JS, author = "Marissa Urgo", title = "The {Java} Source", publisher = pub-SIGS, address = pub-SIGS:adr, year = "19xx", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sigs.com/books/", price = "????", acknowledgement = ack-nhfb, } @Book{Valle:19xx:JMI, author = "Andr{\'e} Bittencourt do Valle and Claudia {Guimar{\~a} Bittencourt do Valle}", title = "{Java} Manual de Introdu{\c{c}}{\~a}o", publisher = "Axcel Books do Brasil Editora", address = "Rua da Gl{\'o}ria, 344/10 And. - Ed. Gl{\'o}ria Trade Center Gl{\'o}ria - Rio de Janeiro/RJ, Brasil", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Jun 22 17:33:46 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "R\$ 35", URL = "http://www.axcelbooks.com.br/cgi-bin/cgiwrap/axcel/pes-tit.pl?livro=102", acknowledgement = ack-nhfb, language = "Portuguese", } @Book{vanderLinden:19xx:JJa, author = "Peter {van der Linden}", title = "Just {Java}", publisher = pub-MAKRON, address = pub-MAKRON:adr, pages = "????", year = "19xx", ISBN = "85-346-0843-1 (??invalid ISBN??)", ISBN-13 = "978-85-346-0843-5 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://safe.tesla.com.br/makron/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "R\$75", URL = "http://safe.tesla.com.br/makron/options/livro.asp?id=592", acknowledgement = ack-nhfb, language = "Portuguese", url-author = "http://www.best.com/~pvdl/pvdl.html", url-publisher = "http://safe.tesla.com.br/makron/", } @Book{vanderLinden:19xx:JJe, author = "Peter {van der Linden}", title = "Just {Java}", publisher = pub-ASCII, address = pub-ASCII:adr, pages = "????", year = "19xx", ISBN = "4-7561-0799-0", ISBN-13 = "978-4-7561-0799-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.ascii.co.jp/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Japanese translation.", price = "4,800 yen", URL = "http://www.ascii.co.jp/pb/book1/shinkan/detail/1322396.html", acknowledgement = ack-nhfb, language = "Japanese", url-author = "http://www.best.com/~pvdl/pvdl.html", url-publisher = "http://www.ascii.co.jp/", } @Book{vanderLinden:19xx:PJ, author = "Peter {van der Linden}", title = "Proprio {Java}", publisher = pub-MONDADORI-INFORMATICA, address = pub-MONDADORI-INFORMATICA:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.mondadori.com/; http://wwwiz.com/books/european.html", note = "Italian translation of \cite{vanderLinden:1997:JJS}.", price = "70000 Lire", URL = "http://www.mondadori.com/; http://www.sun.com/smi/ssoftpress/books/vanderLinden2/vanderLinden2.html", acknowledgement = ack-nhfb, language = "Italian", url-author = "http://www.best.com/~pvdl/pvdl.html", url-publisher = "http://www.mondadori.com/", } @Book{Vanhelsuwe:19xx:CJB, author = "Laurence Vanhelsuw{\'e}", title = "{H}{\'e}t Complete {Java} Boek", publisher = pub-SYBEX-NEDERLAND, address = pub-SYBEX-NEDERLAND:adr, year = "19xx", ISBN = "90-5160-951-5", ISBN-13 = "978-90-5160-951-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.nl/", price = "fl. 129", URL = "http://www.sybex.nl/catalogus/internet/java.htm", acknowledgement = ack-nhfb, language = "Dutch", xxauthor = "?. Flynn", } @Book{Vanhelsuwe:19xx:MBJ, author = "Laurence Vanhelsuw{\'e}", title = "Mastering {Borland JBuilder}", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "????", year = "19xx", ISBN = "0-7821-1989-1", ISBN-13 = "978-0-7821-1989-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.com/", price = "US\$50", acknowledgement = ack-nhfb, url-publisher = "http://www.sybex.com/", } @Book{Vanhelsuwe:19xx:MJ, author = "Laurence Vanhelsuw{\'e}", title = "{Mastering JavaBeans}", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "????", year = "19xx", ISBN = "3-8155-2021-5", ISBN-13 = "978-3-8155-2021-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.de/", price = "59 DM", acknowledgement = ack-nhfb, language = "German", url-publisher = "http://www.sybex.de/", } @Book{vanHoff:19xx:APJ, author = "Arthur {van Hoff}", title = "{Applets programmieren mit Java}", publisher = pub-AW, address = pub-AW:adr, year = "19xx", ISBN = "3-8273-1032-6 (??invalid ISBN??)", ISBN-13 = "978-3-8273-1032-3 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.addison-wesley.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "50 DM", acknowledgement = ack-nhfb, language = "German", } @Book{vanHoff:19xx:HJb, author = "Arthur {van Hoff} and others", title = "Hooked On {Java}", publisher = pub-UNALIS, address = pub-UNALIS:adr, pages = "????", year = "19xx", ISBN = "957-22-2172-8", ISBN-13 = "978-957-22-2172-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.unalis.com.tw/index.html", note = "Chinese translation by Cheng Tze Wen of \cite{vanHoff:1996:HJC}. Includes CD-ROM.", price = "400 NT\$", URL = "http://www.unalis.com.tw/index.html", acknowledgement = ack-nhfb, language = "Chinese", } @Book{vanHoff:19xx:J, author = "Arthur {van Hoff} and others", title = "{Java}", publisher = "Wydawnictwa Helion", address = "????", pages = "????", year = "19xx", ISBN = "83-86718-30-7 (??invalid ISBN??)", ISBN-13 = "978-83-86718-30-6 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.helion.com.pl/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Polish translation by Tomasz Widuch.", price = "200 stron", URL = "http://www.helion.com.pl/ksiazki/java.htm", acknowledgement = ack-nhfb, language = "Polish", url-author = "http://www.javasoft.com/people/avh/", url-publisher = "http://www.helion.com.pl/", } @Book{Walmsley:19xx:PJ, author = "N. Walmsley", title = "Programming in {Java}", publisher = "Bernard Babani", address = "????", pages = "????", year = "19xx", ISBN = "0-85934-436-3", ISBN-13 = "978-0-85934-436-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.BookWeb.co.uk/babani/home.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", acknowledgement = ack-nhfb, url-publisher = "http://www.BookWeb.co.uk/babani/home.html", } @Book{Walnum:19xx:JEE, author = "Clayton Walnum", title = "{Java} em Exemplos: {A} Maneira Mais {F}{\'a}cil de Aprender a Programar para a {Web}", publisher = pub-MAKRON, address = pub-MAKRON:adr, pages = "644", year = "19xx", ISBN = "85-346-0680-3", ISBN-13 = "978-85-346-0680-6", LCCN = "????", bibdate = "Mon Aug 18 12:50:06 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://wwwiz.com/books/european.html", note = "Portuguese translation of \cite{Walnum:1996:JE}.", price = "R\$ 79.00", URL = "http://safe.tesla.com.br/makron/options/livro.asp?id=25; http://www.makron.com/", acknowledgement = ack-nhfb, language = "Portuguese", url-publisher = "http://safe.tesla.com.br/makron/", } @Book{Walsh:19xx:FJP, author = "Aaron Walsh", title = "Foundations of {Java} Programming for the {World Wide Web}", publisher = "Dialectica Computer Pub.", address = "????", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.dcp.kiev.ua/koi8/Welcome.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.dcp.kiev.ua/koi8/books/foundation/f_javaww.html", acknowledgement = ack-nhfb, language = "Russian", url-publisher = "http://www.dcp.kiev.ua/koi8/Welcome.html", } @Book{Walsh:19xx:JD, author = "Aaron Walsh", title = "{Java f{\"u}r Dummies}", publisher = pub-ITCP, address = pub-ITCP:adr, year = "19xx", ISBN = "3-8266-2716-4 (??invalid ISBN??)", ISBN-13 = "978-3-8266-2716-3 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.itp.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "50 DM", URL = "http://www.itp.de/dummies/2716/2716.html", acknowledgement = ack-nhfb, language = "German", } @Book{Walsh:19xx:JH, author = "Aaron Walsh", title = "Het {Java} Handboek", publisher = pub-AW-NL, address = pub-AW-NL:adr, pages = "????", year = "19xx", ISBN = "90-6789-733-7", ISBN-13 = "978-90-6789-733-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/dutch.html; http://www.adweslo.nl/explorer.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "fl. 80", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Walsh:19xx:JVDa, author = "Aaron Walsh", title = "{Java} voor dummies", publisher = pub-AW-NL, address = pub-AW-NL:adr, pages = "????", year = "19xx", ISBN = "90-6789-747-7", ISBN-13 = "978-90-6789-747-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/dutch.html; http://www.adweslo.nl/explorer.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "fl. 70", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Walsh:19xx:JVDb, author = "Aaron Walsh", title = "{Java} voor dummies", publisher = pub-AW-NL, address = pub-AW-NL:adr, edition = "Second", pages = "????", year = "19xx", ISBN = "90-6789-897-X", ISBN-13 = "978-90-6789-897-3", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.adweslo.nl/explorer.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "fl. 70", acknowledgement = ack-nhfb, language = "Dutch", } @Book{Wang:19xx:JPL, author = "Mingsheng Wang and Shih-Yang Yang", title = "The {Java} Programming Language", publisher = pub-FLAG, address = pub-FLAG:adr, pages = "ca. 400", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.flag.com.tw/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "400 NT\$", URL = "http://203.66.203.145/JavaBookEnglish.html; http://www.seed.net.tw/~flaginfo/", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Weber:19xx:SEUb, author = "Joseph Weber", title = "Special Edition Using {Java}", publisher = "BHV Russia", address = "????", year = "19xx", ISBN = "5-7791-0051-9", ISBN-13 = "978-5-7791-0051-9", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.bhv.ru/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://www.bhv.ru/Books/1997/TechnologyJavaPdl/TechnologyJavapdl.htm", acknowledgement = ack-nhfb, language = "Russian", } @Book{Wijela:19xx:JBP, author = "Michael R. Wijela", title = "{Java} Bahasa Pemograman {Internet}", publisher = "Dinas Tino", address = "????", pages = "????", year = "19xx", ISBN = "979-552-300-7", ISBN-13 = "978-979-552-300-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", acknowledgement = ack-nhfb, language = "Indonesian", } @Book{Winder:19xx:DJS, author = "Russel Winder and Graham Roberts", title = "Developing {Java} Software", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "????", year = "19xx", ISBN = "0-471-19983-4", ISBN-13 = "978-0-471-19983-0", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.wiley.com/", price = "US\$53", acknowledgement = ack-nhfb, url-publisher = "http://www.wiley.com/", } @Book{Winters:19xx:AED, author = "Patrick Winters and others", title = "Aprenda em 21 Dias {Visual J++}", publisher = pub-EDITORE-CAMPUS, address = pub-EDITORE-CAMPUS:adr, pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.campus.com.br/about-us.htm; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "????", URL = "http://www.campus.com.br/catalogo/livro.cfm?cod_livro=20170", acknowledgement = ack-nhfb, language = "Portuguese", url-publisher = "http://www.campus.com.br/about-us.htm", } @Book{Winters:19xx:VJP, author = "Patrick Winters and others", title = "{Visual J++} Le Programmeur", publisher = pub-SIMON-SCHUSTER-FRANCE, address = pub-SIMON-SCHUSTER-FRANCE:adr, pages = "????", year = "19xx", ISBN = "2-7440-0229-1", ISBN-13 = "978-2-7440-0229-8", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.ssm.fr/", price = "199 FF", URL = "http://www.ssm.fr/catalog/fiches/0229.htm", acknowledgement = ack-nhfb, language = "French", url-publisher = "http://www.ssm.fr/", } @Book{Wolmeringer:19xx:JTa, author = "Gottfried Wolmeringer", title = "{Java Taschentabelle}", publisher = "Hofacker Verlag", address = "????", year = "19xx", ISBN = "3-88963-376-5", ISBN-13 = "978-3-88963-376-7", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.hofacker.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "10 DM", URL = "http://www.hofacker.de/TAB376.HTM", acknowledgement = ack-nhfb, language = "German", } @Book{Wolmeringer:19xx:JTb, author = "Gottfried Wolmeringer", title = "{Java Taschentabelle}", publisher = "Hofacker Verlag", address = "????", year = "19xx", ISBN = "3-88963-847-3", ISBN-13 = "978-3-88963-847-2", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.hofacker.de/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "30 DM", acknowledgement = ack-nhfb, language = "German", } @Book{Wood:19xx:PVJa, author = "Charles A. Wood", title = "Programmer en {Visual J++}", publisher = pub-SYBEX-FRANCE, address = pub-SYBEX-FRANCE:adr, year = "19xx", ISBN = "2-7361-2291-7", ISBN-13 = "978-2-7361-2291-1", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/french.html; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.sybex.fr/", note = "Includes CD-ROM.", price = "229 FF", URL = "http://www-db.sybex.fr/cgi-bin/Sybex/Webdriver?MIval=Fiche_Book.html&Reference=2291; http://www.sybex.fr/", acknowledgement = ack-nhfb, language = "French", } @Book{Wu:19xx:IPO, author = "C. Thomas Wu", title = "An Introduction to Programming: An Object-Oriented Approach with {Java}", publisher = "Richard D. Irwin, Inc.", address = "????", pages = "????", year = "19xx", ISBN = "0-256-25462-1", ISBN-13 = "978-0-256-25462-4", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.irwin.com/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$47", URL = "http://www.irwin.com/catalogs/999103.html", acknowledgement = ack-nhfb, url-publisher = "http://www.irwin.com/", } @Book{Wygant:19xx:HPM, author = "Daniel Wygant", title = "How to Program Microsoft {Visual J++}", publisher = pub-ZD, address = pub-ZD:adr, pages = "????", year = "19xx", ISBN = "1-56276-525-6", ISBN-13 = "978-1-56276-525-5", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://dev.mcp.com:8001/about/coinfo/imprints/zdpress/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$40", acknowledgement = ack-nhfb, url-publisher = "http://dev.mcp.com:8001/about/coinfo/imprints/zdpress/", } @Book{Yang:19xx:IPD, author = "We Shing Yang", title = "{Internet} Programming and Design ({Java} and {HTML})", publisher = "Chuen Hwa Books \& Technology Co., Ltd.", address = "????", pages = "????", year = "19xx", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Nov 25 08:48:19 MST 1997", bibsource = "http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "250 NT\$", acknowledgement = ack-nhfb, language = "Chinese", url-publisher = "http://www.chwa.com.tw", } @Book{Yee:19xx:DJP, author = "Wang Yee", title = "Developing {JavaScript} Program Handbook", publisher = pub-UNALIS, address = pub-UNALIS:adr, pages = "????", year = "19xx", ISBN = "957-22-2261-9", ISBN-13 = "978-957-22-2261-4", LCCN = "????", bibdate = "Mon Aug 18 07:55:47 MDT 1997", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Includes CD-ROM.", price = "430 NT\$", URL = "http://www.unalis.com.tw/index.html", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Yee:19xx:JPL, author = "Huang Chung Yee", title = "{Java} Programming Language", publisher = "Chuen Hwa Books \& Technology Co., Ltd.", address = "????", pages = "????", year = "19xx", ISBN = "957-21-1533-2", ISBN-13 = "978-957-21-1533-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.chwa.com.tw; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "300 NT\$", acknowledgement = ack-nhfb, language = "Chinese", url-publisher = "http://www.chwa.com.tw", } @Book{Yih:19xx:JCA, author = "Wen-tau Yih and Ying-ping Chen", title = "{Java}: Creating Animation Homepage", publisher = pub-FLAG, address = pub-FLAG:adr, pages = "????", year = "19xx", ISBN = "957-717-192-3 (??invalid ISBN??)", ISBN-13 = "978-957-717-192-4 (??invalid ISBN??)", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://www.flag.com.tw/; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "580 NT\$", acknowledgement = ack-nhfb, language = "Chinese", url-publisher = "http://www.flag.com.tw/", } @Book{Zie:19xx:JPL, author = "Shin She Zie", title = "{Java} Programming Language", publisher = pub-GOTOP-INFORMATION, address = pub-GOTOP-INFORMATION:adr, pages = "????", year = "19xx", ISBN = "957-641-842-9", ISBN-13 = "978-957-641-842-6", LCCN = "????", bibdate = "Wed Jun 17 22:05:06 MDT 1998", bibsource = "http://lightyear.ncsa.uiuc.edu/~srp/java/chinese.html; http://www.gotop.com.tw; http://www.javaworld.com/javaworld/books/jw-books-alphabytitle.html; http://www.math.utah.edu/pub/tex/bib/java.bib", price = "420 NT\$", URL = "http://www.gotop.com.tw", acknowledgement = ack-nhfb, language = "Chinese", } @Misc{Ziv:19xx:MLJ, author = "Abraham Ziv and Moshe Olshansky", title = "Math Library for {Java}", howpublished = "World-Wide Web document", year = "19xx", bibdate = "Sun May 28 18:44:15 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.alphaworks.ibm.com/tec/mathlibrary4java", acknowledgement = ack-nhfb, } %%% ==================================================================== %%% Cross-referenced entries must come last: @Proceedings{OReilly:1995:WWW, editor = "{O'Reilly and Associates} and {Web Consortium (W3C)}", key = "WWWJ", booktitle = "{World Wide Web Journal}: The Fourth International {WWW} Conference Proceedings", title = "{World Wide Web Journal}: The Fourth International {WWW} Conference Proceedings", publisher = pub-ORA, address = pub-ORA:adr, pages = "xii + 735", year = "1995", ISBN = "1-56592-169-0", ISBN-13 = "978-1-56592-169-6", ISSN = "1085-2301", LCCN = "TK5105.888 .I68 1995", bibdate = "Mon May 11 11:06:14 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "The World Wide Web Journal is a quarterly publication that provides timely, in-depth coverage of the issues, techniques, and research developments in the World Wide Web. The December issue contains the Conference Proceeding papers that were chosen for the 4th International World Wide Web conference in Boston, MA.", price = "US\$39.95", URL = "http://www.ora.com/gnn/bus/ora/item/wj1.html", acknowledgement = ack-nhfb, } @Proceedings{Abrahart:1996:GIC, editor = "R. J. Abrahart", booktitle = "GeoComputation 96. 1st International Conference on GeoComputation: Leeds, UK, 17--19 September 1996", title = "GeoComputation 96. 1st International Conference on GeoComputation: Leeds, {UK}, 17--19 September 1996", publisher = "University of Leeds", address = "Leeds, UK", pages = "viii + 899", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Mar 18 16:26:38 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Two volumes.", acknowledgement = ack-nhfb, } @Proceedings{ACM:1996:PTA, editor = "{ACM}", booktitle = "Proceedings of the Twelfth Annual Symposium on Computational Geometry, FCRC '96. Philadelphia, PA, USA, May 24--26, 1996", title = "Proceedings of the Twelfth Annual Symposium on Computational Geometry, {FCRC} '96. Philadelphia, {PA}, {USA}, May 24--26, 1996", publisher = pub-ACM, address = pub-ACM:adr, pages = "vi + 406", year = "1996", CODEN = "PACGET", ISBN = "0-89791-832-0", ISBN-13 = "978-0-89791-832-9", LCCN = "QA 448 D38 S96 1996", bibdate = "Tue Aug 19 12:07:50 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, meetingaddress = "Philadelphia, PA, USA", meetingdate = "May 24--26 1996", meetingdate2 = "05/24--26/96", sponsor = "ACM", } @Proceedings{Anonymous:1996:OEEb, editor = "Anonymous", booktitle = "Object Expo Europe --- Java Expo Conference Proceedings. September 23--27, 1996, London, UK", title = "Object Expo Europe --- Java Expo Conference Proceedings. September 23--27, 1996, London, {UK}", publisher = "SIGS Conferences", address = "Newdigate, UK", pages = "348", month = sep, year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Mar 18 09:55:45 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6160J (Object-oriented databases); C6140D (High level languages); C6110F (Formal methods)", conflocation = "London, UK; 23--27 Sept. 1996", conftitle = "Proceedings of Object Expo Europe", countrypub = "UK", keywords = "client/server applications; CORBA; Internet; Java; legacy systems; multi-paradigm design; object technology; object-; object-oriented databases; object-oriented DBMS; object-oriented design; object-oriented languages; object-oriented programming; oriented methods; World Wide Web", } @Proceedings{Anonymous:1996:OPO, editor = "Anonymous", booktitle = "Objekt-Orientiertes Programmieren --- OOP '96 Conference Proceedings, February 12--16, 1996, Munich, Germany", title = "Objekt-Orientiertes Programmieren --- {OOP} '96 Conference Proceedings, February 12--16, 1996, Munich, Germany", publisher = pub-SIGS, address = pub-SIGS:adr, pages = "????", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Sat Oct 12 17:51:45 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Proceedings{Anonymous:1996:PCO, editor = "Anonymous", booktitle = "Proceedings of 2nd Conference on Object-Oriented Technologies and Systems ({COOTS}), Toronto, Ontario, Canada, 17--21 June 1996", title = "Proceedings of 2nd Conference on Object-Oriented Technologies and Systems ({COOTS}), Toronto, Ontario, Canada, 17--21 June 1996", publisher = pub-YGGDRASIL, address = pub-YGGDRASIL:adr, pages = "261", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6115 (Programming support); C6140D (High level languages); C6150N (Distributed systems software)", conflocation = "Toronto, Ont., Canada; 17--21 June 1996", conftitle = "Proceedings of 2nd Conference on Object-Oriented Technologies and Systems (COOTS)", keywords = "C language; C++; computing; COOTS; CORBA; design patterns; distributed object; distributed objects; distributed processing; Java; languages; object-; object-oriented; object-oriented frameworks; object-oriented programming; object-oriented technologies; oriented software systems; programming languages; R and D work; software architectures; software tools; USENIX", treatment = "P Practical", } @Proceedings{Anonymous:1996:POW, editor = "Anonymous", booktitle = "Proceedings of Object World {UK} '96", title = "Proceedings of Object World {UK} '96", publisher = "Object World", address = "Hounslow, UK", pages = "666", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6110J (Object-oriented programming); C6140D (High level languages); C6110B (Software engineering techniques); C6160J (Object-oriented databases)", conflocation = "London, UK; 18--21 June 1996", conftitle = "Proceedings of Object World UK '96", countrypub = "UK", keywords = "applications; architectures; CORBA; distributed processing; distributed system security; financial; Java; manufacturing; object; object oriented analysis; object oriented databases; object oriented design; object oriented programming; object-; object-oriented languages; object-oriented programming; OLE/COM; oriented methods; reusability; software; software reuse; telecommunication applications", treatment = "P Practical", } @Proceedings{Anonymous:1996:PPF, editor = "Anonymous", booktitle = "PAAM 96. Proceedings of the First International Conference on the Practical Application of Intelligent Agents and Multi-Agent Technology, London, UK, 22--24 April, 1996", title = "{PAAM} 96. Proceedings of the First International Conference on the Practical Application of Intelligent Agents and Multi-Agent Technology, London, {UK}, 22--24 April, 1996", publisher = "Practical Application Company", address = "Blackpool, UK", pages = "933", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Sat Oct 12 17:55:39 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, conflocation = "London, UK; 22--24 April 1996", conftitle = "Proceedings of First International Conference on Practical Application of Intelligent Agents and Multi-Agent Technology", } @Proceedings{Anonymous:1996:PTF, editor = "Anonymous", booktitle = "Proceedings of the Twenty-First Annual SAS Users Group International Conference, SUGI 21, Chicago, IL, USA, 10--13 March 1996", title = "Proceedings of the Twenty-First Annual {SAS} Users Group International Conference, {SUGI} 21, Chicago, {IL}, {USA}, 10--13 March 1996", publisher = pub-SAS, address = pub-SAS:adr, pages = "xxviii + 1688 + vi + 161", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Mar 18 17:59:58 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Two volumes.", acknowledgement = ack-nhfb, } @Proceedings{Bode:1996:PVM, editor = "Arndt Bode", booktitle = "Parallel virtual machine, {EuroPVM} '96: third European {PVM} conference, Munich, Germany, October 7--9, 1996: proceedings", title = "Parallel virtual machine, {EuroPVM} '96: third European {PVM} conference, Munich, Germany, October 7--9, 1996: proceedings", volume = "1156", publisher = pub-SV, address = pub-SV:adr, pages = "xiv + 362", year = "1996", ISBN = "3-540-61779-5", ISBN-13 = "978-3-540-61779-2", ISSN = "0302-9743 (print), 1611-3349 (electronic)", LCCN = "QA76.58 .E975 1996 Bar", bibdate = "Sat Dec 21 16:06:37 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = ser-LNCS, acknowledgement = ack-nhfb, keywords = "Parallel computers -- Congresses; Virtual computer systems -- Congresses.", } @Proceedings{Borchardt:1996:CAS, editor = "F. L. Borchardt and C. L. Bradin and E. Johnson and L. Rhodes", booktitle = "CALICO '96 Annual Symposium. Proceedings of the Computer Assisted Language Instruction Consortium 1996 Annual Symposium `Distance Learning', Albuquerque, NM, USA, 27 May--1 June 1996", title = "{CALICO} '96 Annual Symposium. Proceedings of the Computer Assisted Language Instruction Consortium 1996 Annual Symposium `Distance Learning', Albuquerque, {NM}, {USA}, 27 May--1 June 1996", publisher = "Duke University", address = "Durham, NC, USA", pages = "ix + 300", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Mar 18 17:56:55 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Proceedings{Borges:1996:AAI, editor = "Dibio L. (Dibio Leander) Borges and Celso A. A. (Celso Antonio Alves) Kaestner", booktitle = "Advances in artificial intelligence: 13th Brazilian Symposium on Artificial Intelligence, {SBIA} '96, Curitiba, Brazil, October 23--25, 1996: proceedings", title = "Advances in artificial intelligence: 13th Brazilian Symposium on Artificial Intelligence, {SBIA} '96, Curitiba, Brazil, October 23--25, 1996: proceedings", volume = "1159", publisher = pub-SV, address = pub-SV:adr, pages = "xii + 241", year = "1996", ISBN = "3-540-94900-3 (softcover)", ISBN-13 = "978-3-540-94900-8 (softcover)", ISSN = "0302-9743 (print), 1611-3349 (electronic)", LCCN = "Q334 .S5434 1996 Bar", bibdate = "Sat Dec 21 16:06:37 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = ser-LNCS, acknowledgement = ack-nhfb, keywords = "Artificial intelligence -- Congresses; Artificial intelligence -- Industrial applications -- Congresses; Neural networks (Computer science) -- Congresses.", } @Proceedings{Cabrera:1996:PFI, editor = "L.-F. Cabrera and N. Islam", booktitle = "Proceedings of the Fifth International Workshop on Object-Orientation in Operating Systems: October 27--28, 1996, Seattle, Washington", title = "Proceedings of the Fifth International Workshop on Object-Orientation in Operating Systems: October 27--28, 1996, Seattle, Washington", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "x + 172", year = "1996", CODEN = "PIWOF6", ISBN = "0-8186-7692-2, 0-8186-7693-0, 0-8186-7694-9 (microfiche)", ISBN-13 = "978-0-8186-7692-5, 978-0-8186-7693-2, 978-0-8186-7694-9 (microfiche)", ISSN = "1063-5351", LCCN = "QA 76.76 O63 I59 1996", bibdate = "Tue Aug 19 12:08:14 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Proceedings{Card:1996:ISI, editor = "Stuart Card and Stephen G. Eick and Nahum Gershon", booktitle = "IEEE Symposium on Information Visualization'96: October 28--29, 1996, San Francisco, California", title = "{IEEE} Symposium on Information Visualization'96: October 28--29, 1996, San Francisco, California", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "ix + 153", year = "1996", ISBN = "0-8186-7668-X", ISBN-13 = "978-0-8186-7668-0", LCCN = "TA1634 .I325 1996", bibdate = "Sat Mar 15 13:25:38 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Proceedings{Cimino:1996:BSE, editor = "J. J. Cimino", booktitle = "Beyond the superhighway: exploiting the Internet with medical informatics: proceedings, 1996 AMIA annual Fall Symposium, formerly SCAMC, October 26--30, 1996, Sheraton Washington Hotel, Washington, DC", title = "Beyond the superhighway: exploiting the Internet with medical informatics: proceedings, 1996 {AMIA} annual Fall Symposium, formerly {SCAMC}, October 26--30, 1996, Sheraton Washington Hotel, Washington, {DC}", publisher = pub-HANLEY-BELFUS, address = pub-HANLEY-BELFUS:adr, pages = "xxxix + 1017", year = "1996", ISBN = "1-56053-208-4", ISBN-13 = "978-1-56053-208-8", LCCN = "W 26.5 S978 1996", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, sponsor = "American Medical Informatics Association.", } @Proceedings{Frasson:1996:ITS, editor = "Claude Frasson and Gilles Gauthier and Alan Lesgold", booktitle = "Intelligent tutoring systems: Third International Conference, ITS '96 Montr{\'e}al, Canada, June 12--14, 1996: proceedings", title = "Intelligent tutoring systems: Third International Conference, {ITS} '96 Montr{\'e}al, Canada, June 12--14, 1996: proceedings", volume = "1086", publisher = pub-SV, address = pub-SV:adr, pages = "xvii + 688", year = "1996", ISBN = "3-540-61327-7", ISBN-13 = "978-3-540-61327-5", LCCN = "LB1028.73 .I58 1996", bibdate = "Sat Oct 12 17:53:24 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = ser-LNCS, acknowledgement = ack-nhfb, conftitle = "Intelligent Tutoring Systems. Third International Conference, ITS '96", } @Proceedings{Frieder:1996:PFI, editor = "O. Frieder and J. Wigglesworth", booktitle = "Proceedings of the Fourth International Symposium on Assessment of Software Tools, May 22--24, 1996, Toronto, Canada", title = "Proceedings of the Fourth International Symposium on Assessment of Software Tools, May 22--24, 1996, Toronto, Canada", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xii + 147", year = "1996", ISBN = "0-8186-7389-3, 0-8186-7390-7 (softbound), 0-8186-7391-5 (microfiche)", ISBN-13 = "978-0-8186-7389-4, 978-0-8186-7390-0 (softbound), 978-0-8186-7391-7 (microfiche)", LCCN = "QA76.76.D47I595 1996", bibdate = "Mon Mar 17 19:11:16 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE order Plan catalog number 96TB100054.", acknowledgement = ack-nhfb, } @Proceedings{IEEE:1996:DPC, editor = "{IEEE}", booktitle = "Digest of Papers. COMPCON '96. Technologies for the Information Superhighway. Forty-First IEEE Computer Society International Conference: February 25--28, 1996 Santa Clara, California", title = "Digest of Papers. {COMPCON} '96. Technologies for the Information Superhighway. Forty-First {IEEE} Computer Society International Conference: February 25--28, 1996 Santa Clara, California", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xiv + 474", year = "1996", CODEN = "DCSIDU", ISBN = "0-8186-7414-8", ISBN-13 = "978-0-8186-7414-3", ISSN = "1063-6390", LCCN = "QA76 .I49 1996", bibdate = "Tue May 05 08:13:59 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE Cat. No. 96CB35911.", acknowledgement = ack-nhfb, classcodes = "B0100 (General electrical engineering topics); B6150C (Communication switching); B6230 (Switching centres and equipment); B6210L (Computer communications); C5620W (Other computer networks); C7210 (Information services and centres); C6130M (Multimedia); C5220 (Computer architecture); C6160S (Spatial and pictorial databases)", confdate = "25--28 Feb. 1996", conflocation = "Santa Clara, CA, USA; 25--28 Feb. 1996", confsponsor = "IEEE Comput. Soc", conftitle = "COMPCON '96. Technologies for the Information Superhighway Digest of Papers", keywords = "agent; architecture; asynchronous transfer mode; ATM; broadband interactive data services; broadband networks; computer; DRAM technologies; HAL computer systems; information networks; information superhighway; interactive; interactive systems; Java; languages; microprocessors; MPEG2; multimedia authoring; multimedia systems; network interfaces; networks; PA-RISC evolution; Pentium Pro system; performance analysis; PowerPC; scalable clusters; television; Ultra SPARC; wide area networks; wireless interconnects; workflow managment systems; World Wide Web", sponsororg = "IEEE Comput. Soc", treatment = "P Practical", } @Proceedings{IEEE:1996:EPP, editor = "{IEEE}", booktitle = "Electro '96: professional program proceedings, April 30--May 2, 1996, Garden State Convention Center, Somerset, New Jersey", title = "Electro '96: professional program proceedings, April 30--May 2, 1996, Garden State Convention Center, Somerset, New Jersey", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "364", year = "1996", ISBN = "0-7803-3272-5 (casebound), 0-7803-3271-7, 0-7803-3273-3", ISBN-13 = "978-0-7803-3272-0 (casebound), 978-0-7803-3271-3, 978-0-7803-3273-7", LCCN = "TK7801.E45 1996", bibdate = "Tue Mar 18 07:34:49 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE catalog number 96CB35926.", acknowledgement = ack-nhfb, } @Proceedings{IEEE:1996:HCV, editor = "IEEE", booktitle = "Hot chips VIII: symposium record: Stanford University, Stanford, California, August 18--20, 1996", title = "Hot chips {VIII}: symposium record: Stanford University, Stanford, California, August 18--20, 1996", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "????", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Sat Jan 6 19:21:13 MST 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; OCLC Proceedings database", acknowledgement = ack-nhfb, keywords = "hot chips", } @Proceedings{IEEE:1996:IIJ, editor = "{IEEE}", booktitle = "IEEE International Joint Symposia on Intelligence and Systems: November 4--5, 1996, Rockville, Maryland", title = "{IEEE} International Joint Symposia on Intelligence and Systems: November 4--5, 1996, Rockville, Maryland", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "x + 346", year = "1996", ISBN = "0-8186-7728-7", ISBN-13 = "978-0-8186-7728-1", LCCN = "QA76.9 .I4 1996", bibdate = "Mon Mar 17 19:15:31 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE Computer Society Press Order Number PR07728. IEEE Order Plan Catalog Number 96TB100091.", acknowledgement = ack-nhfb, } @Proceedings{IEEE:1996:ISS, editor = "{IEEE}", booktitle = "1996 IEEE Symposium on Security and Privacy: May 6--8, 1996, Oakland, California", title = "1996 {IEEE} Symposium on Security and Privacy: May 6--8, 1996, Oakland, California", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "viii + 233", year = "1996", CODEN = "PSSPEO", ISBN = "0-8186-7417-2", ISBN-13 = "978-0-8186-7417-4", ISSN = "1063-7109", LCCN = "QA76.9.A25 S95 1996", bibdate = "Mon Mar 17 18:58:01 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE catalog number 96CB35924.", acknowledgement = ack-nhfb, } @Proceedings{IEEE:1996:ITA, editor = "{IEEE}", booktitle = "IEEE Technical Applications Conference. Northcon/96. Conference Record. Seattle, WA, USA, 4--6 November 1996", title = "{IEEE} Technical Applications Conference. Northcon/96. Conference Record. Seattle, {WA}, {USA}, 4--6 November 1996", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "viii + 458", year = "1996", ISBN = "0-7803-3277-6 (softbound), 0-7803-3278-4 (casebound)", ISBN-13 = "978-0-7803-3277-5 (softbound), 978-0-7803-3278-2 (casebound)", LCCN = "TK7868.D5 I34 1996", bibdate = "Tue Mar 18 16:33:24 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE catalog number 96CH35928.", acknowledgement = ack-nhfb, } @Proceedings{IEEE:1996:IWC, editor = "{IEEE}", booktitle = "3rd International Workshop on Community Networking: proceedings: stories behind the picture, May 23--24, 1996, Antwerpen, Belgium", title = "3rd International Workshop on Community Networking: proceedings: stories behind the picture, May 23--24, 1996, Antwerpen, Belgium", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "vi + 140", year = "1996", ISBN = "0-7803-3304-7", ISBN-13 = "978-0-7803-3304-8", LCCN = "TK5103.4.I57 1996", bibdate = "Tue Mar 18 16:28:21 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE catalog number 96TH8187.", acknowledgement = ack-nhfb, } @Proceedings{IEEE:1996:PAC, editor = "{IEEE}", booktitle = "Proceedings. 12th Annual Computer Security Applications Conference. San Diego, CA, USA. 9--13 December 1996", title = "Proceedings. 12th Annual Computer Security Applications Conference. San Diego, {CA}, {USA}. 9--13 December 1996", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xx + 249", year = "1996", ISBN = "0-8186-7606-X", ISBN-13 = "978-0-8186-7606-2", LCCN = "QA76.9.A25 C6375 1996", bibdate = "Mon May 11 10:38:40 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE Computer Society Press Order Number PRO7606.", acknowledgement = ack-nhfb, } @Proceedings{IEEE:1996:PAI, editor = "{IEEE}", booktitle = "Proceedings of the 29th annual IEEE\slash ACM International Symposium on Microarchitecture, December 2--4, 1996, Paris, France", title = "Proceedings of the 29th annual {IEEE}\slash {ACM} International Symposium on Microarchitecture, December 2--4, 1996, Paris, France", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xii + 359", year = "1996", ISBN = "0-8186-7641-8", ISBN-13 = "978-0-8186-7641-3", LCCN = "QA76.9 .A73 I585 1996", bibdate = "Sat Mar 15 08:49:09 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classcodes = "C6150C (Compilers, interpreters and other processors)", conflocation = "Paris, France; 2--4 Dec. 1996", conftitle = "Proceedings of the 29th Annual IEEE/ACM International Symposium on Microarchitecture. MICRO 29", keywords = "Caffeine prototype; exception handlers; exception handling; Internet browsers; interpreter; interpreters; Java bytecode language; Java run-time environment; memory structure mapping; native code translation; optimising compilers; optimizing translator; program; prototyping; register mapping; run-time; software distribution standard; software prototyping; stack; X86 port", sponsororg = "IEEE Comput. Soc. Tech. Committee on Microprogramming and Microarchit.; ACM SIGMICRO", treatment = "P Practical", } @Proceedings{IEEE:1996:PEI, editor = "{IEEE}", booktitle = "Proceedings. Eighth IEEE International Conference on Tools with Artificial Intelligence. November 16--19, 1996, Toulouse, France", title = "Proceedings. Eighth {IEEE} International Conference on Tools with Artificial Intelligence. November 16--19, 1996, Toulouse, France", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xx + 492", year = "1996", CODEN = "PCTIFX", ISBN = "0-8186-7686-8", ISBN-13 = "978-0-8186-7686-4", ISSN = "1063-6730", LCCN = "Q 334 I564 1996", bibdate = "Wed Sep 29 07:02:23 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Proceedings{IEEE:1996:PFC, editor = "IEEE", booktitle = "Proceedings: the First Conference on Emerging Technologies and Applications in Communications, Oregon Convention Center, May 7--10, 1996, Portland, Oregon", title = "Proceedings: the First Conference on Emerging Technologies and Applications in Communications, Oregon Convention Center, May 7--10, 1996, Portland, Oregon", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "ix + 205", year = "1996", ISBN = "0-8186-7585-3", ISBN-13 = "978-0-8186-7585-0", LCCN = "TK5101.A1C677 1996", bibdate = "Tue Mar 18 07:39:34 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE catalog number 96TB100035.", acknowledgement = ack-nhfb, } @Proceedings{IEEE:1996:PFIa, editor = "{IEEE}", booktitle = "Proceedings of the Fifth IEEE International Symposium on High Performance Distributed Computing, August 6--9, 1996, Syracuse, New York", title = "Proceedings of the Fifth {IEEE} International Symposium on High Performance Distributed Computing, August 6--9, 1996, Syracuse, New York", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xviii + 642", year = "1996", ISBN = "0-8186-7582-9", ISBN-13 = "978-0-8186-7582-9", LCCN = "QA76.88.I52 1996", bibdate = "Fri May 16 15:50:00 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE order plan catalog number 96TB100069. EEE Computer Society Press order number PR07582.", acknowledgement = ack-nhfb, } @Proceedings{IEEE:1996:PFIb, editor = "{IEEE}", booktitle = "Proceedings of the Fourth International Conference on Parallel and Distributed Information Systems: December 18--20, 1996, Miami Beach, Florida", title = "Proceedings of the Fourth International Conference on Parallel and Distributed Information Systems: December 18--20, 1996, Miami Beach, Florida", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xi + 295", year = "1996", ISBN = "0-8186-7475-X", ISBN-13 = "978-0-8186-7475-4", LCCN = "QA76.58 .I544 1996", bibdate = "Mon Mar 17 19:21:08 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE Computer Society Press order number PR07475. IEEE catalog number 96TB100085.", acknowledgement = ack-nhfb, } @Proceedings{IEEE:1996:PICa, editor = "{IEEE}", booktitle = "Proceedings of the IEEE\slash IAFE 1996 Conference on Computational Intelligence for Financial Engineering (CIFEr): March 24--26, 1996, Crown Plaza Manhattan, New York City", title = "Proceedings of the {IEEE}\slash {IAFE} 1996 Conference on Computational Intelligence for Financial Engineering ({CIFEr}): March 24--26, 1996, Crown Plaza Manhattan, New York City", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "x + 313", year = "1996", ISBN = "0-7803-3236-9 (softbound), 0-7803-3237-7 (microfiche)", ISBN-13 = "978-0-7803-3236-2 (softbound), 978-0-7803-3237-9 (microfiche)", LCCN = "HG176.7.I33 1996", bibdate = "Fri Jan 3 07:17:51 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE Cat. No. 96TH8177", acknowledgement = ack-nhfb, confdate = "24--26 March 1996", conflocation = "New York City, NY, USA", confsponsor = "IEEE Neural Networks Council; Int. Association of Financial Eng", keywords = "Java", } @Proceedings{IEEE:1996:PICb, editor = "{IEEE}", booktitle = "Proceedings of the 18th International Conference on Software Engineering: March 25--29, 1996, Berlin, Germany", title = "Proceedings of the 18th International Conference on Software Engineering: March 25--29, 1996, Berlin, Germany", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xviii + 590", year = "1996", ISBN = "0-8186-7247-1", ISBN-13 = "978-0-8186-7247-7", LCCN = "QA 76.758 I5725 1996", bibdate = "Fri Jan 3 07:17:51 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE Cat. No.96CB35918.", acknowledgement = ack-nhfb, confdate = "25--30 March 1996", conflocation = "Berlin, Germany", confsponsor = "IEEE Comput. Soc. Tech. Council on Software Eng.; ACM SIGSOFT; Gesellschaft fur Inf", keywords = "Java", } @Proceedings{IEEE:1996:PICc, editor = "{IEEE}", booktitle = "Proceedings of the International Conference on Multimedia Computing and Systems: June 17--23, 1996, Hiroshima, Japan", title = "Proceedings of the International Conference on Multimedia Computing and Systems: June 17--23, 1996, Hiroshima, Japan", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xxii + 626", year = "1996", ISBN = "0-8186-7436-9", ISBN-13 = "978-0-8186-7436-5", LCCN = "QA76.575 .I623 1996", bibdate = "Sat Oct 12 18:01:00 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE Computer Society Press order number PR07436. IEEE Catalog No. 96TB100057", acknowledgement = ack-nhfb, } @Proceedings{IEEE:1996:PIW, editor = "{IEEE}", booktitle = "Proceedings International Workshop on Multimedia Software Development: March 25--26, 1996, Berlin, Germany", title = "Proceedings International Workshop on Multimedia Software Development: March 25--26, 1996, Berlin, Germany", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "viii + 177", month = mar, year = "1996", ISBN = "0-8186-7511-X", ISBN-13 = "978-0-8186-7511-9", LCCN = "QA76.575 .M84 1996", bibdate = "Tue Aug 19 12:08:02 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Proceedings{IEEE:1996:PTA, editor = "{IEEE}", booktitle = "Proceedings. The Twentieth Annual International Computer Software and Applications Conference (COMPSAC '96)", title = "Proceedings. The Twentieth Annual International Computer Software and Applications Conference ({COMPSAC} '96)", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xx + 569", year = "1996", ISBN = "0-8186-7579-9", ISBN-13 = "978-0-8186-7579-9", LCCN = "QA76.6 .C6295 1996", bibdate = "Tue Aug 19 12:08:37 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE Catalog number 96CB35986.", acknowledgement = ack-nhfb, } @Proceedings{IEEE:1996:PWE, editor = "{IEEE}", booktitle = "Proceedings of the 5th Workshops on Enabling Technologies: Infrastructure for Collaborative Enterprises (WET ICE '96): June 19--21, 1996, Stanford, California", title = "Proceedings of the 5th Workshops on Enabling Technologies: Infrastructure for Collaborative Enterprises ({WET ICE} '96): June 19--21, 1996, Stanford, California", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xii + 353", year = "1996", ISBN = "0-8186-7446-6", ISBN-13 = "978-0-8186-7446-4", LCCN = "TS155.6 .W56 1996", bibdate = "Mon Mar 17 18:52:15 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE Order Plan catalog number 96TB100058. IEEE Computer Society Press order number PR07445", acknowledgement = ack-nhfb, } @Proceedings{Iskander:1996:TBR, editor = "Magdy F. Iskander", booktitle = "Technology-Based Re-Engineering. Engineering Education. Proceeding of Frontiers in Education FIE'96 26th Annual Conference, November 6--9, 1996, Salt Lake City, Utah", title = "Technology-Based Re-Engineering. Engineering Education. Proceeding of Frontiers in Education {FIE}'96 26th Annual Conference, November 6--9, 1996, Salt Lake City, Utah", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "????", year = "1996", ISBN = "0-7803-3348-9 (softbound), 0-7803-3349-7 (casebound), 0-7803-3350-0 (microfiche), 0-7803-3720-4 (CD-ROM)", ISBN-13 = "978-0-7803-3348-2 (softbound), 978-0-7803-3349-9 (casebound), 978-0-7803-3350-5 (microfiche), 978-0-7803-3720-6 (CD-ROM)", LCCN = "T 62 F76 1996", bibdate = "Mon May 11 10:39:26 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Three volumes. IEEE catalog number 96CH35946.", acknowledgement = ack-nhfb, } @Proceedings{Pedreschi:1996:LDI, editor = "Dino Pedreschi and Carlo Zaniolo", booktitle = "Logic in databases: International Workshop {LID} '96, San Miniato, Italy, July 1--2, 1996: proceedings", title = "Logic in databases: International Workshop {LID} '96, San Miniato, Italy, July 1--2, 1996: proceedings", volume = "1154", publisher = pub-SV, address = pub-SV:adr, pages = "x + 495", year = "1996", ISBN = "3-540-61814-7 (softcover)", ISBN-13 = "978-3-540-61814-0 (softcover)", ISSN = "0302-9743 (print), 1611-3349 (electronic)", LCCN = "QA76.9.D3 I5857 1996", bibdate = "Sat Dec 21 16:06:37 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = ser-LNCS, acknowledgement = ack-nhfb, annote = "``International Workshop on Logic in Databases''--Foreword.", keywords = "Database management -- Congresses; Deductive databases -- Congresses; Logic programming -- Congresses.", } @Proceedings{Samson:1996:PSQ, editor = "W. B. Samson and I. M. Marshall and D. G. Edgar-Nevill", booktitle = "Proceedings of the 5th Software Quality Conference, Dundee, UK, 9--10 July 1996", title = "Proceedings of the 5th Software Quality Conference, Dundee, {UK}, 9--10 July 1996", publisher = "University Abertay Dundee", address = "Dundee, UK", pages = "xi + 261", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Mar 18 18:01:58 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Proceedings{Sanchez:1996:CAL, editor = "Arantza {Diaz de Ilarraza Sanchez} and I. (Isabel) {Fernandez de Castro}", booktitle = "Computer aided learning and instruction in science and engineering: third international conference, {CALISCE} '96, San Sebastian, Spain, July 29--31, 1996: proceedings", title = "Computer aided learning and instruction in science and engineering: third international conference, {CALISCE} '96, San Sebastian, Spain, July 29--31, 1996: proceedings", volume = "1108", publisher = pub-SV, address = pub-SV:adr, pages = "xiv + 480", year = "1996", ISBN = "3-540-61491-5 (softcover)", ISBN-13 = "978-3-540-61491-3 (softcover)", ISSN = "0302-9743 (print), 1611-3349 (electronic)", LCCN = "Q181.A1I538 1996", bibdate = "Sat Dec 21 16:06:37 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = ser-LNCS, acknowledgement = ack-nhfb, keywords = "Computer-aided instruction --- Congresses.; Engineering --- Study and teaching --- Congresses.; Machine learning --- Study and teaching --- Congresses.; Science --- Study and teaching --- Congresses.", } @Proceedings{Spaniol:1996:TDS, editor = "Otto Spaniol and Claudia Linnhoff-Popien and Bernd E. Meyer", booktitle = "Trends in distributed systems: {CORBA} and beyond: International Workshop {TreDS} '96, Aachen, Germany, October 1--2, 1996: proceedings", title = "Trends in distributed systems: {CORBA} and beyond: International Workshop {TreDS} '96, Aachen, Germany, October 1--2, 1996: proceedings", volume = "1161", publisher = pub-SV, address = pub-SV:adr, pages = "viii + 288", year = "1996", ISBN = "3-540-61842-2 (softcover)", ISBN-13 = "978-3-540-61842-3 (softcover)", ISSN = "0302-9743 (print), 1611-3349 (electronic)", LCCN = "QA76.9.D5 I63 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = ser-LNCS, acknowledgement = ack-nhfb, keywords = "electronic data processing -- distributed processing -- congresses", } @Proceedings{Stein:1996:IIG, editor = "T. I. Stein", booktitle = "IGARSS '96: 1996 International Geoscience and Remote Sensing Symposium: remote sensing for a sustainable future", title = "{IGARSS} '96: 1996 International Geoscience and Remote Sensing Symposium: remote sensing for a sustainable future", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "lxxi + 2383", year = "1996", ISBN = "0-7803-3068-4", ISBN-13 = "978-0-7803-3068-9", LCCN = "QE33.2.R4 I57 1996", bibdate = "Mon Mar 17 19:08:06 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Four volumes. IEEE catalog number 96CH35875.", acknowledgement = ack-nhfb, } @Proceedings{Strohmeier:1996:RST, editor = "Alfred Strohmeier", booktitle = "Reliable software technologies, {Ada-Europe} '96: 1996 {Ada-Europe} International Conference on Reliable Software Technologies, Montreux, Switzerland, June 10--14, 1996: proceedings", title = "Reliable software technologies, {Ada-Europe} '96: 1996 {Ada-Europe} International Conference on Reliable Software Technologies, Montreux, Switzerland, June 10--14, 1996: proceedings", volume = "1088", publisher = pub-SV, address = pub-SV:adr, pages = "xi + 511", year = "1996", ISBN = "3-540-61317-X (softcover)", ISBN-13 = "978-3-540-61317-6 (softcover)", ISSN = "0302-9743 (print), 1611-3349 (electronic)", LCCN = "QA76.73.A16 A23 1996", bibdate = "Sat Sep 7 08:37:00 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = ser-LNCS, acknowledgement = ack-nhfb, keywords = "Ada (computer program language) --- congresses; computer software --- reliability --- congresses", } @Proceedings{Tauber:1996:PCH, editor = "M. J. (Michael J.) Tauber", booktitle = "Proceedings of the 1996 Conference on Human Factors in Computing Systems, CHI 96: April 13--18, 1996, Vancouver, BC, Canada", title = "Proceedings of the 1996 Conference on Human Factors in Computing Systems, {CHI} 96: April 13--18, 1996, Vancouver, {BC}, Canada", publisher = pub-ACM, address = pub-ACM:adr, pages = "xii + 524", month = apr, year = "1996", ISBN = "0-201-94687-4 (paperback), 0-89791-777-4 (ACM)", ISBN-13 = "978-0-201-94687-1 (paperback), 978-0-89791-777-3 (ACM)", LCCN = "????", bibdate = "Tue Mar 18 07:30:00 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Proceedings{UC:1996:PCT, editor = "{Unicode Consortium}", booktitle = "Pre-conference tutorials proceedings: Software development + the Internet: going global with Unicode: Ninth International Unicode Conference, San Jose, CA, September 4--6 1996", title = "Pre-conference tutorials proceedings: Software development + the Internet: going global with Unicode: Ninth International Unicode Conference, San Jose, {CA}, September 4--6 1996", publisher = pub-UNICODE, address = pub-UNICODE-SAN-JOSE:adr, pages = "????", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Apr 23 16:31:58 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "A1. Input method design / by Mark Leisher -- A2. Weaving the multilingual web : standards and their implementations / by Martin Durst \ldots{} [et al.] -- B1. National language and Unicode support in relational databases and SQL2/3 / by Stefan Buchta -- B2. The Unicode Standard : version 2 / by Asmus Freytag -- C1/C2. Non-Latin writing systems : characteristics and impacts on multinational product design / by Richard Ishida.", acknowledgement = ack-nhfb, keywords = "Character sets (Data processing) -- Congresses; Coding theory -- Congresses", } @Proceedings{UC:1996:SDI, editor = "{Unicode Consortium}", booktitle = "Software Development + the {Internet}: Going Global with {Unicode}: Ninth International {Unicode} Conference, 4--6 September, San Jose, California, USA", title = "Software Development + the {Internet}: Going Global with {Unicode}: Ninth International {Unicode} Conference, 4--6 September, San Jose, California, {USA}", publisher = pub-UNICODE, address = pub-UNICODE-SAN-JOSE:adr, pages = "????", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Apr 23 14:27:20 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc9conf/index.html; http://www.unicode.org/unicode/uni2book/u2ord.html", acknowledgement = ack-nhfb, keywords = "Character sets (Data processing) -- Congresses; Coding theory -- Congresses", } @Proceedings{USENIX:1996:ATT, editor = "{USENIX} Association", booktitle = "4th Annual Tcl/Tk Workshop '96, July 10--13, 1996. Monterey, CA", title = "4th Annual Tcl/Tk Workshop '96, July 10--13, 1996. Monterey, {CA}", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "????", day = "10--13", month = jul, year = "1996", ISBN = "1-880446-78-2", ISBN-13 = "978-1-880446-78-2", LCCN = "QA76.73.T44 T44 1996", bibdate = "Fri Oct 18 07:24:24 MDT 1996", bibsource = "ftp://ftp.uu.net/library/bibliography; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, location = "Monterey, CA", } @Proceedings{USENIX:1996:COO, editor = "{USENIX} Association", booktitle = "2nd Conference on Object-Oriented Technologies \& Systems (COOTS), June 17--21, 1996. Toronto, Canada", title = "2nd Conference on Object-Oriented Technologies \& Systems ({COOTS}), June 17--21, 1996. Toronto, Canada", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "????", day = "17--21", month = jun, year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Fri Oct 18 07:24:24 MDT 1996", bibsource = "ftp://ftp.uu.net/library/bibliography; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, location = "Toronto, Canada", } @Proceedings{USENIX:1996:PSUb, editor = "{USENIX}", booktitle = "Proceedings of the Second USENIX Conference on Object-Oriented Technologies and Systems (COOTS), June 17--21, 1996, Toronto, Canada", title = "Proceedings of the Second {USENIX} Conference on Object-Oriented Technologies and Systems ({COOTS}), June 17--21, 1996, Toronto, Canada", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "261", year = "1996", ISBN = "1-880446-77-4", ISBN-13 = "978-1-880446-77-5", LCCN = "QA76.64 .U85 1996", bibdate = "Wed Oct 16 14:05:50 2002", bibsource = "ftp://ftp.uu.net/library/bibliography; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/coots96/", acknowledgement = ack-nhfb, location = "Toronto, Canada", } @Proceedings{USENIX:1996:PUA, editor = "{USENIX Association}", booktitle = "Proceedings of the USENIX 1996 annual technical conference: January 22--26, 1996, San Diego, California, USA", title = "Proceedings of the {USENIX} 1996 annual technical conference: January 22--26, 1996, San Diego, California, {USA}", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "352", year = "1996", ISBN = "1-880446-76-6", ISBN-13 = "978-1-880446-76-8", LCCN = "QA 76.76 O63 U88 1996", bibdate = "Mon May 11 11:51:02 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = "USENIX Conference Proceedings 1996", acknowledgement = ack-nhfb, searchkey = "su:usenix, cn:usenix", source = "USENIX Association", sponsor = "USENIX Association.", } @Proceedings{USENIX:1996:SOS, editor = "{USENIX}", booktitle = "2nd Symposium on Operating Systems Design and Implementation (OSDI '96), October 28--31, 1996. Seattle, WA", title = "2nd Symposium on Operating Systems Design and Implementation ({OSDI} '96), October 28--31, 1996. Seattle, {WA}", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "????", day = "28--31", month = oct, year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Aug 13 10:48:45 MDT 1997", bibsource = "ftp://ftp.uu.net/library/bibliography; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, location = "Seattle, WA", } @Proceedings{USENIX:1996:WEC, editor = "{USENIX}", booktitle = "2nd Workshop on Electronic Commerce, November 18--21, 1996. Oakland, CA", title = "2nd Workshop on Electronic Commerce, November 18--21, 1996. Oakland, {CA}", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "????", day = "18--21", month = nov, year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Aug 13 10:48:45 MDT 1997", bibsource = "ftp://ftp.uu.net/library/bibliography; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, location = "Oakland, CA", } @Proceedings{Waegemann:1996:PTE, editor = "C. Peter Waegemann", booktitle = "Proceedings. Toward an Electronic Patient Record '96. Twelfth International Symposium on the Creation of Electronic Health Record System and Global Conference on Patient Cards, May 1996, San Diego, CA", title = "Proceedings. Toward an Electronic Patient Record '96. Twelfth International Symposium on the Creation of Electronic Health Record System and Global Conference on Patient Cards, May 1996, San Diego, {CA}", volume = "1", publisher = "Medical Records Inst", address = "Newton, MA, USA", pages = "646 + 688", year = "1996", ISBN = "0-9640667-7-7", ISBN-13 = "978-0-9640667-7-9", LCCN = "R864.I68 1996", bibdate = "Sat Oct 12 17:48:27 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Two volumes.", acknowledgement = ack-nhfb, } @Proceedings{Yagel:1996:PVS, editor = "R. Yagel and G. M. Nielson", booktitle = "Proceedings. Visualization '96. San Francisco, CA, USA. 27 October--1 November 1996", title = "Proceedings. Visualization '96. San Francisco, {CA}, {USA}. 27 October--1 November 1996", publisher = pub-ACM, address = pub-ACM:adr, pages = "516", year = "1996", ISBN = "0-89791-864-9", ISBN-13 = "978-0-89791-864-0", LCCN = "T385 .V59 1996", bibdate = "Tue Mar 18 16:21:48 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE catalog number 96CB36006. IEEE Computer Society Press order number RS00118.", acknowledgement = ack-nhfb, } @Proceedings{Yetongnon:1996:PII, editor = "K. Yetongnon and S. Hariri", booktitle = "Proceedings of the ISCA International Conference. Parallel and Distributed Computing Systems, Dijon, France, 25--27 September, 1996", title = "Proceedings of the {ISCA} International Conference. Parallel and Distributed Computing Systems, Dijon, France, 25--27 September, 1996", publisher = "International Society of Computers and Their Applications (ISCA)", address = "Raleigh, NC, USA", pages = "x + 825", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Mar 17 19:00:24 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Two volumes.", acknowledgement = ack-nhfb, } @Proceedings{ACM:1997:CRP, editor = "{ACM}", booktitle = "Conference record of POPL '97, the 24th ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages: papers presented at the symposium, Paris, France, 15--17 January 1997", title = "Conference record of {POPL} '97, the 24th {ACM} {SIGPLAN}-{SIGACT} Symposium on Principles of Programming Languages: papers presented at the symposium, Paris, France, 15--17 January 1997", publisher = pub-ACM, address = pub-ACM:adr, pages = "viii + 497", year = "1997", ISBN = "0-89791-853-3", ISBN-13 = "978-0-89791-853-4", LCCN = "QA 76.7 A11 1997", bibdate = "Mon May 3 17:47:49 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/contents/proceedings/plan/263699/index.html", acknowledgement = ack-nhfb, keywords = "Electronic digital computers -- Programming -- Congresses.; Programming languages (Electronic computers) -- Congresses.", } @Proceedings{ACM:1997:PTA, editor = "{ACM}", booktitle = "Proceedings of the {TRI-Ada'97} Conference, {November} 9--13, 1997, {St. Louis, MO}", title = "Proceedings of the {TRI-Ada'97} Conference, {November} 9--13, 1997, {St. Louis, MO}", publisher = pub-ACM, address = pub-ACM:adr, pages = "xiii + 312", year = "1997", ISBN = "0-89791-981-5", ISBN-13 = "978-0-89791-981-4", LCCN = "QA 76.73 A35 T75 1997", bibdate = "Fri Oct 29 17:03:04 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Theme title: Ada; the right choice for reliable software. ACM order number: 825970.", acknowledgement = ack-nhfb, sponsor = "Association for Computing Machinery; Special Interest Group on Ada.", } @Proceedings{Anonymous:1997:CDP, editor = "Anonymous", booktitle = "Competitive deployment of product data technology: European conference --- April 1997, Antibes, France", title = "Competitive deployment of product data technology: European conference --- April 1997, Antibes, France", publisher = "Quality Marketing Services", address = "????", pages = "????", year = "1997", ISBN = "1-901782-01-8", ISBN-13 = "978-1-901782-01-1", LCCN = "????", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, sponsor = "PDTAG-AM.", } @Proceedings{Anonymous:1997:INI, editor = "Anonymous", booktitle = "Issues for networked interpersonal communicators: Colloquium --- May 1997, London", title = "Issues for networked interpersonal communicators: Colloquium --- May 1997, London", number = "139", publisher = pub-IEE, address = pub-IEE:adr, pages = "????", year = "1997", ISSN = "0963-3308", LCCN = "????", bibdate = "Wed Mar 18 12:33:18 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = "COLLOQUIUM DIGEST- IEE 1997", acknowledgement = ack-nhfb, sponsor = "IEE; Computing and Control Division; Professional Group C10 (Consumer and domestic systems).", } @Proceedings{Anonymous:1997:SEP, editor = "Anonymous", booktitle = "SGML Europe '97 proceedings 11--16 May 1997, Princess Sofia Intercontinental, Barcelona, Spain", title = "{SGML} Europe '97 proceedings 11--16 May 1997, Princess Sofia Intercontinental, Barcelona, Spain", publisher = "Inso Corporation", address = "Boston, MA, USA", pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "One CD-ROM.", acknowledgement = ack-nhfb, sponsor = "Graphic Communications Association.", } @Proceedings{deFigueiredo:1997:XBS, editor = "Luiz Henrique {de Figueiredo} and Marcio Lobo Netto", booktitle = "X Brazilian Symposium on Computer Graphics and Image Processing: proceedings, Campos do Jordao, Brazil, October 14--17, 1997", title = "{X} Brazilian Symposium on Computer Graphics and Image Processing: proceedings, Campos do Jordao, Brazil, October 14--17, 1997", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xi + 235", year = "1997", ISBN = "0-8186-8102-0, 0-8186-8103-9, 0-8186-8104-7", ISBN-13 = "978-0-8186-8102-8, 978-0-8186-8103-5, 978-0-8186-8104-2", LCCN = "T385 .S59 1997", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE Computer Society order number PR08102. IEEE order plan catalog number 97TB100164.", acknowledgement = ack-nhfb, sponsor = "Sociedade Brasileira de Computacao.", } @Proceedings{IEEE:1997:HCI, editor = "{IEEE}", booktitle = "Hot Chips IX: Stanford University, Stanford, California, August 24--26, 1997", title = "Hot Chips {IX}: Stanford University, Stanford, California, August 24--26, 1997", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Jan 08 05:05:12 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Proceedings{Mingins:1997:TPC, editor = "Christine Mingins and Roger Duke and Bertrand Meyer", booktitle = "TOOLS 25: Proceedings of the 1997 Conference on Technology of Object-Oriented Languages and Systems Nov 24--28 1997 1997 Melbourne, Australia", title = "{TOOLS} 25: Proceedings of the 1997 Conference on Technology of Object-Oriented Languages and Systems Nov 24--28 1997 1997 Melbourne, Australia", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "ix + 372", year = "1997", ISBN = "0-8186-8485-2, 0-8186-8487-9 (microfiche)", ISBN-13 = "978-0-8186-8485-2, 978-0-8186-8487-6 (microfiche)", LCCN = "QA76.64.T66 1997b", bibdate = "Tue Sep 28 07:51:05 MDT 1999", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, classification = "722; 722.4; 723; 723.1; 723.1.1; 723.3", journalabr = "Proc Conf Technol Obj Oriented Lang Syst TOOLS", keywords = "Aspect oriented programming (AOP); Bracket routines; C (programming language); Class based object oriented database systems; Codes (symbols); Common Lisp; Common object request broker architecture (CORBA); Computational linguistics; Computer architecture; Computer hardware description languages; Concurrent object oriented systems; Database systems; Distributed computer systems; Formal logic; Garbage collection; Interface definition languages (IDL); Java programming language; Lisp (programming language); Object oriented programming; Object oriented specification languages; Software engineering; User interfaces; Wide area networks", } @Proceedings{Sydow:1997:IWC, editor = "Achim Sydow", booktitle = "15th IMACS World Congress on Scientific Computation, Modelling and Applied Mathematics: Berlin, August 1997: proceedings", title = "15th {IMACS} World Congress on Scientific Computation, Modelling and Applied Mathematics: Berlin, August 1997: proceedings", publisher = "Wissenschaft and Technik", address = "Berlin, Germany", pages = "various", year = "1997", ISBN = "3-89685-550-6 (set), 3-89685-551-4 (vol. 1), 3-89685-552-2 (vol. 2), 3-89685-553-0 (vol. 3),3-89685-554-9 (vol. 4), 3-89685-555-7 (vol. 5), 3-89685-556-5 (vol. 6)", ISBN-13 = "978-3-89685-550-3 (set), 978-3-89685-551-0 (vol. 1), 978-3-89685-552-7 (vol. 2), 978-3-89685-553-4 (vol. 3), 978-3-89685-554-1 (vol. 4), 978-3-89685-555-8 (vol. 5), 978-3-89685-556-5 (vol. 6)", LCCN = "Q183.9 .I46 1997", bibdate = "Thu Sep 16 09:48:36 MDT 1999", bibsource = "http://www.math.utah.edu/pub/bibnet/authors/d/dongarra-jack-j.bib; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "In cooperation with R.-P. Schafer, W. Rufeger, and H. Lehmann.", series = "IMACS World Congress", acknowledgement = ack-nhfb, sponsor = "IMACS.", } @Proceedings{UC:1997:ESI, editor = "{Unicode Consortium}", booktitle = "{Europe}, Software + the {Internet}: Going Global with {Unicode}: Tenth International {Unicode} Conference, {March 10--12, 1997, Mainz, Germany}", title = "{Europe}, Software + the {Internet}: Going Global with {Unicode}: Tenth International {Unicode} Conference, {March 10--12, 1997, Mainz, Germany}", publisher = pub-UNICODE, address = pub-UNICODE-SAN-JOSE:adr, pages = "????", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Apr 23 14:36:13 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc10/; http://www.unicode.org/unicode/uni2book/u2ord.html", acknowledgement = ack-nhfb, keywords = "Character sets (Data processing) -- Congresses; Coding theory -- Congresses", } @Proceedings{UC:1997:SDI, editor = "{Unicode Consortium}", booktitle = "Software Development + the {Internet}: Going Global with {Unicode}: The Eleventh International Unicode Conference, September 2--5, 1997, San Jose, California, USA", title = "Software Development + the {Internet}: Going Global with {Unicode}: The Eleventh International Unicode Conference, September 2--5, 1997, San Jose, California, {USA}", publisher = pub-UNICODE, address = pub-UNICODE-SAN-JOSE:adr, pages = "ca. 500", year = "1997", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Apr 23 14:38:28 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc11/index.html; http://www.unicode.org/unicode/uni2book/u2ord.html", acknowledgement = ack-nhfb, keywords = "Character sets (Data processing) -- Congresses; Coding theory -- Congresses", } @Proceedings{USENIX:1997:ATT, editor = "{USENIX}", booktitle = "5th Annual Tcl/Tk Workshop '97, July 14--17, 1997. Boston, MA", title = "5th Annual Tcl/Tk Workshop '97, July 14--17, 1997. Boston, {MA}", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "190", year = "1997", ISBN = "1-880446-87-1", ISBN-13 = "978-1-880446-87-4", LCCN = "QA76.73.T44 T44 1997", bibdate = "Mon May 11 10:40:31 1998", bibsource = "ftp://ftp.uu.net/library/bibliography; http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, location = "Boston, MA", } @Proceedings{USENIX:1997:TUC, editor = "{USENIX}", booktitle = "The Third USENIX Conference on Object-Oriented Technologies and Systems (COOTS), June 16--19, 1997. Portland, Oregon", title = "The Third {USENIX} Conference on Object-Oriented Technologies and Systems ({COOTS}), June 16--19, 1997. Portland, Oregon", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "248", year = "1997", ISBN = "1-880446-86-3", ISBN-13 = "978-1-880446-86-7", LCCN = "QA76.64 .U845 1997", bibdate = "Sun Oct 12 17:04:30 1997", bibsource = "ftp://ftp.uu.net/library/bibliography; http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://dxsting.cern.ch/sting/COOTS97.html", acknowledgement = ack-nhfb, location = "Portland, OR", } @Proceedings{USENIX:1997:USI, editor = "{USENIX}", booktitle = "USENIX Symposium on Internet Technologies and Systems Proceedings, Monterey, California, December 8--11, 1997", title = "{USENIX} Symposium on Internet Technologies and Systems Proceedings, Monterey, California, December 8--11, 1997", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "262", year = "1997", ISBN = "1-880446-91-X", ISBN-13 = "978-1-880446-91-1", LCCN = "TK5105.875.I57 U96 1997", bibdate = "Fri Oct 29 17:03:55 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/usits97/", acknowledgement = ack-nhfb, } @Proceedings{ACM:1998:AWJ, editor = "{ACM}", booktitle = "ACM 1998 Workshop on Java for High-Performance Network Computing", title = "{ACM} 1998 Workshop on Java for High-Performance Network Computing", publisher = pub-ACM, address = pub-ACM:adr, pages = "287", year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", LCCN = "????", bibdate = "Thu Apr 27 10:40:59 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Also published as {\em Concurrency: Practice and Experience}, {\bf 10}(11--13), September 1998, CODEN CPEXEI, ISSN 1040-3108.", series = j-CPE, URL = "http://www.cs.ucsb.edu/conferences/java98/program.html", acknowledgement = ack-nhfb, xxISBN = "none", xxnote = "Appears to be the same as \cite{Fox:1998:JHP}.", } @Proceedings{ACM:1998:CRP, editor = "ACM", booktitle = "Conference record of POPL '98: the 25th ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages: papers presented at the Symposium, San Diego, California, 19--21 January 1998", title = "Conference record of {POPL} '98: the 25th {ACM} {SIGPLAN}-{SIGACT} Symposium on Principles of Programming Languages: papers presented at the Symposium, San Diego, California, 19--21 January 1998", publisher = pub-ACM, address = pub-ACM:adr, pages = "viii + 408", year = "1998", ISBN = "0-89791-979-3", ISBN-13 = "978-0-89791-979-1", LCCN = "QA76.7 .A15 1998", bibdate = "Mon May 3 17:47:49 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "ACM order number: 549981.", URL = "http://www.acm.org/pubs/contents/proceedings/plan/268946/index.html", acknowledgement = ack-nhfb, alttitle = "POPL '98 ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages Principles of programming languages Proceedings 25th ACM SIGPLAN-SIGACT Symposium on Principles of Programming Languages", keywords = "Electronic digital computers -- Programming -- Congresses.; Programming languages (Electronic computers) -- Congresses.", } @Proceedings{Anonymous:1998:ANE, editor = "Anonymous", booktitle = "The 19th Annual National Educational Computing Conference: San Diego Convention Center, San Diego, CA, June 22--24, 1998: NECC '98", title = "The 19th Annual National Educational Computing Conference: San Diego Convention Center, San Diego, {CA}, June 22--24, 1998: {NECC} '98", publisher = pub-INT-SOC-TECH-EDU, address = pub-INT-SOC-TECH-EDU:adr, pages = "xxv + 434", year = "1998", ISBN = "1-56484-134-0", ISBN-13 = "978-1-56484-134-6", LCCN = "????", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Proceedings{Anonymous:1998:GAL, editor = "Anonymous", booktitle = "Genetics applied to livestock production: World congress; 6th --- January 1998, Armidale, Australia", title = "Genetics applied to livestock production: World congress; 6th --- January 1998, Armidale, Australia", volume = "27", publisher = "????", address = "????", pages = "????", year = "1998", ISBN = "1-86389-454-3", ISBN-13 = "978-1-86389-454-8", LCCN = "????", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = "PROCEEDINGS OF THE WORLD CONGRESS ON GENETICS APPLIED TO LIVESTOCK PRODUCTION 1998; 6th", acknowledgement = ack-nhfb, sponsor = "University of New England; Division of Animal Science and Animal Genetics and Breeding Unit Commonwealth Scientific and Animal Genetics and Breeding Unit Commonwealth Scientific and Industrial Research Organization; Division of Animal Production Pastoral Research Laboratories.", } @Proceedings{Anonymous:1998:SUG, editor = "Anonymous", booktitle = "SAS Users Group: Annual international conference; 23rd --- March 1998, Nashville, TN", title = "{SAS} Users Group: Annual international conference; 23rd --- March 1998, Nashville, {TN}", publisher = "SAS", address = "????", pages = "????", year = "1998", ISBN = "1-58025-149-8", ISBN-13 = "978-1-58025-149-5", LCCN = "????", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = "SUGI 1998; CONF 23", acknowledgement = ack-nhfb, sponsor = "SAS Institute User Group.", } @Proceedings{Chute:1998:AMI, editor = "Christopher G. Chute", booktitle = "{American Medical Informatics Association}: A paradigm shift in health care information systems: Annual symposium --- {November 7--11, 1998, Orlando, FL}", title = "{American Medical Informatics Association}: {A} paradigm shift in health care information systems: Annual symposium --- {November 7--11, 1998, Orlando, {FL}}", publisher = pub-HANLEY-BELFUS, address = pub-HANLEY-BELFUS:adr, pages = "xxxviii + 1155", year = "1998", ISSN = "1091-8280", LCCN = "????", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = "Journal of the American Medical Informatics Association: Symposium Supplement", acknowledgement = ack-nhfb, sponsor = "American Medical Informatics Association.", xxISBN = "none", } @Proceedings{Fox:1998:JHP, editor = "Geoffrey C. Fox", booktitle = "{Java for high-performance network computing: [proceedings of the third of a set of workshops studying the use of Java in large scale computations, Palo Alto, CA]}", title = "{Java for high-performance network computing: [proceedings of the third of a set of workshops studying the use of Java in large scale computations, Palo Alto, CA]}", volume = "10(11/13)", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "821", year = "1998", CODEN = "CPEXEI", ISSN = "1040-3108", bibdate = "Sat Nov 09 10:32:35 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = j-CPE, acknowledgement = ack-nhfb, xxnote = "Appears to be the same as \cite{ACM:1998:AWJ}.", } @Proceedings{IEEE:1998:CPT, editor = "{IEEE}", booktitle = "COMPSAC '98: proceedings [of the] Twenty-Second Annual International Computer Software \& Applications Conference: held August 19--21, 1998, Vienna, Austria", title = "{COMPSAC} '98: proceedings [of the] Twenty-Second Annual International Computer Software \& Applications Conference: held August 19--21, 1998, Vienna, Austria", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xix + 651", year = "1998", ISBN = "0-8186-8585-9 (softbound), 0-7803-5168-1 (casebound), 0-8186-8587-5 (microfiche)", ISBN-13 = "978-0-8186-8585-9 (softbound), 978-0-7803-5168-4 (casebound), 978-0-8186-8587-3 (microfiche)", ISSN = "0730-3157", LCCN = "QA76.6 .I546 1998", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = "COMPSAC -NEW YORK- 1998", acknowledgement = ack-nhfb, sponsor = "IEEE.", } @Proceedings{IEEE:1998:IRI, editor = "{IEEE}", booktitle = "1998 IEEE\slash RSJ International Conference on Intelligent Robots and Systems: proceedings: innovatiions in theory, practice, and applications: October 13--17, 1998, Victoria Conference Centre, Victoria, BC, Canada", title = "1998 {IEEE}\slash {RSJ} International Conference on Intelligent Robots and Systems: proceedings: innovatiions in theory, practice, and applications: October 13--17, 1998, Victoria Conference Centre, Victoria, {BC}, Canada", volume = "3", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "various", year = "1998", ISBN = "0-7803-4465-0 (softbound), 0-7803-4466-9 (casebound), 0-7803-4467-7 (microfiche)", ISBN-13 = "978-0-7803-4465-5 (softbound), 978-0-7803-4466-2 (casebound), 978-0-7803-4467-9 (microfiche)", LCCN = "TJ210.3.I443 1998", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Three volumes. IEEE Catalog Number 98CH36190.", acknowledgement = ack-nhfb, sponsor = "IEEE. Robotics Society of Japan.", } @Proceedings{IEEE:1998:MME, editor = "{IEEE}", booktitle = "MELECON '98, 9th Mediterranean Electrotechnical Conference: proceedings, May 18--20. 1998, Tel-Aviv, Israel", title = "{MELECON} '98, 9th Mediterranean Electrotechnical Conference: proceedings, May 18--20. 1998, Tel-Aviv, Israel", volume = "1", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "various", year = "1998", ISBN = "0-7803-3879-0 (softbound), 0-7803-3880-4 (casebound), 0-7803-3881-2 (microfiche)", ISBN-13 = "978-0-7803-3879-1 (softbound), 978-0-7803-3880-7 (casebound), 978-0-7803-3881-4 (microfiche)", LCCN = "TK5 .M43 1998; TK5101.A1 M38 1998", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "Two volumes. IEEE catalog number 98CH36056.", acknowledgement = ack-nhfb, sponsor = "IEEE; Region 8. IEEE; Israel Section. Association of Engineers and Architects in Israel (AEAI).", } @Proceedings{Ikeda:1998:SAT, editor = "Kazuyuki Ikeda and Matsuyuki Doi and Tomiei Kazama", booktitle = "State-of-the-art technology in anesthesia and intensive care: proceedings of the 18th International Symposium on Computing in Anesthesia and Intensive Care held in Hamamatsu city, Japan on 18--21 March 1998", title = "State-of-the-art technology in anesthesia and intensive care: proceedings of the 18th International Symposium on Computing in Anesthesia and Intensive Care held in Hamamatsu city, Japan on 18--21 March 1998", volume = "1168", publisher = pub-ELS, address = pub-ELS:adr, pages = "xii + 337", year = "1998", ISBN = "0-444-50008-1", ISBN-13 = "978-0-444-50008-3", LCCN = "WO 200 I61-2 1998; RD80.95 .I68 1998", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = "International congress series", acknowledgement = ack-nhfb, } @Proceedings{Joyce:1998:PTN, editor = "Daniel T. Joyce", booktitle = "Proceedings of the Twenty-ninth SIGCSE Technical Symposium on Computer Science Education: February 25--March 1, 1998, Atlanta, Georgia", title = "Proceedings of the Twenty-ninth {SIGCSE} Technical Symposium on Computer Science Education: February 25--March 1, 1998, Atlanta, Georgia", volume = "30(1)", publisher = pub-ACM, address = pub-ACM:adr, pages = "xx + 396", year = "1998", ISBN = "0-89791-994-7", ISBN-13 = "978-0-89791-994-4", ISSN = "0097-8418", LCCN = "QA1 .A86 v.30, no.1", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = j-SIGCSE, acknowledgement = ack-nhfb, sponsor = "Association for Computing Machinery; Special Interest Group on Computer Science Education.", } @Proceedings{Kandlur:1998:MCN, editor = "Dilip D. Kandlur and Kevin Jeffay and Timothy Roscoe", booktitle = "Multimedia computing and networking 1999: 25--27 January, 1999, San Jose, California", title = "Multimedia computing and networking 1999: 25--27 January, 1999, San Jose, California", number = "3654", publisher = pub-SPIE, address = pub-SPIE:adr, pages = "v + 328", year = "1998", ISBN = "0-8194-3125-7", ISBN-13 = "978-0-8194-3125-7", ISSN = "0277-786X (print), 1996-756X (electronic)", LCCN = "TS510.S63 v.3654", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = j-SPIE, acknowledgement = ack-nhfb, sponsor = "SPIE.", } @Proceedings{Lamersdorf:1998:TDS, editor = "Winfried Lamersdorf and Michael Merz", booktitle = "Trends in distributed systems for electronic commerce: international {IFIP}\slash {GI} working conference, {TREC}'98, Hamburg, Germany, June 3--5, 1998, proceedings", title = "Trends in distributed systems for electronic commerce: international {IFIP}\slash {GI} working conference, {TREC}'98, Hamburg, Germany, June 3--5, 1998, proceedings", volume = "1402", publisher = pub-SV, address = pub-SV:adr, pages = "xii + 253", year = "1998", ISBN = "3-540-64564-0 (paperback)", ISBN-13 = "978-3-540-64564-1 (paperback)", ISSN = "0302-9743 (print), 1611-3349 (electronic)", LCCN = "QA267.A1 L43 no.1402", bibdate = "Sun Oct 11 16:16:40 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib; http://www.math.utah.edu/pub/tex/bib/lncs.bib", series = ser-LNCS, acknowledgement = ack-nhfb, annote = "A framework for the optimizing of WWW advertising / C. Aggarwal, J. Wolf, P. Yu --- Symmetric adaptive customer modeling for electronic commerce in a distributed environment / M. Barra \ldots{} [et al.] --- Maximizing seller's profit for electronic commerce / B. Belegradek, K. Kalpakis, Y. Yesha --- Approaches of digital signature legislation / T.F. Rebel, O. Darg, W. Koenig --- A Java-based distributed platform for multilateral security / A. Pfitzmann \ldots{} [et al.] --- BARTER: a backbone architecture for trade of electronic content / G. Shamir, M. Ben-Or, D. Dolev --- An agent-based secure internet payment system for mobile computing / A. Romao, M. Mira da Silva --- A payment scheme for mixes providing anonymity / E. Franz, A. Jerichow, G. Wicke --- Satisfying requirements for electronic commerce / J. Cunningham \ldots{} [et al.] --- Distributed models for brokerage on electronic commerce / I. Gallego, J. Delgado, J.J. Acebron --- Distributed print on demand systems in the Xpect framework / J.-M. Andreoli, F. Pacull --- OFFER: a broker-centered object framework for electronic requisitioning / M. Bichler, C. Beam, A. Segev --- Workflow modeling for internet-based commerce: an approach based on high-level petri nets / W. Weitz --- Market-based workflow management / A. Geppert, M. Kradolfer, D. Tombros --- Distributed, interoperable workflow support for electronic commerce / M. Papazoglou \ldots{} [et al.] --- Security requirements for mobile agents in electronic markets / M. Zapf, H. Muller, K. Geihs --- A secure intelligent trade agent system / X. Yi, F. Wang, K.Y. Lam - - Migrating objects in electronic commerce applications / M. Boger --- Providing reliable agents for electronic commerce / M. Stragbser, K. Rothermel, C. Maihofer.", keywords = "Electronic commerce --- Congresses; Electronic funds transfers --- Congresses; Intelligent agents (Computer software) --- Congresses; Internet advertising --- Congresses; Middleware --- Congresses; Workflow --- Management --- Congresses", } @Proceedings{MacKay:1998:PCT, editor = "Stephen A. MacKay and J. Howard Johnson", booktitle = "Proceedings of CASCON'98: Toronto, Ontario, Canada, 30 November--3 December 1998", title = "Proceedings of {CASCON}'98: Toronto, Ontario, Canada, 30 November--3 December 1998", publisher = "IBM Toronto Laboratory, Centre for Advanced Studies", address = "Toronto, ON, Canada", pages = "xiii + 322", year = "1998", LCCN = "TK 5105.5 .C36 1998", bibdate = "Sat Nov 29 10:56:20 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, altbooktitle = "Meeting of minds: conference program / CASCON '98, November 30--December 3, 1998, International Plaza Hotel, Toronto, Ontario, Canada", xxISBN = "none", } @Proceedings{Morrison:1998:APO, editor = "Ron Morrison and Mick Jordan and Malcolm Atkinson", booktitle = "Advances in Persistent Object Systems: Proceedings of the International Workshop on Persistent Object Systems (POS) and the International Workshop on Persistence \& Java (PJAVA)", title = "Advances in Persistent Object Systems: Proceedings of the International Workshop on Persistent Object Systems ({POS}) and the International Workshop on Persistence \& Java ({PJAVA})", publisher = pub-MORGAN-KAUFMANN, address = pub-MORGAN-KAUFMANN:adr, pages = "v + 384", year = "1998", ISBN = "1-55860-585-1", ISBN-13 = "978-1-55860-585-5", LCCN = "QA76.9.D3 I59 1998", bibdate = "Fri Jan 19 06:16:20 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$54.95", acknowledgement = ack-nhfb, } @Proceedings{NIST:1998:FAE, editor = "{National Institute of Standards and Technology}", booktitle = "The First Advanced Encryption Standard Candidate Conference, August 20--22, 1998, DoubleTree Hotel, Ventura, California", title = "The First Advanced Encryption Standard Candidate Conference, August 20--22, 1998, DoubleTree Hotel, Ventura, California", publisher = pub-NIST, address = pub-NIST:adr, pages = "????", year = "1998", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Oct 16 08:51:21 2000", bibsource = "http://csrc.nist.gov/encryption/aes/round1/conf1/aes1conf.htm; http://csrc.nist.gov/encryption/aes/round1/round1.htm#algtable; http://www.math.utah.edu/pub/tex/bib/java.bib", note = "See \cite{Roback:1999:CRF} for a conference overview. No formal proceedings were published, but the conference Web site contains pointers to slides and/or technical papers for most of the fifteen ``complete and proper'' candidates.", URL = "http://csrc.nist.gov/encryption/aes/round1/conf1/aes1conf.htm; http://www.nist.gov/aes", acknowledgement = ack-nhfb # " and " # ack-bs, } @Proceedings{Spencer:1998:PVT, editor = "S. N. Spencer", booktitle = "Proceedings {VRML} 98: third Symposium on the Virtual Reality Modeling Language, Monterey, California, February 16--19, 1998", title = "Proceedings {VRML} 98: third Symposium on the Virtual Reality Modeling Language, Monterey, California, February 16--19, 1998", publisher = pub-ACM, address = pub-ACM:adr, pages = "140", year = "1998", ISBN = "1-58113-022-8", ISBN-13 = "978-1-58113-022-5", LCCN = "????", bibdate = "Fri Sep 11 08:29:11 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, alttitle = "VRML 98 Third Symposium on the Virtual Reality Modeling Language", annote = "``Cosponsored by the Association for Computing Machinery's Special Interest Groups on Computer Graphics (SIGGRAPH) and Data Communications (SIGCOMM) in cooperation with the VRML Consortium.'' ``ACM order number: 434984''--T.p. verso.", keywords = "Three-dimensional display systems -- Congresses; Virtual reality -- Congresses; VRML (Computer program language) -- Congresses", } @Proceedings{UC:1998:ASI, editor = "{Unicode Consortium}", booktitle = "{Asia}, Software + the {Internet}: Going Global with {Unicode}: The Twelfth International Unicode\slash ISO10646 Conference (IUC12) April 8--10, 1998, Tokyo, Japan", title = "{Asia}, Software + the {Internet}: Going Global with {Unicode}: The Twelfth International Unicode\slash {ISO10646} Conference ({IUC12}) April 8--10, 1998, Tokyo, Japan", publisher = pub-UNICODE, address = pub-UNICODE-SAN-JOSE:adr, pages = "????", year = "1998", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Apr 23 14:38:28 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.unicode.org/unicode/iuc12/index.html; http://www.unicode.org/unicode/uni2book/u2ord.html", acknowledgement = ack-nhfb, } @Proceedings{UC:1998:TIU, editor = "{Unicode Consortium}", booktitle = "Thirteenth International Unicode Conference: Software + the Internet: Going Global with Unicode (R), September 8--11, 1998, San Jose, California", title = "Thirteenth International Unicode Conference: Software + the Internet: Going Global with Unicode ({R}), September 8--11, 1998, San Jose, California", publisher = pub-UNICODE, address = pub-UNICODE-SAN-JOSE:adr, pages = "????", year = "1998", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Apr 23 14:38:28 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.reuters.com/unicode/iuc13; http://www.unicode.org", acknowledgement = ack-nhfb, } @Proceedings{USENIX:1998:PFT, editor = "{USENIX}", booktitle = "Proceedings of the {FreeNIX} Track: {USENIX} 1998 annual technical conference: June 15--19, 1998, New Orleans, LA", title = "Proceedings of the {FreeNIX} Track: {USENIX} 1998 annual technical conference: June 15--19, 1998, New Orleans, {LA}", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "????", year = "1998", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Oct 16 14:58:34 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/usenix98/freenix/", acknowledgement = ack-nhfb, } @Proceedings{USENIX:1998:PFU, editor = "{USENIX}", booktitle = "Proceedings of the fourth {USENIX} Conference on Object-Oriented Technologies and Systems ({COOTS}): April 27--30, 1998, Santa Fe, NM", title = "Proceedings of the fourth {USENIX} Conference on Object-Oriented Technologies and Systems ({COOTS}): April 27--30, 1998, Santa Fe, {NM}", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "262", year = "1998", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Fri Oct 29 08:40:21 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://db.usenix.org/publications/library/proceedings/coots98", acknowledgement = ack-nhfb, } @Proceedings{USENIX:1998:PSA, editor = "{USENIX}", booktitle = "Proceedings of the sixth annual Tcl/Tk Conference, September 18--24 [i.e. 14--18], 1998, San Diego, California", title = "Proceedings of the sixth annual Tcl/Tk Conference, September 18--24 [i.e. 14--18], 1998, San Diego, California", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "206", year = "1998", ISBN = "1-880446-98-7", ISBN-13 = "978-1-880446-98-0", LCCN = "QA76.73.T44 T34 1998", bibdate = "Fri Oct 18 08:12:11 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://db.usenix.org/publications/library/proceedings/tcl98/", acknowledgement = ack-nhfb, } @Proceedings{USENIX:1998:PUA, editor = "{USENIX}", booktitle = "Proceedings of the {USENIX} 1998 annual technical conference: June 15--19, 1998, New Orleans, LA", title = "Proceedings of the {USENIX} 1998 annual technical conference: June 15--19, 1998, New Orleans, {LA}", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "vi + 282", year = "1998", ISBN = "1-880446-94-4", ISBN-13 = "978-1-880446-94-2", LCCN = "QA76.76.O63 U88 1998", bibdate = "Wed Oct 16 14:58:34 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://db.usenix.org/publications/library/proceedings/usenix98", acknowledgement = ack-nhfb, } @Proceedings{USENIX:1998:PUWb, editor = "{USENIX}", booktitle = "Proceedings of the 3rd USENIX Workshop on Electronic Commerce: August 31--September 3, 1998, Boston, Mass", title = "Proceedings of the 3rd {USENIX} Workshop on Electronic Commerce: August 31--September 3, 1998, Boston, Mass", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "242", year = "1998", ISBN = "1-880446-97-9", ISBN-13 = "978-1-880446-97-3", LCCN = "HF5004 .U74 1998", bibdate = "Fri Oct 29 08:40:21 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://db.usenix.org/publications/library/proceedings/ec98", acknowledgement = ack-nhfb, } @Proceedings{USENIX:1998:SUS, editor = "{USENIX}", booktitle = "Seventh {USENIX} Security Symposium proceedings: conference proceedings: San Antonio, Texas, January 26--29, 1998", title = "Seventh {USENIX} Security Symposium proceedings: conference proceedings: San Antonio, Texas, January 26--29, 1998", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "257", year = "1998", ISBN = "1-880446-92-8", ISBN-13 = "978-1-880446-92-8", LCCN = "QA76.9.A25 U83 1998", bibdate = "Fri Oct 29 08:40:21 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://db.usenix.org/publications/library/proceedings/sec98", acknowledgement = ack-nhfb, } @Proceedings{Westwood:1998:MMV, editor = "James D. Westwood and others", booktitle = "Medicine meets virtual reality: art, science, technology: healthcare (r)evolution. San Diego, California, January 28--31, 1998", title = "Medicine meets virtual reality: art, science, technology: healthcare (r)evolution. San Diego, California, January 28--31, 1998", volume = "50", publisher = pub-IOS, address = pub-IOS:adr, pages = "xv + 409", year = "1998", ISBN = "90-5199-386-2, 4-274-90210-2", ISBN-13 = "978-90-5199-386-8, 978-4-274-90210-9", ISSN = "0926-9630", LCCN = "W26.5 M45 1998", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = "Studies in health technology and informatics", acknowledgement = ack-nhfb, } @Proceedings{ACM:1999:PASa, editor = "ACM", booktitle = "Proceedings of the ACM SIGPLAN '99 Conference on Programming Language Design and Implementation (PLDI '99), Atlanta, Georgia, 2--4 May 1999", title = "Proceedings of the {ACM} {SIGPLAN} '99 Conference on Programming Language Design and Implementation ({PLDI} '99), Atlanta, Georgia, 2--4 May 1999", volume = "34(5)", publisher = pub-ACM, address = pub-ACM:adr, pages = "x + 304", year = "1999", ISBN = "1-58113-094-5", ISBN-13 = "978-1-58113-094-2", LCCN = "????", bibdate = "Thu May 13 14:45:29 1999", bibsource = "http://www.acm.org/pubs/contents/proceedings/pldi/301122/index.html; http://www.acm.org/pubs/contents/proceedings/pldi/301618/index.html; http://www.cs.rutgers.edu/pldi99/program.html; http://www.math.utah.edu/pub/tex/bib/java.bib", series = j-SIGPLAN, acknowledgement = ack-nhfb, } @Proceedings{ACM:1999:PPA, editor = "{ACM}", booktitle = "POPL '99. Proceedings of the 26th ACM SIGPLAN-SIGACT on Principles of programming languages, January 20--22, 1999, San Antonio, TX", title = "{POPL} '99. Proceedings of the 26th {ACM} {SIGPLAN}-{SIGACT} on Principles of programming languages, January 20--22, 1999, San Antonio, {TX}", publisher = pub-ACM, address = pub-ACM:adr, pages = "viii + 324", year = "1999", ISBN = "1-58113-095-3", ISBN-13 = "978-1-58113-095-9", LCCN = "????", bibdate = "Mon May 03 18:41:35 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.acm.org/pubs/contents/proceedings/plan/292540/index.html", acknowledgement = ack-nhfb, } @Proceedings{ACM:1999:SPCd, editor = "{ACM}", booktitle = "SIGGRAPH 99. Proceedings of the 1999 SIGGRAPH annual conference: Conference abstracts and applications", title = "{SIGGRAPH} 99. Proceedings of the 1999 {SIGGRAPH} annual conference: Conference abstracts and applications", publisher = pub-ACM, address = pub-ACM:adr, pages = "????", year = "1999", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Oct 04 10:16:29 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = j-COMP-GRAPHICS, URL = "http://info.acm.org/pubs/contents/proceedings/graph/", acknowledgement = ack-nhfb, } @Proceedings{ACM:1999:SPO, editor = "{ACM}", booktitle = "SC'99: Oregon Convention Center 777 NE Martin Luther King Jr. Boulevard, Portland, Oregon, November 11--18, 1999", title = "{SC}'99: Oregon Convention Center 777 {NE} Martin Luther King Jr. Boulevard, Portland, Oregon, November 11--18, 1999", publisher = pub-ACM # " and " # pub-IEEE, address = pub-ACM:adr # " and " # pub-IEEE:adr, pages = "????", year = "1999", ISBN = "", ISBN-13 = "", LCCN = "", bibdate = "Thu Feb 24 09:35:00 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Book{Alves-Foss:1999:FSS, editor = "Jim Alves-Foss", booktitle = "Formal syntax and semantics of {Java}", title = "Formal syntax and semantics of {Java}", volume = "1523", publisher = pub-SV, address = pub-SV:adr, pages = "404", year = "1999", ISBN = "3-540-66158-1", ISBN-13 = "978-3-540-66158-0", ISSN = "0302-9743 (print), 1611-3349 (electronic)", LCCN = "QA76.73.J38F67 1999", bibdate = "Mon Sep 13 11:02:06 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", price = "US\$49.00", series = ser-LNCS, acknowledgement = ack-nhfb, } @Proceedings{Anonymous:1999:PII, editor = "Anonymous", booktitle = "Proceedings of the IASTED International Conference on Internet and Multimedia Systems and Applications (IMSA). Nassau, Bahamas, October 1999", title = "Proceedings of the {IASTED} International Conference on Internet and Multimedia Systems and Applications ({IMSA}). Nassau, Bahamas, October 1999", publisher = "Acta Press", address = "Anaheim, CA, USA", pages = "????", year = "1999", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Oct 24 10:38:48 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Proceedings{Atkinson:1999:PTF, editor = "Malcolm P. Atkinson and Maria E. Orlowska and Patrick Valduriez and Stanley B. Zdonik and Michael L. Brodie", booktitle = "Proceedings of the Twenty-fifth International Conference on Very Large Databases, Edinburgh, Scotland, UK, 7--10 September, 1999", title = "Proceedings of the Twenty-fifth International Conference on Very Large Databases, Edinburgh, Scotland, {UK}, 7--10 September, 1999", publisher = pub-MORGAN-KAUFMANN, address = pub-MORGAN-KAUFMANN:adr, pages = "xviii + 761", year = "1999", ISBN = "1-55860-615-7", ISBN-13 = "978-1-55860-615-9", LCCN = "QA76.9.D3 I559 1999", bibdate = "Tue Oct 24 18:36:50 MDT 2000", bibsource = "DBLP; http://dblp.uni-trier.de; http://www.math.utah.edu/pub/tex/bib/java.bib; OCLC Proceedings database", note = "Also known as VLDB'99", acknowledgement = ack-nhfb, keywords = "very large data bases; VLDB", } @Proceedings{Bruzzone:1999:PIC, editor = "Agostino G. Bruzzone and Adelinde Uhrmacher and Ernest H. Page", booktitle = "Proceedings of the 1999 International Conference on Web-based Modeling and Simulation: 1999 Western MultiConference, San Francisco, California, January 17--20, 1999, Cathedral Hill Hotel", title = "Proceedings of the 1999 International Conference on Web-based Modeling and Simulation: 1999 Western MultiConference, San Francisco, California, January 17--20, 1999, Cathedral Hill Hotel", volume = "31(3)", publisher = "Society for Computer Simulation International", address = "San Diego, CA, USA", pages = "vii + 255", year = "1999", ISBN = "1-56555-156-7", ISBN-13 = "978-1-56555-156-5", LCCN = "QA76.9.C65 I574 1999", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = "Simulation Series", acknowledgement = ack-nhfb, } @Proceedings{Dongarra:1999:RAP, editor = "J. J. Dongarra and E. Luque and Tomas Margalef", booktitle = "Recent advances in parallel virtual machine and message passing interface: 6th European {PVM}\slash {MPI} Users' Group Meeting, Barcelona, Spain, September 26--29, 1999: proceedings", title = "Recent advances in parallel virtual machine and message passing interface: 6th European {PVM}\slash {MPI} Users' Group Meeting, Barcelona, Spain, September 26--29, 1999: proceedings", volume = "1697", publisher = pub-SV, address = pub-SV:adr, pages = "xvii + 551", year = "1999", ISBN = "3-540-66549-8 (softcover)", ISBN-13 = "978-3-540-66549-6 (softcover)", ISSN = "0302-9743 (print), 1611-3349 (electronic)", LCCN = "QA76.58 E973 1999", bibdate = "Wed Dec 8 06:34:56 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", series = ser-LNCS, acknowledgement = ack-nhfb, alttitle = "PVM/MPI '99", keywords = "Data transmission systems; Parallel computers; Virtual computer systems", } @Proceedings{Dooley:1999:IJS, editor = "Sam Dooley", booktitle = "{ISSAC 99: July 29--31, 1999, Simon Fraser University, Vancouver, BC, Canada: proceedings of the 1999 International Symposium on Symbolic and Algebraic Computation}", title = "{ISSAC 99: July 29--31, 1999, Simon Fraser University, Vancouver, BC, Canada: proceedings of the 1999 International Symposium on Symbolic and Algebraic Computation}", publisher = pub-ACM, address = pub-ACM:adr, pages = "xxii + 311", year = "1999", ISBN = "1-58113-073-2", ISBN-13 = "978-1-58113-073-7", LCCN = "QA76.95 .I57 1999", bibdate = "Sat Mar 11 16:51:59 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Proceedings{IEEE:1999:HCS, editor = "IEEE", booktitle = "Hot Chips 11: Stanford University, Stanford, California, August 15--17, 1999", title = "Hot Chips 11: Stanford University, Stanford, California, August 15--17, 1999", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "????", year = "1999", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Jan 08 05:26:43 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.hotchips.org/hotc11_index.html", acknowledgement = ack-nhfb, } @Proceedings{IEEE:1999:SWH, editor = "IEEE", booktitle = "{The Seventh Workshop on Hot Topics in Operating Systems: [HotOS-VII]: 29--30 March 1999, Rio Rico, Arizona}", title = "{The Seventh Workshop on Hot Topics in Operating Systems: [HotOS-VII]: 29--30 March 1999, Rio Rico, Arizona}", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xxxi + 197", year = "1999", ISBN = "0-7695-0237-7, 0-7695-0238-5 (case), 0-7695-0239-3 (microfiche)", ISBN-13 = "978-0-7695-0237-3, 978-0-7695-0238-0 (case), 978-0-7695-0239-7 (microfiche)", LCCN = "QA76.76.O63 W6666 1999", bibdate = "Mon May 28 09:13:05 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "IEEE Computer Society Press order number PR00237.", acknowledgement = ack-nhfb, keywords = "microcomputer workstations -- congresses; operating systems (computers) -- congresses", } @Proceedings{NIST:1999:SAC, editor = "{National Institute of Standards and Technology}", booktitle = "Second AES Candidate Conference Proceedings, March 22--23, 1999, Rome, Italy", title = "Second {AES} Candidate Conference Proceedings, March 22--23, 1999, Rome, Italy", publisher = pub-NIST, address = pub-NIST:adr, pages = "????", month = mar, year = "1999", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Oct 16 08:51:21 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", note = "No formal proceedings were published, but the conference Web site contains pointers to slides and/or technical papers for most of the fifteen ``complete and proper'' candidates.", URL = "http://csrc.nist.gov/encryption/aes/round1/conf2/aes2conf.htm; http://csrc.nist.gov/encryption/aes/round1/conf2/agenda-final.pdf; http://www.nist.gov/aes", acknowledgement = ack-nhfb # " and " # ack-bs, } @Proceedings{Tentner:1999:PHP, editor = "Adrian Tentner", booktitle = "Proceedings of the High Performance Computing Symposium - HPC'99: San Diego, California, April 11--15, 1999, Hyatt Islandia Hotel", title = "Proceedings of the High Performance Computing Symposium - {HPC}'99: San Diego, California, April 11--15, 1999, Hyatt Islandia Hotel", publisher = "Society for Computer Simulation", address = "San Diego, CA, USA", pages = "xi + 475", year = "1999", ISBN = "1-56555-166-4", ISBN-13 = "978-1-56555-166-4", LCCN = "????", bibdate = "Tue Sep 21 10:27:35 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", acknowledgement = ack-nhfb, } @Proceedings{USENIX:1999:PCD, editor = "{USENIX}", booktitle = "Proceedings of the 2nd Conference on Domain-Specific Languages (DSL '99), October 3--5, 1999, Austin, Texas, USA", title = "Proceedings of the 2nd Conference on Domain-Specific Languages ({DSL} '99), October 3--5, 1999, Austin, Texas, {USA}", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "176", year = "1999", ISBN = "1-880446-27-8, 1-58113-255-7", ISBN-13 = "978-1-880446-27-0, 978-1-58113-255-7", LCCN = "QA76.7 .C663 1999", bibdate = "Fri Oct 18 06:50:33 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/dsl99/", acknowledgement = ack-nhfb, } @Proceedings{USENIX:1999:PFU, editor = "{USENIX}", booktitle = "Proceedings of the fifth USENIX Conference on Object-Oriented Technologies and Systems (COOTS '99): May 3--7, 1999, San Diego, California, USA", title = "Proceedings of the fifth {USENIX} Conference on Object-Oriented Technologies and Systems ({COOTS} '99): May 3--7, 1999, San Diego, California, {USA}", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "iv + 240", year = "1999", ISBN = "????", ISBN-13 = "????", LCCN = "QA76.64 .U84 1999", bibdate = "Fri Oct 29 08:40:21 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/coots99/", acknowledgement = ack-nhfb, } @Proceedings{USENIX:1999:PUS, editor = "{USENIX}", booktitle = "Proceedings of the 2nd USENIX Symposium on Internet Technologies and Systems (USITS '99), October 11--14, 1999, Boulder, Colorado, USA", title = "Proceedings of the 2nd {USENIX} Symposium on Internet Technologies and Systems ({USITS} '99), October 11--14, 1999, Boulder, Colorado, {USA}", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "254", year = "1999", ISBN = "1-880446-26-X", ISBN-13 = "978-1-880446-26-3", LCCN = "TK5105.875.I57 U96", bibdate = "Fri Oct 18 06:34:01 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://db.usenix.org/publications/library/proceedings/usits99", acknowledgement = ack-nhfb, } @Proceedings{USENIX:1999:PUWa, editor = "{USENIX}", booktitle = "Proceedings of the USENIX Workshop on Smartcard Technology (Smartcard '99): May 10--11, 1999, Chicago, Illinois, USA", title = "Proceedings of the {USENIX} Workshop on Smartcard Technology (Smartcard '99): May 10--11, 1999, Chicago, Illinois, {USA}", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "185", year = "1999", ISBN = "1-880446-34-0", ISBN-13 = "978-1-880446-34-8", LCCN = "TK7895.S62 U84 1999", bibdate = "Fri Oct 29 08:40:21 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/smartcard99/", acknowledgement = ack-nhfb, } @Proceedings{USENIX:1999:PWE, editor = "{USENIX}", booktitle = "Proceedings of the Workshop on Embedded Systems, March 29--31, 1999, Cambridge, Massachusetts, USA", title = "Proceedings of the Workshop on Embedded Systems, March 29--31, 1999, Cambridge, Massachusetts, {USA}", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "114", year = "1999", ISBN = "1-880446-31-6", ISBN-13 = "978-1-880446-31-7", LCCN = "TK7895.E42 W67 1999", bibdate = "Fri Oct 18 07:31:57 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/java.bib", URL = "http://www.usenix.org/publications/library/proceedings/es99/", acknowledgement = ack-nhfb, } jbibtex-1.0.20/src/test/resources/mendeley.bib000066400000000000000000000013641421433304700212660ustar00rootroot00000000000000Automatically generated by Mendeley Desktop 1.10.1 Any changes to this file will be lost if it is regenerated by Mendeley. BibTeX export options can be customized via Options -> BibTeX in Mendeley Desktop @misc{TheMendeleySupportTeam2011b, abstract = {A quick introduction to Mendeley. Learn how Mendeley creates your personal digital library, how to organize and annotate documents, how to collaborate and share with colleagues, and how to generate citations and bibliographies.}, address = {London}, author = {{The Mendeley Support Team}}, booktitle = {Mendeley Desktop}, keywords = {Mendeley,how-to,user manual}, pages = {1--16}, publisher = {Mendeley Ltd.}, title = {{Getting Started with Mendeley}}, url = {http://www.mendeley.com}, year = {2011} } jbibtex-1.0.20/src/test/resources/unix.bib000066400000000000000000075563441421433304700204730ustar00rootroot00000000000000%%% -*-BibTeX-*- %%% ================================================================= %%% BibTeX-file{ %%% author = "Nelson H. F. Beebe", %%% version = "3.178", %%% date = "15 March 2012", %%% time = "08:50:32 MST", %%% filename = "unix.bib", %%% address = "University of Utah %%% Department of Mathematics, 110 LCB %%% 155 S 1400 E RM 233 %%% Salt Lake City, UT 84112-0090 %%% USA", %%% telephone = "+1 801 581 5254", %%% FAX = "+1 801 581 4148", %%% URL = "http://www.math.utah.edu/~beebe", %%% checksum = "62265 50332 204049 2022628", %%% email = "beebe at math.utah.edu, beebe at acm.org, %%% beebe at computer.org (Internet)", %%% codetable = "ISO/ASCII", %%% keywords = "bibliography; BibTeX; UNIX", %%% license = "public domain", %%% supported = "yes", %%% docstring = "This bibliography records books about the %%% UNIX operating system (and variants such as %%% GNU, Linux, Minix, Posix, and Plan 9), and %%% includes books and articles about the X %%% Window System, and about Open GL. There %%% are also separate companion bibliographies %%% on GNU/Linux (linux.bib) and Minix (minix.bib). %%% %%% Publications from the periodical Linux %%% Journal (1994--date) are covered in a separate %%% bibliography, linux-journal.bib. %%% %%% Publications of The USENIX Association are %%% covered in separate bibliographies: %%% usenix1980.bib, usenix1990.bib, and %%% usenix2000.bib. %%% %%% Lucent Technologies Bell Laboratories maintains %%% a UNIX history Web site at %%% %%% http://www.bell-labs.com/history/unix/moreinfo.html %%% %%% The Unix Heritage Society Web site at %%% %%% http://www.tuhs.org/ %%% %%% also contains historical information, as well as %%% source code for early versions of Unix. %%% %%% At version 3.178, the year coverage looked %%% like this: %%% %%% 1973 ( 2) 1987 ( 28) 2001 ( 130) %%% 1974 ( 1) 1988 ( 49) 2002 ( 122) %%% 1975 ( 2) 1989 ( 55) 2003 ( 90) %%% 1976 ( 3) 1990 ( 102) 2004 ( 68) %%% 1977 ( 1) 1991 ( 89) 2005 ( 108) %%% 1978 ( 25) 1992 ( 113) 2006 ( 102) %%% 1979 ( 4) 1993 ( 133) 2007 ( 55) %%% 1980 ( 7) 1994 ( 109) 2008 ( 48) %%% 1981 ( 4) 1995 ( 101) 2009 ( 40) %%% 1982 ( 15) 1996 ( 83) 2010 ( 25) %%% 1983 ( 28) 1997 ( 88) 2011 ( 21) %%% 1984 ( 26) 1998 ( 79) 2012 ( 1) %%% 1985 ( 24) 1999 ( 112) %%% 1986 ( 46) 2000 ( 133) %%% 19xx ( 1) %%% %%% Article: 645 %%% Book: 1447 %%% InCollection: 6 %%% InProceedings: 48 %%% Manual: 31 %%% MastersThesis: 12 %%% Misc: 7 %%% Periodical: 6 %%% PhdThesis: 2 %%% Proceedings: 34 %%% TechReport: 33 %%% Unpublished: 2 %%% %%% Total entries: 2273 %%% %%% Books about networking are mostly relegated %%% to a companion bibliography, internet.bib. %%% %%% In this bibliography, entries are sorted %%% first by ascending year, and within each %%% year, alphabetically by author or editor, %%% and then, if necessary, by the 3-letter %%% abbreviation at the end of the BibTeX %%% citation tag, using the bibsort -byyear %%% utility. Year order has been chosen to %%% make it easier to identify the most recent %%% work. %%% %%% The checksum field above contains a CRC-16 %%% checksum as the first value, followed by the %%% equivalent of the standard UNIX wc (word %%% count) utility output of lines, words, and %%% characters. This is produced by Robert %%% Solovay's checksum utility.", %%% } %%% ==================================================================== @Preamble{"\input bibnames.sty " # "\input path.sty " # "\ifx \undefined \TM \def \TM {${}^{\sc TM}$} \fi" # "\hyphenation{ Dough-erty Kern-i-ghan Mot-if Nath-an-son Pat-rick Sand-er-son Sri-ni-vas-an }" } %%% ==================================================================== %%% Acknowledgement abbreviations: @String{ack-jc = "Jim Cobb, Design Systems Division, Evans and Sutherland Corporation, 580 Arapeen Drive, P. O. Box 58700, Salt Lake City, UT 84158, USA, Tel: +1 801 582 5847, FAX: +1 801 582 0524, e-mail: \path|jcobb@dsd.es.com|"} @String{ack-jsq = "John S. Quarterman, Matrix Information and Directory Services, Inc. (MIDS), 1106 Clayton Lane, Suite 500W, Austin, TX 78723, USA, Tel: +1-512-451-7602, FAX: +1-512-450-1436, e-mail: \path|jsq@tic.com|"} @String{ack-ks = "Kevin Savetz, e-mail: \path|savetz@rahul.net|"} @String{ack-nhfb = "Nelson H. F. Beebe, University of Utah, Department of Mathematics, 110 LCB, 155 S 1400 E RM 233, Salt Lake City, UT 84112-0090, USA, Tel: +1 801 581 5254, FAX: +1 801 581 4148, e-mail: \path|beebe@math.utah.edu|, \path|beebe@acm.org|, \path|beebe@computer.org| (Internet), URL: \path|http://www.math.utah.edu/~beebe/|"} @String{ack-rc = "Roman Czyborra, e-mail: \path=|czyborra@dds.nl|"} @String{ack-sk = "Samuel Ko, e-mail: \path|kko@sfu.ca|"} @String{ack-woh = "Walt O. Haas, Department of Computer Science, University of Utah, Salt Lake City, UT 84112, USA, Tel: +1 801 581 5617, e-mail: \path|haas@ski.utah.edu|"} %%% ==================================================================== %%% Institutional abbreviations: @String{inst-ANL = "Argonne National Laboratory"} @String{inst-ANL:adr = "9700 South Cass Avenue, Argonne, IL 60439-4801, USA"} @String{inst-ANL-MCS = "Mathematics and Computer Science Division, Argonne National Laboratory"} @String{inst-ANL-MCS:adr = "9700 South Cass Avenue, Argonne, IL 60439-4801, USA"} @String{inst-HP = "Hewlett--Packard Corporation"} @String{inst-HP:adr = "Palo Alto, CA, USA"} @String{inst-UIUC = "University of Illinois at Urbana-Champaign"} @String{inst-UIUC:adr = "Urbana, IL 61801, USA"} @String{inst-UIUC-CSRD = "University of Illinois at Urbana-Champaign, Center for Supercomputing Research and Development"} @String{inst-UIUC-CSRD:adr = "Urbana, IL 61801, USA"} @String{inst-UT-CS = "Department of Computer Science, University of Tennessee, Knoxville"} @String{inst-UT-CS:adr = "Knoxville, TN 37996, USA"} %%% ==================================================================== %%% Journal abbreviations: @String{j-3X-400-SYST-MANAG = "3X/400 Systems Management"} @String{j-ADA-USER-J = "Ada User Journal"} @String{j-AI-EXPERT = "AI Expert"} @String{j-AM-PROG = "American Programmer"} @String{j-ANN-HIST-COMPUT = "Annals of the History of Computing"} @String{j-APPL-MATH-COMP = "Applied Mathematics and Computation"} @String{j-ATT-BELL-LAB-TECH-J = "AT\&T Bell Laboratories Technical Journal"} @String{j-ATT-TECH-J = "AT\&T Technical Journal"} @String{j-BELL-SYST-TECH-J = "The Bell System Technical Journal"} @String{j-BIT-NUM-MATH = "BIT Numerical Mathematics"} @String{j-BYTE = "BYTE Magazine"} @String{j-CACM = "Communications of the Association for Computing Machinery"} @String{j-CCCUJ = "C/C++ Users Journal"} @String{j-CCPE = "Concurrency and Computation: Prac\-tice and Experience"} @String{j-CGW = "Computer Graphics World"} @String{j-COMP-ARCH-NEWS = "ACM SIGARCH Computer Architecture News"} @String{j-COMP-DESIGN = "Computer Design"} @String{j-COMP-GRAPHICS = "Computer Graphics"} @String{j-COMP-J = "The Computer Journal"} @String{j-COMP-NET-AMSTERDAM = "Computer Networks (Amsterdam, Netherlands: 1999)"} @String{j-COMP-NET-ISDN = "Computer Networks and ISDN Systems"} @String{j-COMPUT-SCI-ENG = "Computing in Science and Engineering"} @String{j-COMP-STANDARDS-INTERFACES = "Computer Standards and Interfaces"} @String{j-COMP-SURV = "ACM Computing Surveys"} @String{j-COMP-TECH-REV = "Computer Technology Review"} @String{j-COMPUTER = "Computer"} @String{j-COMPUTERSHOPPER = "Computer Shopper"} @String{j-COMPUTERS-AND-GRAPHICS = "Computers and Graphics"} @String{j-COMPUTERWORLD = "ComputerWorld"} @String{j-CONTROL-ENG-PRACT = "Control Engineering Practice"} @String{j-CRYPTOLOGIA = "Cryptologia"} @String{j-CUJ = "C Users Journal"} @String{j-DATA-COMMUNICATIONS = "Data communications"} @String{j-DATAMATION = "Datamation"} @String{j-DDJ = "Dr. Dobb's Journal of Software Tools"} @String{j-DEC-PROFESSIONAL = "The DEC Professional"} @String{j-DIGEST-PAPERS-IEEE-SYMP-MASS-STOR-SYS = "Digest of Papers --- IEEE Symposium on Mass Storage Systems"} @String{j-EDN = "EDN"} @String{j-EMBED-SYS-PROG = "Embedded Systems Programming"} @String{j-EXE = ".EXE: the software developers' magazine"} @String{j-FED-COMPUTER-WEEK = "Federal computer week"} @String{j-FUJITSU = "Fujitsu"} @String{j-FUT-GEN-COMP-SYS = "Future Generation Computer Systems"} @String{j-GOV-COMP-NEWS = "Government computer news"} @String{j-HEWLETT-PACKARD-J = "Hewlett--Packard Journal"} @String{j-IBM-JRD = "IBM Journal of Research and Development"} @String{j-IBM-SYS-J = "IBM Systems Journal"} @String{j-IEEE-ANN-HIST-COMPUT = "IEEE Annals of the History of Computing"} @String{j-IEEE-CGA = "IEEE Computer Graphics and Applications"} @String{j-IEEE-DISTRIB-SYST-ONLINE = "IEEE Distributed Systems Online"} @String{j-IEEE-EXPERT = "IEEE expert: intelligent systems and their applications"} @String{j-IEEE-MICRO = "IEEE Micro"} @String{j-IEEE-SEC-PRIV = "IEEE Security \& Privacy"} @String{j-IEEE-SOFTWARE = "IEEE Software"} @String{j-IEEE-SPECTRUM = "IEEE Spectrum"} @String{j-IJHPCA = "The International Journal of High Performance Computing Applications"} @String{j-INFORMATION-WEEK = "Information Week"} @String{j-INSTRUM-CONTROL-SYST = "Instrumentation \& control systems: I\&CS"} @String{j-INT-GEOSCIENCE-REMOTE-SENSING-SYMPOSIUM = "International Geoscience and Remote Sensing Symposium (IGARSS)"} @String{j-INT-TELEMETERING-CONFERENCE = "International Telemetering Conference (Proceedings)"} @String{j-IRIS = "IRIS Universe"} @String{j-J-ACM = "Journal of the ACM"} @String{j-J-APPL-STAT = "Journal of Applied Statistics"} @String{j-J-CRYPTOLOGY = "Journal of Cryptology: the journal of the International Association for Cryptologic Research"} @String{j-J-PAR-DIST-COMP = "Journal of Parallel and Distributed Computing"} @String{j-J-SUPERCOMPUTING = "The Journal of Supercomputing"} @String{j-J-SYMBOLIC-COMP = "Journal of Symbolic Computation"} @String{j-J-SYST-SOFTW = "The Journal of Systems and Software"} @String{j-J-UCS = "J.UCS: Journal of Universal Computer Science"} @String{j-JERIC = "ACM Journal on Educational Resources in Computing (JERIC)"} @String{j-LECT-NOTES-COMP-SCI = "Lecture Notes in Computer Science"} @String{j-LINUX-J = "Linux Journal"} @String{j-LOGIN = ";login: the USENIX Association newsletter"} @String{j-MATHEMATICA-J = "Mathematica Journal"} @String{j-MICROSOFT-SYS-J = "Microsoft Systems Journal"} @String{j-NETWORK-WORLD = "Network World"} @String{j-NEWS-3X-400 = "News 3X/400"} @String{j-NIST-SPEC-PUBL = "NIST special publication"} @String{j-NTT-R-D = "NTT R\&D"} @String{j-OPER-SYS-REV = "Operating Systems Review"} @String{j-PARALLEL-PROCESS-LETT = "Parallel Processing Letters"} @String{j-PERS-COMPUT-WORLD = "Personal computer world"} @String{j-PROC-IEEE-INT-SOFTWARE-ENG-STAND-SYMP = "Proceedings of the IEEE International Software Engineering Standards Symposium"} @String{j-PROC-INT-CONF-SOFTWARE-ENG = "Proceedings --- International Conference on Software Engineering"} @String{j-PROC-INT-TEST-CONF = "Proceedings of the International Test Conference"} @String{j-PROC-REAL-TIME-SYS-SYMP = "Proceedings --- Real-Time Systems Symposium"} @String{j-QUEUE = "ACM Queue: Tomorrow's Computing Today"} @String{j-SCI-PROG = "Scientific Programming"} @String{j-SCPE = "Scalable Computing: Practice and Experience"} @String{j-SECURITY = "Security"} @String{j-SIGADA-LETTERS = "ACM SIGADA Ada Letters"} @String{j-SIGMETRICS = "ACM SIGMETRICS Performance Evaluation Review"} @String{j-SIGMOD = "SIGMOD Record (ACM Special Interest Group on Management of Data)"} @String{j-SIGNUM = "ACM SIGNUM Newsletter"} @String{j-SIGPLAN = "ACM SIG{\-}PLAN Notices"} @String{j-SOFTWARE-MAG = "Software magazine"} @String{j-SPE = "Soft{\-}ware\emdash Prac{\-}tice and Experience"} @String{j-SUNWORLD = "SunWorld"} @String{j-SYS-ADMIN = "Sys Admin: The Journal for UNIX Systems Administrators"} @String{j-TECS = "ACM Transactions on Embedded Computing Systems"} @String{j-TISSEC = "ACM Transactions on Information and System Security"} @String{j-TOCS = "ACM Transactions on Computer Systems"} @String{j-TODS = "ACM Transactions on Database Systems"} @String{j-TOIS = "ACM Transactions on Information Systems"} @String{j-TOMS = "ACM Transactions on Mathematical Software"} @String{j-TOPLAS = "ACM Transactions on Programming Languages and Systems"} @String{j-TOS = "ACM Transactions on Storage"} @String{j-TOSEM = "ACM Transactions on Software Engineering and Methodology"} @String{j-UNIX-DEVELOPER = "UNIX Developer"} @String{j-UNIX-REVIEW = "UNIX review"} @String{j-UNIX-WORLD = "UNIX/world"} @String{j-VAX-PROF = "The VAX professional"} @String{j-XJ = "{The X Journal}"} @String{j-XR = "{The X Resource}"} %%% ==================================================================== %%% Publishers and their addresses: @String{pub-ACADEMIC = "Academic Press"} @String{pub-ACADEMIC:adr = "New York, NY, USA"} @String{pub-ACM = "ACM Press"} @String{pub-ACM:adr = "New York, NY, USA"} @String{pub-AFIPS = "AFIPS Press"} @String{pub-AFIPS:adr = "Montvale, NJ, USA"} @String{pub-ANSI = "American National Standards Institute"} @String{pub-ANSI:adr = "1430 Broadway, New York, NY 10018, USA"} @String{pub-AP-PROFESSIONAL = "AP Professional"} @String{pub-AP-PROFESSIONAL:adr = "Boston, MA, USA"} @String{pub-APRESS = "Apress"} @String{pub-APRESS:adr = "Berkeley, CA, USA"} @String{pub-ARTECH = "Artech House Inc."} @String{pub-ARTECH:adr = "Boston, MA, USA"} @String{pub-AVON = "Avon Books"} @String{pub-AVON:adr = "New York, NY, USA"} @String{pub-AW = "Ad{\-d}i{\-s}on-Wes{\-l}ey"} @String{pub-AW:adr = "Reading, MA, USA"} @String{pub-AW-LONGMAN = "Ad{\-d}i{\-s}on-Wes{\-l}ey Longman"} @String{pub-AW-LONGMAN:adr = "Harlow, Essex CM20 2JE, England"} @String{pub-AW-MUNCHEN = "Ad{\-d}i{\-s}on-Wes{\-l}ey"} @String{pub-AW-MUNCHEN:adr = "M{\"u}nchen, Germany"} @String{pub-AWDP = "Ad{\-d}i{\-s}on-Wes{\-l}ey Developers Press"} @String{pub-AWDP:adr = "Reading, MA, USA"} @String{pub-BANTAM = "Bantam Books"} @String{pub-BANTAM:adr = "New York, NY, USA"} @String{pub-BENCUM = "Benjamin/Cummings Pub. Co."} @String{pub-BENCUM:adr = "Redwood City, CA, USA"} @String{pub-BP = "Boole Press"} @String{pub-BP:adr = "Dublin, Ireland"} @String{pub-BRADY = "Robert J. Brady Co."} @String{pub-BRADY:adr = "Bowie, MD 20715, USA"} @String{pub-CBM = "CBM Books"} @String{pub-CBM:adr = "A Division of Cardinal Business Media Inc., 101 Witmer Road, Horsham, PA 19044, USA"} @String{pub-CHAPMAN-HALL-CRC = "Chapman and Hall/CRC"} @String{pub-CHAPMAN-HALL-CRC:adr = "Boca Raton, FL, USA"} @String{pub-CMP-BOOKS = "CMP Books"} @String{pub-CMP-BOOKS:adr = "6600 Silacci Way, Gilroy, CA 95020, USA"} @String{pub-CORIOLIS = "Coriolis Group Books"} @String{pub-CORIOLIS:adr = "Scottsdale, AZ, USA"} @String{pub-CRC = "CRC Press"} @String{pub-CRC:adr = "2000 N.W. Corporate Blvd., Boca Raton, FL 33431-9868, USA"} @String{pub-DOUBLEDAY = "Doubleday"} @String{pub-DOUBLEDAY:adr = "New York, NY, USA"} @String{pub-DP = "Digital Press"} @String{pub-DP:adr = "12 Crosby Drive, Bedford, MA 01730, USA"} @String{pub-DPUNKT-VERLAG = "dpunkt-Verlag"} @String{pub-DPUNKT-VERLAG:adr = "Heidelberg, Germany"} @String{pub-ELSEVIER-MORGAN-KAUFMANN = "Elsevier Morgan Kaufmann"} @String{pub-ELSEVIER-MORGAN-KAUFMANN:adr = "Amsterdam, The Netherlands"} @String{pub-ENH = "Elsevier North-Holland, Inc."} @String{pub-ENH:adr = "New York, NY, USA"} @String{pub-EUUG = "European UNIX Users Group"} @String{pub-EUUG:adr = "Buntingford, Herts, UK"} @String{pub-EYROLLES = "Eyrolles"} @String{pub-EYROLLES:adr = "Paris, France"} @String{pub-FSF = "{Free Software Foundation, Inc.}"} @String{pub-FSF:adr = "51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA, Tel: (617) 876-3296"} @String{pub-GNU-PRESS = "GNU Press"} @String{pub-GNU-PRESS:adr = "Boston, MA, USA"} @String{pub-HANSER = "Carl Hanser"} @String{pub-HANSER:adr = "M{\"u}nchen, Germany"} @String{pub-HAYDEN = "Hayden Books"} @String{pub-HAYDEN:adr = "4300 West 62nd Street, Indianapolis, IN 46268, USA"} @String{pub-HBJ = "Harcourt Brace Jovanovich"} @String{pub-HBJ:adr = "Boston, MA, USA"} @String{pub-HRW = "Holt, Rinehart, and Winston"} @String{pub-HRW:adr = "New York, NY, USA"} @String{pub-HUNGRY-MINDS = "Hungry Minds"} @String{pub-HUNGRY-MINDS:adr = "909 Third Avenue, New York, NY 10022, USA"} @String{pub-HWS = "Howard W. Sams"} @String{pub-HWS:adr = "Indianapolis, IN 46268, USA"} @String{pub-IBM = "IBM Corporation"} @String{pub-IBM:adr = "San Jose, CA, USA"} @String{pub-IBM-REDBOOKS = "IBM Redbooks"} @String{pub-IBM-REDBOOKS:adr = "11400 Burnet Road, Austin, TX 78758-3493, USA"} @String{pub-IDG = "IDG Books"} @String{pub-IDG:adr = "San Mateo, CA, USA"} @String{pub-IDG-WORLDWIDE = "I D G Books Worldwide"} @String{pub-IDG-WORLDWIDE:adr = "Indianapolis, IN, USA"} @String{pub-IEEE = "IEEE Computer Society Press"} @String{pub-IEEE:adr = "1109 Spring Street, Suite 300, Silver Spring, MD 20910, USA"} @String{pub-IOS = "IOS Press"} @String{pub-IOS:adr = "Amsterdam, The Netherlands"} @String{pub-ISO = "International Organization for Standardization"} @String{pub-ISO:adr = "Geneva, Switzerland"} @String{pub-ITCP = "International Thomson Computer Press"} @String{pub-ITCP:adr = "20 Park Plaza Suite 1001, Boston, MA 02116 USA"} @String{pub-LINUX-JOURNAL-PRESS = "Linux Journal Press"} @String{pub-LINUX-JOURNAL-PRESS:adr = "San Francisco, CA, USA"} @String{pub-MACMILLAN = "Macmillan Publishing Co., Inc."} @String{pub-MACMILLAN:adr = "New York, NY, USA"} @String{pub-MACMILLAN-COMPUTER = "Macmillan Computer Publishing"} @String{pub-MACMILLAN-COMPUTER:adr = "Indianapolis, IN, USA"} @String{pub-MANNING = "Manning Publications"} @String{pub-MANNING:adr = "Greenwich, CT, USA"} @String{pub-MCGRAW-HILL = "Mc{\-}Graw-Hill"} @String{pub-MCGRAW-HILL:adr = "New York, NY, USA"} @String{pub-MICROSOFT = "Microsoft Press"} @String{pub-MICROSOFT:adr = "Bellevue, WA, USA"} @String{pub-MIS = "MIS Press"} @String{pub-MIS:adr = "P. O. Box 5277, Portland, OR 97208-5277, USA, Tel: (503) 282-5215"} @String{pub-MIT = "MIT Press"} @String{pub-MIT:adr = "Cambridge, MA, USA"} @String{pub-MORGAN-KAUFMANN = "Morgan Kaufmann Publishers"} @String{pub-MORGAN-KAUFMANN:adr = "Los Altos, CA 94022, USA"} @String{pub-MT = "M\&T Books"} @String{pub-MT:adr = "M\&T Publishing, Inc., 501 Galveston Drive, Redwood City, CA 94063, USA"} @String{pub-NEW-RIDERS = "New Riders Publishing"} @String{pub-NEW-RIDERS:adr = "Carmel, IN, USA"} @String{pub-NEWNES-PRESS = "Newnes Press"} @String{pub-NEWNES-PRESS:adr = "Amsterdam, The Netherlands"} @String{pub-NIST = "National Institute for Standards and Technology"} @String{pub-NIST:adr = "Gaithersburg, MD, USA"} @String{pub-NO-STARCH = "No Starch Press"} @String{pub-NO-STARCH:adr = "San Francisco, CA, USA"} @String{pub-NOVELL = "Novell Press, Sybex"} @String{pub-NOVELL:adr = "San Jose, CA, USA"} @String{pub-NTIS = "National Technical Information Service"} @String{pub-NTIS:adr = "Washington, DC, USA"} @String{pub-ONWORD = "OnWord Press"} @String{pub-ONWORD:adr = "Santa Fe, NM, USA"} @String{pub-ORA = "O'Reilly \& {Associates, Inc.}"} @String{pub-ORA:adr = "981 Chestnut Street, Newton, MA 02164, USA"} @String{pub-ORA-MEDIA = "O'Reilly Media, Inc."} @String{pub-ORA-MEDIA:adr = "1005 Gravenstein Highway North, Sebastopol, CA 95472, USA"} @String{pub-ORCP = "O'Reilly Community Press"} @String{pub-ORCP:adr = "Sebastopol, CA, USA"} @String{pub-OSBORNE-MCGRAW-HILL = "Osborne\slash Mc{\-}Graw-Hill"} @String{pub-OSBORNE-MCGRAW-HILL:adr = "Berkeley, CA, USA"} @String{pub-PARAGLYPH = "Paraglyph Press, Inc."} @String{pub-PARAGLYPH:adr = "Scottsdale, AZ, USA"} @String{pub-PEACHPIT = "Peachpit Press, Inc."} @String{pub-PEACHPIT:adr = "1085 Keith Avenue, Berkeley, CA 94708, USA"} @String{pub-PEARSON-PH = "Pearson Pren{\-}tice Hall"} @String{pub-PEARSON-PH:adr = "Upper Saddle River, NJ 07458, USA"} @String{pub-PERSEUS = "Perseus Publishers"} @String{pub-PERSEUS:adr = "Cambridge, MA, USA"} @String{pub-PH = "Pren{\-}tice-Hall"} @String{pub-PH:adr = "Upper Saddle River, NJ 07458, USA"} @String{pub-PHPTR = "Pren{\-}tice-Hall PTR"} @String{pub-PHPTR:adr = "Upper Saddle River, NJ 07458, USA"} @String{pub-POCKET = "Pocket Books"} @String{pub-POCKET:adr = "New York, NY, USA"} @String{pub-POGUE-ORA = "Pogue Press/O'Reilly and Associates"} @String{pub-POGUE-ORA:adr = "Sebastopol, CA, USA"} @String{pub-POGUE-PRESS-OREILLY = "Pogue Press/O'Reilly"} @String{pub-POGUE-PRESS-OREILLY:adr = "Sebastopol, CA, USA; Beijing, China"} @String{pub-PPB = "Professional Press Books"} @String{pub-PPB:adr = "101 Witmer Road, Horsham, PA 19044, USA"} @String{pub-PRIMA = "Prima Publishing"} @String{pub-PRIMA:adr = "Roseville, CA, USA"} @String{pub-PRIME-TIME-FREEWARE = "Prime Time Freeware"} @String{pub-PRIME-TIME-FREEWARE:adr = "370 Altair Way, Suite 150, Sunnyvale, CA, USA"} @String{pub-PUP = "Princeton University Press"} @String{pub-PUP:adr = "Princeton, NJ, USA"} @String{pub-QED = "QED Information Sciences, Inc."} @String{pub-QED:adr = "P. O. Box 82-181, Wellesley, MA 02181, USA"} @String{pub-QUE = "Que Corporation"} @String{pub-QUE:adr = "Indianapolis, IN, USA"} @String{pub-R-D-BOOKS = "R\&D Books"} @String{pub-R-D-BOOKS:adr = "Lawrence, KS, USA; Berkeley, CA, USA"} @String{pub-RED-HAT = "Red Hat Software, Inc."} @String{pub-RED-HAT:adr = "Westport, CT, USA"} @String{pub-SAMS = "SAMS Publishing"} @String{pub-SAMS:adr = "Indianapolis, IN, USA"} @String{pub-SANS = "The SANS Institute"} @String{pub-SANS:adr = "Bethesda, MD, USA"} @String{pub-SF = "Scott, Foresman and Company"} @String{pub-SF:adr = "Glenview, IL, USA"} @String{pub-SILICON = "Silicon Press"} @String{pub-SILICON:adr = "25 Beverly Road, Summit, NJ 07901, USA"} @String{pub-SS = "Simon and Schuster"} @String{pub-SS:adr = "New York, NY, USA"} @String{pub-SSC = "Specialized Systems Consultants"} @String{pub-SSC:adr = "P.O. Box 55549, Seattle, WA 98155"} @String{pub-SUN = "Sun Microsystems"} @String{pub-SUN:adr = "2550 Garcia Avenue, Mountain View, CA 94043, USA"} @String{pub-SUNSOFT = "SunSoft Press"} @String{pub-SUNSOFT:adr = "Englewood Cliffs, NJ, USA"} @String{pub-SUN-MICROSYSTEMS-PRESS = "Sun Microsystems Press"} @String{pub-SUN-MICROSYSTEMS-PRESS:adr = "Palo Alto, CA, USA"} @String{pub-SV = "Spring{\-}er-Ver{\-}lag"} @String{pub-SV:adr = "Berlin, Germany~/ Heidelberg, Germany~/ London, UK~/ etc."} @String{pub-SYBEX = "Sybex"} @String{pub-SYBEX:adr = "2021 Challenger Driver, Suite 100, Alameda, CA 94501, USA"} @String{pub-SYNGRESS:adr = "Rockland, MA, USA"} @String{pub-SYNGRESS = "Syngress Publishing, Inc."} @String{pub-TRILITHON = "Trilithon Press"} @String{pub-TRILITHON:adr = "Los Altos, CA, USA"} @String{pub-UNICODE = "The Unicode Consortium"} @String{pub-UNICODE-SAN-JOSE:adr = "P.O. Box 700519, San Jose, CA 95170-0519, USA, Phone: +1-408-777-5870, Fax: +1-408-777-5082, E-mail: \path=unicode-inc@unicode.org="} @String{pub-UNIX = "UNIX Press"} @String{pub-UNIX:adr = "Summit, NJ, USA"} @String{pub-USENIX = "USENIX Association"} @String{pub-USENIX:adr = "Berkeley, CA, USA"} @String{pub-USGPO = "United States Government Printing Office"} @String{pub-USGPO:adr = "Washington, DC, USA"} @String{pub-VENTANA = "Ventana Press"} @String{pub-VENTANA:adr = "Chapel Hill, NC, USA"} @String{pub-VNR = "Van Nostrand Reinhold"} @String{pub-VNR:adr = "New York, NY, USA"} @String{pub-VOGEL = "Vogel-Verlag"} @String{pub-VOGEL:adr = "Postfach 67 40, D-8700 W{\"u}rzburg, Germany"} @String{pub-WAITE-GROUP = "Waite Group Press"} @String{pub-WAITE-GROUP:adr = "Corte Madera, CA, USA"} @String{pub-WALNUT-CREEK-CDROM = "Walnut Creek CDROM"} @String{pub-WALNUT-CREEK-CDROM:adr = "Walnut Creek, CA, USA"} @String{pub-WILEY = "Wiley"} @String{pub-WILEY:adr = "New York, NY, USA"} @String{pub-WILEY-INTERSCIENCE = "Wiley-In{\-}ter{\-}sci{\-}ence"} @String{pub-WILEY-INTERSCIENCE:adr = "New York, NY, USA"} @String{pub-WORDWARE = "Wordware Publishing"} @String{pub-WORDWARE:adr = "Plano, TX, USA"} @String{pub-WORLD-SCI = "World Scientific Publishing Co. Pte. Ltd."} @String{pub-WORLD-SCI:adr = "P. O. Box 128, Farrer Road, Singapore 9128"} @String{pub-WROX = "Wrox Press"} @String{pub-WROX:adr = "Chicago, IL, USA"} @String{pub-YGGDRASIL = "Yggdrasil Computing, Inc."} @String{pub-YGGDRASIL:adr = "Berkeley, CA, USA"} @String{pub-YOURDON = "Yourdon Press"} @String{pub-YOURDON:adr = "Englewood Cliffs, NJ 07632, USA"} @String{pub-ZIFF-DAVIS = "Ziff-Davis Press"} @String{pub-ZIFF-DAVIS:adr = "Emeryville, CA, USA"} %%% ==================================================================== %%% Series abbreviations: @String{ser-LNCS = "Lecture Notes in Computer Science"} %%% ==================================================================== %%% Bibliography entries. @TechReport{Johnson:1973:PLB, author = "S. C. Johnson and B. W. Kernighan", title = "The Programming Language {B}", type = "Technical report", number = "8", institution = "Bell Laboratories,", address = "Murray Hill, NJ, USA", year = "1973", bibdate = "Thu Nov 14 06:48:00 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Ritchie:1973:UTS, author = "Dennis M. Ritchie and Ken Thompson", title = "The {UNIX} time-sharing system", journal = j-OPER-SYS-REV, volume = "7", number = "4", pages = "27--27", month = oct, year = "1973", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:49 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Ritchie:1974:UTS, author = "Dennis W. Ritchie and Ken Thompson", title = "The {UNIX} Time-Sharing System", journal = j-CACM, volume = "17", number = "7", pages = "365--375", month = jul, year = "1974", CODEN = "CACMA2", ISSN = "0001-0782 (print), 1557-7317 (electronic)", bibdate = "Mon Oct 4 11:57:23 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Chesson:1975:NUS, author = "Gregory L. Chesson", title = "The network {Unix} system", journal = j-OPER-SYS-REV, volume = "9", number = "5", pages = "60--66", month = nov, year = "1975", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:57 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Kernighan:1975:STM, author = "Brian W. Kernighan and Lorinda L. Cherry", title = "A System for Typesetting Mathematics", journal = j-CACM, volume = "18", number = "3", pages = "151--156", month = mar, year = "1975", CODEN = "CACMA2", ISSN = "0001-0782 (print), 1557-7317 (electronic)", bibdate = "Mon Jan 22 06:54:33 MST 2001", bibsource = "Compendex database; ftp://ftp.ira.uka.de/pub/bibliography/Distributed/QLD/1975.bib; http://dblp.uni-trier.de/db/journals/cacm/cacm18.html#KernighanC75; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This paper describes the design and implementation of a system for typesetting mathematics.\par The language has been designed to be easy to learn and to use by people (for example, secretaries and mathematical typists) who know neither mathematics nor typesetting. Experience indicates that the language can be learned in an hour or so, for it has few rules and fewer exceptions. For typical expressions, the size and font changes, positioning, line drawing, and the like necessary to print according to mathematical conventions are all done automatically. For example, the input {\tt sum from i=0 to infinity x sub i=pi over 2} produces $\sum_{i=0}^\infty x_i = \pi/2$. The syntax of the language is specified by a small context-free grammar; a compiler-compiler is used to make a compiler that translates this language into typesetting commands. Output maybe produced on either a phototypesetter or on a terminal with forward and reverse half-line motions. The system interfaces directly with text formatting programs, so mixtures of text and mathematics may be handled simply. This paper was typeset by the authors using the system described.", acknowledgement = ack-nhfb, classcodes = "C6130 (Data handling techniques); C6140D (High level languages); C7230 (Publishing and reproduction); C7310 (Mathematics computing)", classification = "723; 745", corpsource = "Bell Labs., Holmdel, NJ, USA", country = "USA", date = "15/05/84", descriptors = "Design; realization; command language; graphics language; text processing; graphics; interactive mode;", enum = "1645", journalabr = "Commun ACM", keywords = "compiler-compiler; computer controlled typesetting; computer graphics; computer programming languages; graphics; mathematics; oriented languages; photocomposition; phototypesetter; printing; problem; syntax; terminal; text formatting programs; text processing.; typesetting; typesetting mathematics", language = "English", oldlabel = "KernighanC75", references = "7", treatment = "A Application; P Practical", XMLdata = "ftp://ftp.informatik.uni-trier.de/pub/users/Ley/bib/records.tar.gz#journals/cacm/KernighanC75", xxpages = "151--157", } @Article{Bunt:1976:STO, author = "Rick B. Bunt", title = "Scheduling techniques for operating systems", journal = j-COMPUTER, volume = "9", number = "10", pages = "10--18", month = oct, year = "1976", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Thu Dec 12 07:20:54 MST 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "In an attempt to provide a common framework for the description of diverse schedulers, a general model is proposed. A number of classical scheduling techniques are described using this model and their characteristics are assessed. The scheduling methods of a number of popular operating systems are described. The IBM systems' described (OS\slash MFT, OS\slash MVT, OS\slash VS2) are all primarily oriented to an environment of batch submissions. The MULTICS system and the UNIX system, offering different types of service, have different performance objectives and hence employ a different scheduling approach to meet these objectives.", acknowledgement = ack-nhfb, classification = "723", journalabr = "Computer", keywords = "computer operating systems", } @TechReport{Lesk:1976:CTT, author = "M. E. Lesk and B. W. Kernighan", title = "Computer Typesetting of Technical Journals on {Unix}", type = "Technical report", number = "44", institution = "Bell Laboratories", address = "Murray Hill, NJ, USA", month = jul, year = "1976", bibdate = "Wed Aug 20 18:05:59 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Stonebraker:1976:DII, author = "Michael Stonebraker and Eugene Wong and Peter Kreps and Gerald Held", title = "The Design and Implementation of {INGRES}", journal = j-TODS, volume = "1", number = "3", pages = "189--222", month = sep, year = "1976", CODEN = "ATDSD3", ISSN = "0362-5915 (print), 1557-4644 (electronic)", bibdate = "Sat Apr 14 10:34:48 MDT 2001", bibsource = "Database/Graefe.bib; Database/Wiederhold.bib; http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/unix.bib; Parallel/Multi.bib", note = "Reprinted in \cite{Stonebraker:1988:RDS}. Also published in/as: UCB, Elec. Res. Lab, Memo No. ERL-M577, Jan. 1976.", URL = "http://www.acm.org/pubs/articles/journals/tods/1976-1-3/p189-stonebraker/p189-stonebraker.pdf; http://www.acm.org/pubs/citations/journals/tods/1976-1-3/p189-stonebraker/", abstract = "The currently operational (March 1976) version of the INGRES database management system is described. This multiuser system gives a relational view of data, supports two high level nonprocedural data sublanguages, and runs as a collection of user processes on top of the UNIX operating system for Digital Equipment Corporation PDP 11/40, 11/45, and 11/70 computers. Emphasis is on the design decisions and tradeoffs related to (1) structuring the system into processes, (2) embedding one command language in a general purpose programming language, (3) the algorithms implemented to process interactions, (4) the access methods implemented, (5) the concurrency and recovery control currently provided, and (6) the data structures used for system catalogs and the role of the database administrator.\par Also discussed are (1) support for integrity constraints (which is only partly operational), (2) the not yet supported features concerning views and protection, and (3) future plans concerning the system.", acknowledgement = ack-nhfb, annote = "Describes implementation of INGRES, a non-distributed relational database system. This paper is useful for understanding the distributed INGRES paper.", keywords = "concurrency; data integrity; data organization; data sublanguage; database optimization; nonprocedural language; protection; QUEL EQUEL query modification process structure Halloween problem TODS; query decomposition; query language; relational database", subject = "Information Systems --- Database Management --- Systems (H.2.4): {\bf Relational databases}; Information Systems --- Database Management --- Languages (H.2.3); Information Systems --- Database Management --- General (H.2.0): {\bf Security, integrity, and protection**}", } @InProceedings{Lesk:1977:CTT, author = "M. E. Lesk and B. W. Kernighan", editor = "Robert R. Korfhage and Portia Isaacson", booktitle = "AFIPS conference proceedings 1977: National computer conference, June 13--16, 1977 Dallas, Texas", title = "Computer Typesetting of Technical Journals on {Unix}", volume = "46", publisher = pub-AFIPS, address = pub-AFIPS:adr, pages = "879--888", year = "1977", bibdate = "Thu Nov 14 06:42:42 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Bourne:1978:UTS, author = "S. R. Bourne", title = "{UNIX} Time-Sharing System: The {UNIX} Shell", journal = j-BELL-SYST-TECH-J, volume = "57", number = "6", pages = "1971--1990", month = jul # "\slash " # aug, year = "1978", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1978/BSTJ.1978.5706-2.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol57/bstj57-6-1971.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Article{Cohen:1978:UTS, author = "H. Cohen and J. C. {Kaufeld, Jr.}", title = "{UNIX} Time-Sharing System: The Network Operations Center System", journal = j-BELL-SYST-TECH-J, volume = "57", number = "6", pages = "2289--2304", month = jul # "\slash " # aug, year = "1978", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1978/BSTJ.1978.5706-2.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol57/bstj57-6-2289.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Article{Crowley:1978:UTS, author = "T. H. Crowley", title = "{UNIX} Time-Sharing System: Preface", journal = j-BELL-SYST-TECH-J, volume = "57", number = "6", pages = "1897--1898", month = jul # "\slash " # aug, year = "1978", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1978/BSTJ.1978.5706-2.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol57/bstj57-6-1897.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Article{Dolotta:1978:UTS, author = "T. A. Dolotta and R. C. Haight and J. R. Mashey", title = "{UNIX} Time-Sharing System: The {Programmer's Workbench}", journal = j-BELL-SYST-TECH-J, volume = "57", number = "6", pages = "2177--2200", month = jul # "\slash " # aug, year = "1978", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1978/BSTJ.1978.5706-2.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol57/bstj57-6-2177.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Article{Fraser:1978:UTS, author = "A. G. Fraser", title = "{UNIX} Time-Sharing System: Circuit Design Aids", journal = j-BELL-SYST-TECH-J, volume = "57", number = "6", pages = "2233--2249", month = jul # "\slash " # aug, year = "1978", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1978/BSTJ.1978.5706-2.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol57/bstj57-6-2233.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Article{Johnson:1978:UTSa, author = "S. C. Johnson and D. M. Ritchie", title = "{UNIX} Time-Sharing System: Portability of {C} Programs and the {UNIX} System", journal = j-BELL-SYST-TECH-J, volume = "57", number = "6", pages = "2021--2048", month = jul # "\slash " # aug, year = "1978", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1978/BSTJ.1978.5706-2.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol57/bstj57-6-2021.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Article{Johnson:1978:UTSb, author = "S. C. Johnson and M. E. Lesk", title = "{UNIX} Time-Sharing System: Language Development Tools", journal = j-BELL-SYST-TECH-J, volume = "57", number = "6", pages = "2155--2175", month = jul # "\slash " # aug, year = "1978", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1978/BSTJ.1978.5706-2.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol57/bstj57-6-2155.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Book{Kernighan:1978:CPL, author = "Brian W. Kernighan and Dennis M. Ritchie", title = "The {C} Programming Language", publisher = pub-PH, address = pub-PH:adr, pages = "x + 228", year = "1978", ISBN = "0-13-110163-3", ISBN-13 = "978-0-13-110163-0", LCCN = "QA76.73 .C15 K47 1978", bibdate = "Wed Dec 15 10:36:07 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", } @Article{Kernighan:1978:UTS, author = "B. W. Kernighan and M. E. Lesk and J. F. {Ossanna, Jr.}", title = "{UNIX} Time-Sharing System: Document Preparation", journal = j-BELL-SYST-TECH-J, volume = "57", number = "6", pages = "2115--2135", month = jul # "\slash " # aug, year = "1978", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1978/BSTJ.1978.5706-2.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol57/bstj57-6-2115.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Article{Luderer:1978:UTS, author = "G. W. R. Luderer and J. F. Maranzano and B. A. Tague", title = "{UNIX} Time-Sharing System: The {UNIX} Operating System as a Base for Applications", journal = j-BELL-SYST-TECH-J, volume = "57", number = "6", pages = "2201--2207", month = jul # "\slash " # aug, year = "1978", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1978/BSTJ.1978.5706-2.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol57/bstj57-6-2201.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Article{Lycklama:1978:UTSa, author = "H. Lycklama and D. L. Bayer", title = "{UNIX} Time-Sharing System: The {MERT} Operating System", journal = j-BELL-SYST-TECH-J, volume = "57", number = "6", pages = "2049--2086", month = jul # "\slash " # aug, year = "1978", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1978/BSTJ.1978.5706-2.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol57/bstj57-6-2049.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Article{Lycklama:1978:UTSb, author = "H. Lycklama", title = "{UNIX} Time-Sharing System: {UNIX} on a Microprocessor", journal = j-BELL-SYST-TECH-J, volume = "57", number = "6", pages = "2087--2101", month = jul # "\slash " # aug, year = "1978", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1978/BSTJ.1978.5706-2.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol57/bstj57-6-2087.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Article{Lycklama:1978:UTSc, author = "H. Lycklama and C. Christensen", title = "{UNIX} Time-Sharing System: {A} Minicomputer Satellite Processor System", journal = j-BELL-SYST-TECH-J, volume = "57", number = "6", pages = "2103--2113", month = jul # "\slash " # aug, year = "1978", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1978/BSTJ.1978.5706-2.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol57/bstj57-6-2103.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Article{McIlroy:1978:UTS, author = "M. D. McIlroy and E. N. Pinson and B. A. Tague", title = "{UNIX} Time-Sharing System: Forward", journal = j-BELL-SYST-TECH-J, volume = "57", number = "6", pages = "1899--1904", month = jul # "\slash " # aug, year = "1978", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1978/BSTJ.1978.5706-2.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol57/bstj57-6-1899.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Article{McMahon:1978:UTS, author = "L. E. McMahon and L. L. Cherry and R. Morris", title = "{UNIX} Time-Sharing System: Statistical Text Processing", journal = j-BELL-SYST-TECH-J, volume = "57", number = "6", pages = "2137--2154", month = jul # "\slash " # aug, year = "1978", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1978/BSTJ.1978.5706-2.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol57/bstj57-6-2137.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Article{Miller:1978:UPO, author = "Richard Miller", title = "{UNIX}: a portable operating system?", journal = j-OPER-SYS-REV, volume = "12", number = "3", pages = "32--37", month = jul, year = "1978", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:44 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Nagelberg:1978:UTS, author = "E. R. Nagelberg and M. A. Pilla", title = "{UNIX} Time-Sharing System: {RBCS\slash RCMAS} --- Converting to the {MERT} Operating System", journal = j-BELL-SYST-TECH-J, volume = "57", number = "6", pages = "2275--2287", month = jul # "\slash " # aug, year = "1978", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1978/BSTJ.1978.5706-2.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol57/bstj57-6-2275.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Article{Pekarich:1978:UTS, author = "S. P. Pekarich", title = "{UNIX} Time-Sharing System: No. 4 {ESS} Diagnostic Environment", journal = j-BELL-SYST-TECH-J, volume = "57", number = "6", pages = "2265--2274", month = jul # "\slash " # aug, year = "1978", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1978/BSTJ.1978.5706-2.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol57/bstj57-6-2265.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Article{Ritchie:1978:UTSa, author = "D. M. Ritchie and K. Thompson", title = "The {UNIX} Time-Sharing System", journal = j-BELL-SYST-TECH-J, volume = "57", number = "6", pages = "1905--1929", month = jul # "\slash " # aug, year = "1978", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1978/BSTJ.1978.5706-2.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol57/bstj57-6-1905.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Article{Ritchie:1978:UTSb, author = "D. M. Ritchie", title = "{UNIX} Time-Sharing System: {A} Retrospective", journal = j-BELL-SYST-TECH-J, volume = "57", number = "6", pages = "1947--1969", month = jul # "\slash " # aug, year = "1978", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1978/BSTJ.1978.5706-2.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol57/bstj57-6-1947.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Article{Ritchie:1978:UTSc, author = "D. M. Ritchie and S. C. Johnson and M. E. Lesk and B. W. Kernighan", title = "{UNIX} Time-Sharing System: The {C} Programming Language", journal = j-BELL-SYST-TECH-J, volume = "57", number = "6", pages = "1991--2019", month = jul # "\slash " # aug, year = "1978", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1978/BSTJ.1978.5706-2.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol57/bstj57-6-1991.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Article{Rose:1978:PEU, author = "Greg Rose", title = "Performance evaluation under {Unix} and a study of {PDP-11} instruction usage", journal = j-OPER-SYS-REV, volume = "12", number = "3", pages = "38--45", month = jul, year = "1978", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:44 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Rovegno:1978:UTS, author = "H. D. Rovegno", title = "{UNIX} Time-Sharing System: {A} Support Environment for {MAC-8} Systems", journal = j-BELL-SYST-TECH-J, volume = "57", number = "6", pages = "2251--2263", month = jul # "\slash " # aug, year = "1978", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1978/BSTJ.1978.5706-2.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol57/bstj57-6-2251.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Article{Thompson:1978:UTS, author = "K. Thompson", title = "{UNIX} Time-Sharing System: {UNIX} Implementation", journal = j-BELL-SYST-TECH-J, volume = "57", number = "6", pages = "1931--1946", month = jul # "\slash " # aug, year = "1978", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1978/BSTJ.1978.5706-2.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol57/bstj57-6-1931.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Article{Wonsiewicz:1978:UTS, author = "B. C. Wonsiewicz and A. R. Storm and J. D. Sieber", title = "{UNIX} Time-Sharing System: Microcomputer Control of Apparatus, Machinery, and Experiments", journal = j-BELL-SYST-TECH-J, volume = "57", number = "6", pages = "2209--2232", month = jul # "\slash " # aug, year = "1978", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1978/BSTJ.1978.5706-2.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol57/bstj57-6-2209.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @InCollection{Johnson:1979:YYA, author = "Steven C. Johnson", booktitle = "{UNIX} Programmer's Manual", title = "Yacc: Yet Another Compiler Compiler", volume = "2", publisher = pub-HRW, address = pub-HRW:adr, pages = "353--387", year = "1979", bibdate = "Mon Oct 4 11:55:42 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "AT\&T Bell Laboratories Technical Report July 31, 1978.", acknowledgement = ack-nhfb, } @Article{Kernighan:1979:UPE, author = "Brian W. Kernighan and John R. Mashey", title = "The {UNIX} Programming Environment", journal = j-SPE, volume = "9", number = "1", pages = "1--15", month = jan, year = "1979", CODEN = "SPEXBL", ISSN = "0038-0644 (print), 1097-024X (electronic)", bibdate = "Sat May 31 13:36:16 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Also in {\em IEEE Computer}, Vol. 14 (4), April 1981.", acknowledgement = ack-nhfb, xxauthor = "B. W. Kernighan", } @InCollection{Lesk:1979:LLA, author = "Michael E. Lesk and Eric Schmidt", booktitle = "{UNIX} Programmer's Manual", title = "Lex\emdash {A} Lexical Analyzer Generator", volume = "2", publisher = pub-HRW, address = pub-HRW:adr, pages = "388--400", year = "1979", bibdate = "Mon Oct 4 11:56:17 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "AT\&T Bell Laboratories Technical Report in 1975.", acknowledgement = ack-nhfb, } @InCollection{Ritchie:1979:UTS, author = "Dennis W. Ritchie and Ken Thompson", booktitle = "{UNIX} Programmer's Manual", title = "The {UNIX} Time-Sharing System", volume = "2", publisher = pub-HRW, address = pub-HRW:adr, pages = "20--35", year = "1979", ISBN = "0-03-061743-X", ISBN-13 = "978-0-03-061743-0", LCCN = "QA76.8.U65 B44 1983", bibdate = "Mon Oct 4 11:57:28 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Anderson:1980:TSL, author = "Bruce Anderson", title = "Type syntax in the language '{C}', an object lesson in syntactic innovation", journal = j-SIGPLAN, volume = "15", number = "3", pages = "21--27", month = mar, year = "1980", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sat Apr 25 11:46:37 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6140D (High level languages)", corpsource = "Man-Machine Lab., Univ. of Essex, Colchester, UK", keywords = "C; compilers; formatter; Interdata 8/32; operating systems; PDP 11; procedure oriented languages; RSX 11; RT 11; syntax; syntax analyzers; systems implementation language; type structure; Unix; user errors; VAX", treatment = "P Practical", } @Article{Ellis:1980:LS, author = "John R. Ellis", title = "A {LISP} shell", journal = j-SIGPLAN, volume = "15", number = "5", pages = "24--34", month = may, year = "1980", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sat Apr 25 11:46:37 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6140D (High level languages)", corpsource = "Computer Sci. Dept., Yale Univ., New Haven, CT, USA", keywords = "INTERLISP; LISP; shell system; UNIX system", treatment = "P Practical", } @Article{Ferrin:1980:ICG, author = "T. E. Ferrin and R. Langridge", title = "Interactive computer graphics with the {Unix} time-sharing system", journal = j-COMP-GRAPHICS, volume = "13", number = "4", pages = "321--331", month = feb, year = "1980", CODEN = "CGRADI, CPGPBZ", ISSN = "0097-8930", bibsource = "Graphics/imager/imager.80.bib; http://www.math.utah.edu/pub/tex/bib/unix.bib", keywords = "graphics systems Unix operating system", } @InProceedings{Ritchie:1980:EUT, author = "Dennis W. Ritchie", title = "The Evolution of the {Unix} Time-sharing System", crossref = "Tobias:1980:LDP", pages = "25--35", year = "1980", bibdate = "Thu Nov 14 06:26:08 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://cm.bell-labs.com/cm/cs/who/dmr/hist.html", abstract = "This paper presents a brief history of the early development of the UNIX{\TM} operating system. It concentrates on the evolution of the file system, the process-control mechanism, and the idea of pipelined commands. Some attention is paid to social conditions during the development of the system.", acknowledgement = ack-nhfb, } @Article{Sherman:1980:ACG, author = "Mark Sherman and Andy Hisgen and David Alex Lamb and Jonathan Rosenberg", title = "An {Ada} code generator for {VAX 11\slash 780} with {Unix}", journal = j-SIGPLAN, volume = "15", number = "11", pages = "91--100", month = nov, year = "1980", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:14:31 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6140D (High level languages); C6150C (Compilers, interpreters and other processors); C6150J (Operating interpreters and other processors)", conflocation = "Boston, MA, USA; 9-11 Dec. 1980", conftitle = "Proceedings of the ACM-SIGPLAN Symposium on the Ada Programming Language", corpsource = "Dept. of Computer Sci., Carnegie-Mellon Univ., Pittsburgh, PA, USA", keywords = "Ada; Ada compiler; code generator; exception handling; function return values; operating system; operating systems (computers); parameter passing; program compilers; subprogram calls; Unix; VAX 11/780", treatment = "A Application", } @Article{Stonebraker:1980:RDS, author = "Michael Stonebraker", title = "Retrospection on a Database System", journal = j-TODS, volume = "5", number = "2", pages = "225--240", month = jun, year = "1980", CODEN = "ATDSD3", ISSN = "0362-5915 (print), 1557-4644 (electronic)", bibdate = "Sat Apr 14 10:34:48 MDT 2001", bibsource = "Compendex database; Database/Graefe.bib; Database/Wiederhold.bib; http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Reprinted in \cite{Stonebraker:1988:RDS}.", URL = "http://www.acm.org/pubs/articles/journals/tods/1980-5-2/p225-stonebraker/p225-stonebraker.pdf; http://www.acm.org/pubs/citations/journals/tods/1980-5-2/p225-stonebraker/", abstract = "This paper describes the implementation history of the INGRES database system. It focuses on mistakes that were made in progress rather than on eventual corrections. Some attention is also given to the role of structured design in a database system implementation and to the problem of supporting nontrivial users. Lastly, miscellaneous impressions of UNIX, the PDP-11, and data models are given.", acknowledgement = ack-nhfb, annote = "The implementation history of the INGRES database system. The role of structured design in a database system implementation, impressions of UNIX, the PDP-11, and data models are given.", classification = "723", keywords = "concurrency; data base systems, history evaluation, Ingres, TODS; integrity; nonprocedural languages; protection; recovery; relational databases", subject = "Information Systems --- Database Management --- Systems (H.2.4); Information Systems --- Database Management --- Systems (H.2.4): {\bf Relational databases}; Information Systems --- Database Management --- Physical Design (H.2.2): {\bf Recovery and restart}; Information Systems --- Database Management --- Systems (H.2.4): {\bf Concurrency}", } @Article{Fitzhorn:1981:CTC, author = "Patrick A. Fitzhorn and Gearold R. Johnson", title = "{C}: toward a concise syntactic description", journal = j-SIGPLAN, volume = "16", number = "12", pages = "14--21", month = dec, year = "1981", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:14:38 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6140D (High level languages)", corpsource = "Dept. of Computer Sci., Colorado State Univ., Ft. Collins, CO, USA", keywords = "C; host language; low level systems programming language; operating system; programming languages; syntactic description; UNIX", treatment = "P Practical", } @Article{Kernighan:1981:PLT, author = "Brian W. Kernighan", title = "{PIC}: a language for typesetting graphics", journal = j-SIGPLAN, volume = "16", number = "6", pages = "92--98", month = jun, year = "1981", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:14:34 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C5540 (Terminals and graphic displays); C6130B (Graphics techniques); C6140D (High level languages)", conflocation = "Portland, OR, USA; 8-10 June 1981", conftitle = "Proceedings of the ACM SIGPLAN SIGOA Symposium on Text Manipulation", corpsource = "Bell Labs., Murray Hill, NJ, USA", keywords = "arcs; arrows; boxes; circles; computer graphics; design; document preparation; ellipses; formatter; high level languages; languages; lines; paragraph; paragraph preprocessor; preprocessor; splines; text editing; typesetting graphics; Unix system", subject = "I.7.2 Computing Methodologies, TEXT PROCESSING, Document Preparation, Languages", treatment = "A Application", } @Article{Kernighan:1981:UPE, author = "B. W. Kernighan and J. R. Mashey", key = "Kernighan \& Mashey", title = "The {Unix} Programming Environment", journal = j-COMPUTER, volume = "14", number = "4", pages = "12--24", month = apr, year = "1981", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Wed Jun 15 16:48:10 1983", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; Misc/unix.1.bib; Os/unix.1.bib", keywords = "PE", owner = "Rick Snodgrass", } @Article{Luderer:1981:DUS, author = "G. W. R. Luderer and H. Che and J. P. Haggerty and P. A. Kirslis and W. T. Marshall", title = "A distributed {UNIX} system based on a virtual circuit switch", journal = j-OPER-SYS-REV, volume = "15", number = "5", pages = "160--168", month = dec, year = "1981", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:53 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Crowe:1982:IC, author = "M. K. Crowe", title = "An incremental compiler", journal = j-SIGPLAN, volume = "17", number = "10", pages = "13--22", month = oct, year = "1982", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sat Apr 25 11:46:37 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6150C (Compilers, interpreters and other processors)", corpsource = "Paisley Coll. of Technol., Paisley, UK", keywords = "compiler-detected semantic errors; directed editor; incremental compiler; program compilers; relocatable binary load file; simple source language; standard ANSI terminal; syntax-directed editor; Unix loader; VAX code", treatment = "P Practical", } @Article{Graham:1982:ETD, author = "Susan L. Graham and Robert R. Henry and Robert A. Schulman", title = "An experiment in table driven code generation", journal = j-SIGPLAN, volume = "17", number = "6", pages = "32--43", month = jun, year = "1982", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:14:38 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6150C (Compilers, interpreters and other processors)", conflocation = "Boston, MA, USA; 23-25 June 1982", conftitle = "Proceedings of the SIGPLAN '82 Symposium on Compiler Construction", corpsource = "Computer Sci. Div., Dept. of Electrical Engng. and Computer Sci., Univ. of California, Berkeley, CA, USA", keywords = "grammar; grammars; local code generator; machine description; OS; parser-like instruction pattern matcher; program compilers; table driven code generation; UNIX Portable 'C' compiler; VAX- 11", sponsororg = "ACM", treatment = "P Practical", } @Book{Hancock:1982:CP, author = "Les Hancock and Morris Krieger", title = "The {C} Primer", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "ix + 235", year = "1982", ISBN = "0-07-025981-X", ISBN-13 = "978-0-07-025981-2", LCCN = "QA76.73.C15 H36 1982", bibdate = "Mon Oct 4 15:16:51 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Holt:1982:TUL, author = "R. C. Holt", title = "{Tunis}: a {Unix} look-alike written in concurrent {Euclid} (abstract)", journal = j-OPER-SYS-REV, volume = "16", number = "1", pages = "4--5", month = jan, year = "1982", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:34 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Hwang:1982:ULC, author = "K. Hwang and W. J. Croft and G. H. Goble and B. W. Wah and F. A. Briggs and W. R. Simmons and C. L. Coates", key = "Hwang et al", title = "A {Unix}-Based Local Computer Network with Load Balancing", journal = j-COMPUTER, volume = "15", number = "4", pages = "55--66", month = apr, year = "1982", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Tue Jan 10 15:38:59 1984", bibsource = "Distributed/Osser.bib; http://www.math.utah.edu/pub/tex/bib/unix.bib; Misc/os.bib; Os/os.bib; Parallel/Load.Balance.2.bib; Parallel/load.balance.3.bib; Parallel/load.balance.5.bib; Parallel/load.balance.hierarchical.bib", abstract = "Describes ECN, a network of Vasen and smaller DEC computers connected to a 1 M-baud network. Unix was extended with programs to establish a virtual terminal access, remote process execution, and load balancing capabilities in a time-sharing mode.", keywords = "load balancing, local area networks, Unix, load balancing, remote execution, ECN", } @InCollection{Kernighan:1982:UDP, author = "B. W. Kernighan and M. E. Lesk", title = "{UNIX} document preparation", crossref = "Nievergelt:1982:DPS", pages = "1--20", year = "1982", bibdate = "Mon Aug 22 14:25:07 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "documentation; languages", review = "ACM CR 40430", subject = "D.4.0 Software, OPERATING SYSTEMS, General, UNIX \\ I.7 Computing Methodologies, TEXT PROCESSING, Text Editing \\ I.7 Computing Methodologies, TEXT PROCESSING, Document Preparation", } @Article{Marca:1982:RCU, author = "David Marca", title = "A repetition construct for {UNIX} Version 6", journal = j-SIGPLAN, volume = "17", number = "9", pages = "72--75", month = sep, year = "1982", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sat Apr 25 11:46:37 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6140D (High level languages); C6150J (Operating systems)", corpsource = "SofTech Inc., Waltham, MA, USA", keywords = "command execution; operating system; operating systems (computers); programming languages; repetition construct; SHELL commands; UNIX Version 6", treatment = "P Practical", } @Article{Morris:1982:CFU, author = "Robert H. Morris", title = "Cryptographic Features of the {UNIX} Operating System", journal = j-CRYPTOLOGIA, volume = "6", number = "3", pages = "??--??", month = jul, year = "1982", CODEN = "CRYPE6", ISSN = "0161-1194 (print), 1558-1586 (electronic)", ISSN-L = "0161-1194", bibdate = "Sat Nov 21 12:35:16 MST 1998", bibsource = "http://www.dean.usma.edu/math/resource/pubs/cryptolo/index.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.cs.bell-labs.com/~dmr/crypt.html", acknowledgement = ack-nhfb, romanvolume = "VI", } @Article{Roberts:1982:ITN, author = "C. S. Roberts", title = "Implementing and Testing New Versions of a Good, 48-Bit, Pseudo-Random Number Generator", journal = j-BELL-SYST-TECH-J, volume = "61", number = "8", pages = "2053--2063", month = oct, year = "1982", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1982/BSTJ.1982.6108.html; http://www.alcatel-lucent.com/bstj/vol61-1982/bstj-vol61-issue08.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol61/bstj61-8-2053.pdf; http://www.alcatel-lucent.com/bstj/vol61-1982/articles/bstj61-8-2053.pdf", abstract = "In this paper we describe the design, testing, and use of {\tt drand48} --- a good, pseudo-random number generator based upon the linear congruential algorithm and 48-bit integer arithmetic. The {\tt drand48} subroutine is callable from C-language programs and is available in the subroutine library of the UNIX operating system. Versions coded in assembly language now exist for both the PDP-11 and VAX-11 computers; a version coded in a ``portable'' dialect of C language has been produced by Rosler for the Western Electric 3B20 and other machines. Given the same initialization value, all these versions produce the identical sequence of pseudo-random numbers. Versions of {\tt drand48} in the assembly language of other computers or for other programming languages clearly could be implemented, and some output results have been tabulated to aid in testing and debugging such newly coded subroutines. Timing results for {\tt drand48} on the PDP-11/ 45, the PDP-11/70, the VAX-11/750, and the VAX-11/78O are also presented and compared.", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", remark = "This paper describes the {\tt drand48()} generator family, which is widely implemented on Unix systems, and is standardized in IEEE Std 1003.1-2001, {\em Portable Operating System Interface (POSIX)}. Curiously, this paper is not mentioned in that Standard, or in 1997-vintage FreeBSD source code for this family, or in current Unix manual pages for {\tt drand48()}.\par The {\tt drand48()} code uses a standard linear congruential generator, defined by $X_{n + 1} = (a X_n + c) \bmod m$, with $n \geq 0$, $a = 0x5\,deec\,e66d = 0o273\,673\,163\,155 = 25\,214\,903\,917$, $c = 0xb = 0o13 = 11$, and $m = 2^{48}$, giving a period of $2^{48} = 281\,474\,976\,710\,656$. Timing tests using a C {\tt main()} program given in the paper, with hand-coded assembly-language library implementations of the generator on five PDP-11 and VAX models showed times from 440 sec (PDP-11/45) to 96 sec (VAX-11/780) for $10^6$ output pseudorandom numbers. Timing tests using the program in this paper on 2010-vintage AMD and Intel x86\_64 CPUs show a speedup of about 2400 times over the best 1977-vintage VAX-11/780 times, suggesting that the period of the {\tt drand48()} generator could be reached in about three months. There are well-understood, and unavoidable, $n$-step correlations (for some, possibly large, and possibly as-yet-unknown, $n$) in linear congruential generators, as discovered by George Marsaglia and described in his famous paper ``Random numbers fall mainly in the planes'' (Proceedings of the National Academy of Science of the USA, {\bf 61}(1) 25--28, 15 September 1968). The availability of other generator families developed since about 1990 that have much larger periods (up to $10^{100}$ to $10^{20000}$), and no known $n$-step correlations, suggest that {\tt drand48()} should not be used for serious long-running simulations, even though it is likely to still be satisfactory for casual use.", } @Article{Rochkind:1982:DSS, author = "M. J. Rochkind", title = "Database Systems: Structure of a Database File System for the {UNIX} Operating System", journal = j-BELL-SYST-TECH-J, volume = "61", number = "9", pages = "2387--2405", month = nov, year = "1982", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1982/BSTJ.1982.6109.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol61/bstj61-9-2387.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Article{Stroustrup:1982:CAD, author = "Bjarne Stroustrup", title = "Classes: an abstract data type facility for the {C} language", journal = j-SIGPLAN, volume = "17", number = "1", pages = "42--51", month = jan, year = "1982", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sat Apr 25 11:46:37 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6120 (File organisation); C6140D (High level languages); C6150C (Compilers, interpreters and other processors)", corpsource = "Bell Labs., Murray Hill, NJ, USA", keywords = "abstract data type; C class concept; C language; cc compiler; class pre-processor; data structures; high level languages; Motorola 68000; PDP11; portable C compiler; program compilers; source file; UNIX; VAX", treatment = "P Practical", } @Book{Thomas:1982:UGU, author = "Rebecca Thomas and Jean Yates", title = "A User Guide to the {UNIX} System", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, pages = "xi + 508", year = "1982", ISBN = "0-931988-71-3", ISBN-13 = "978-0-931988-71-4", LCCN = "QA76.8.U65 T45 1982", bibdate = "Mon Oct 4 11:58:10 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Thomas:UGU82, author = "Rebecca Thomas and Jean Yates", title = "A User Guide to the {UNIX} System", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, pages = "xi + 508", year = "1982", ISBN = "0-931988-71-3", ISBN-13 = "978-0-931988-71-4", LCCN = "QA76.8.U65 T45 1982", bibdate = "Wed Dec 15 10:58:50 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", } @Article{Weinberger:1982:DSM, author = "P. J. Weinberger", title = "Database Systems: Making {UNIX} Operating Systems Safe for Databases", journal = j-BELL-SYST-TECH-J, volume = "61", number = "9", pages = "2407--2422", month = nov, year = "1982", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1982/BSTJ.1982.6109.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol61/bstj61-9-2407.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Book{ATT:1983:UPMa, author = "AT{\&T}", key = "ATT", title = "{UNIX} Programmer's Manual", volume = "1", publisher = pub-HRW, address = pub-HRW:adr, pages = "xiv + 425", year = "1983", ISBN = "0-03-061742-1", ISBN-13 = "978-0-03-061742-3", LCCN = "QA76.8.U65 B44 1983", bibdate = "Sat Oct 28 08:41:35 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{ATT:1983:UPMb, author = "AT{\&T}", key = "ATT", title = "{UNIX} Programmer's Manual", volume = "2", publisher = pub-HRW, address = pub-HRW:adr, pages = "vii + 616", year = "1983", ISBN = "0-03-061743-X", ISBN-13 = "978-0-03-061743-0", LCCN = "QA76.8.U65 B44 1983", bibdate = "Sat Oct 28 08:41:37 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{ATT:UPM83-1, author = "AT{\&T}", key = "ATT", title = "{UNIX} Programmer's Manual", volume = "1", publisher = pub-HRW, address = pub-HRW:adr, pages = "xiv + 425", year = "1983", ISBN = "0-03-061742-1", ISBN-13 = "978-0-03-061742-3", LCCN = "QA76.8.U65 B44 1983", bibdate = "Sat Oct 28 08:26:00 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", xxnote = "NB: special form AT{\&T} required to get correct alpha-style labels.", } @Book{ATT:UPM83-2, author = "AT{\&T}", key = "ATT", title = "{UNIX} Programmer's Manual", volume = "2", publisher = pub-HRW, address = pub-HRW:adr, pages = "vii + 616", year = "1983", ISBN = "0-03-061743-X", ISBN-13 = "978-0-03-061743-0", LCCN = "QA76.8.U65 B44 1983", bibdate = "Sat Oct 28 08:26:02 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", xxnote = "NB: special form AT{\&T} required to get correct alpha-style labels.", } @TechReport{Cabrera:1983:UPO, author = "Luis Felipe Cabrera", title = "A user-process oriented performance study of {Ethernet} networking under {Berkeley UNIX 4.2 BSD}", type = "Progress report", number = "84/19", institution = "Computer Science Division (EELS), University of California, Berkeley", address = "Berkeley, CA, USA", pages = "37", year = "1983", bibdate = "Tue Sep 17 07:25:50 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Cargill:1983:BD, author = "T. A. Cargill", title = "The {Blit} debugger (Preliminary Draft)", journal = j-SIGPLAN, volume = "18", number = "8", pages = "190--200", month = aug, year = "1983", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sat Apr 25 11:46:37 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6150G (Diagnostic, testing, debugging and evaluating systems)", conflocation = "Pacific Grove, CA, USA; 20-23 March 1983", conftitle = "ACM SIGSOFT/SIGPLAN Software Engineering Symposium on High-Level Debugging", corpsource = "Bell Labs., Murray Hill, NJ, USA", keywords = "Bell Laboratories; Blit debugger; C programs; computer graphics; design; graphics; high level languages; Motorola; mouse; multi-processing bitmap terminal; performance; program debugging; UNIX; user interface; verification", subject = "D.2.5 Software, SOFTWARE ENGINEERING, Testing and Debugging, Debugging aids", treatment = "P Practical", } @Book{Christian:1983:UOS, author = "Kaare Christian", title = "The {UNIX} Operating System", publisher = pub-WILEY-INTERSCIENCE, address = pub-WILEY-INTERSCIENCE:adr, pages = "xviii + 318", year = "1983", ISBN = "0-471-87542-2 (hardcover) and 0-471-89052-9 (paperback)", ISBN-13 = "978-0-471-87542-0 (hardcover) and 978-0-471-89052-2 (paperback)", LCCN = "QA76.8.U65 C45 1983", bibdate = "Mon Oct 4 11:54:28 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Christian:UOS83, author = "Kaare Christian", title = "The {UNIX} Operating System", publisher = pub-WILEY-INTERSCIENCE, address = pub-WILEY-INTERSCIENCE:adr, pages = "xviii + 318", year = "1983", ISBN = "0-471-87542-2 (hardcover) and 0-471-89052-9 (paperback)", ISBN-13 = "978-0-471-87542-0 (hardcover) and 978-0-471-89052-2 (paperback)", LCCN = "QA76.8.U65 C45 1983", bibdate = "Tue Dec 14 23:28:00 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", } @Article{Cox:1983:OOP, author = "Brad J. Cox", key = "Cox", title = "The object oriented precompiler: Programming {Smalltalk 80} methods in {C} language", journal = j-SIGPLAN, volume = "18", number = "1", pages = "15--22", month = jan, year = "1983", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sat Apr 25 11:46:37 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This paper describes the OOPC, a language and run-time library for producing C programs that operate by the run-time conventions of Smalltalk 80 in a UNIX environment. An added capability is object save/restore, which allows any object to convert itself and all subobjects into linear form for storage on disk. Important missing features are automatic memory management and Smalltalk's impressive collection of classes to support a graphical human interface.", acknowledgement = ack-nhfb, classification = "C6150C (Compilers, interpreters and other processors)", corpsource = "ITT Programming Technol. Center, Stratford, CT, USA", keywords = "C programs; language; object oriented precompiler; program compilers; run-time library; Small talk, Class C, object-oriented; Smalltalk 80; UNIX environment", treatment = "P Practical", } @Article{Frase:1983:HFB, author = "L. T. Frase", title = "Human Factors and Behavioral Science: The {UNIX Writer's Workbench} Software: Philosophy", journal = j-BELL-SYST-TECH-J, volume = "62", number = "6", pages = "1883--1890", month = jul # "\slash " # aug, year = "1983", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1983/BSTJ.1983.6206.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol62/bstj62-6-1883.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Article{Gait:1983:CLS, author = "J. Gait", title = "Command level software tools", journal = j-SIGPLAN, volume = "18", number = "11", pages = "45--53", month = nov, year = "1983", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sat Apr 25 11:46:37 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6140D (High level languages)", corpsource = "Tektronix Inc., Beaverton, OR, USA", keywords = "high level languages; looping; looping constructs; shell; software tools; V6 UNIX command language", treatment = "P Practical", } @Article{Gingrich:1983:HFB, author = "P. S. Gingrich", title = "Human Factors and Behavioral Science: The {UNIX Writer's Workbench} Software: Results of a Field Study", journal = j-BELL-SYST-TECH-J, volume = "62", number = "6", pages = "1909--1921", month = jul # "\slash " # aug, year = "1983", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1983/BSTJ.1983.6206.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol62/bstj62-6-1909.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Book{Griswold:1983:IPL, author = "Ralph E. Griswold and Madge T. Griswold", title = "The {Icon} Programming Language", publisher = pub-PH, address = pub-PH:adr, pages = "xviii + 313", year = "1983", ISBN = "0-13-449777-5", ISBN-13 = "978-0-13-449777-8", LCCN = "QA76.73.I19 G74 1983", bibdate = "Tue Dec 14 22:54:38 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Ince:1983:CST, author = "D. C. Ince", title = "A compatibility software tool for use with separately compiled languages", journal = j-SIGPLAN, volume = "18", number = "9", pages = "31--34", month = sep, year = "1983", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sat Apr 25 11:46:37 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6150C (Compilers, interpreters and other processors)", corpsource = "Faculty of Math., Open University, Milton Keynes, UK", keywords = "Ada; compatibility software tool; link/load files; object code; PASCAL; portable software tool; program processors; semantic nets; separately compiled languages; software constructor; software portability; source code; UNIX", treatment = "P Practical", } @Article{Ito:1983:HFO, author = "Tetsuro Ito and Makoto Kizawa", title = "Hierarchical File Organization and its Application to Similar-String Matching", journal = j-TODS, volume = "8", number = "3", pages = "410--433", month = sep, year = "1983", CODEN = "ATDSD3", ISSN = "0362-5915 (print), 1557-4644 (electronic)", bibdate = "Sat Apr 14 10:34:48 MDT 2001", bibsource = "Compendex database; Database/Graefe.bib; Database/Wiederhold.bib; http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org/pubs/articles/journals/tods/1983-8-3/p410-ito/p410-ito.pdf; http://www.acm.org/pubs/citations/journals/tods/1983-8-3/p410-ito/", abstract = "The automatic correction of misspelled inputs is discussed from a viewpoint of similar-string matching. First a hierarchical file organization based on a linear ordering of records is presented for retrieving records highly similar to any input query. Then the spelling problem is attacked by constructing a hierarchical file for a set of strings in a dictionary of English words. The spelling correction steps proceed as follows: (1) find one of the best-match strings which are most similar to a query, (2) expand the search area for obtaining the good-match strings, and (3) interrupt the file search as soon as the required string is displayed. Computational experiments verify the performance of the proposed methods for similar-string matching under the UNIX time-sharing system.", acknowledgement = ack-nhfb, annote = "A spelling checker to provide possible correct spellings for all possible words. Results are quite sketchy", classification = "723", keywords = "best match; data processing, algorithms; experimentation; file organization; good match; hierarchical clustering; linear ordering; measurement; office automation; performance; similar-string; similarity; spelling correction; text editor; theory; verification", review = "ACM CR 8408-0665", subject = "I.2 Computing Methodologies, ARTIFICIAL INTELLIGENCE, Natural Language Processing \\ I.5.4 Computing Methodologies, PATTERN RECOGNITION, Applications, Text processing \\ E.5 Data, FILES, Organization/structure \\ H.3.2 Information Systems, INFORMATION STORAGE AND RETRIEVAL, Information Storage, File organization \\ H.3.3 Information Systems, INFORMATION STORAGE AND RETRIEVAL, Information Search and Retrieval, Search process \\ H.3.3 Information Systems, INFORMATION STORAGE AND RETRIEVAL, Information Search and Retrieval, Selection process \\ H.4 Information Systems, INFORMATION SYSTEMS APPLICATIONS, Office Automation", } @TechReport{Larus:1983:PCR, author = "James R. Larus", title = "On the performance of {Courier} remote procedure calls under {4.1c BSD}", type = "Report", number = "UCB\slash CSD 83/123", institution = "Computer Science Division, University of California, Berkeley", address = "Berkeley, CA, USA", year = "1983", bibdate = "Tue Sep 17 07:15:38 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Levy:1983:WTA, author = "L. S. Levy", title = "A walk through {AWK}", journal = j-SIGPLAN, volume = "18", number = "12", pages = "69--85", month = dec, year = "1983", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sat Apr 25 11:46:37 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6140D (High level languages)", corpsource = "Bell Labs., Whippany, NJ, USA", keywords = "AWK; data manipulation; high level languages; information retrieval; interpretive programming language; procedural language; prototyping; report writing; UNIX", treatment = "P Practical", } @Article{Lima:1983:DCF, author = "Isabel Gouveia Lima and Richard Hopkins and Lindsay Marshall and David Mundy and Philip Treleaven", title = "Decentralised control flow --- {BASed on unIX BASIX}", journal = j-SIGPLAN, volume = "18", number = "6", pages = "192--201", month = jun, year = "1983", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sat Apr 25 11:46:37 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6140D (High level languages); C6150J (Operating systems)", conflocation = "San Francisco, CA, USA; 27-29 June 1983", conftitle = "Proceedings of the SIGPLAN '83 Symposium on Programming Language Issues in Software Systems", corpsource = "Computing Lab., Univ. of Newcastle upon Tyne, Newcastle upon Tyne, UK", keywords = "actor; BASIX; computer networks; data flow; decentralised control flow model; decentralised programming model; design; distributed processing; high level languages; languages; logic models; logic programming model; operating systems; operating systems (computers); parallel architectures; programming language; reduction; UNIX; Von Neumann model", sponsororg = "ACM", subject = "C.1.2 Computer Systems Organization, PROCESSOR ARCHITECTURES, Multiple Data Stream Architectures (Multiprocessors), Parallel processors \\ D.3.2 Software, PROGRAMMING LANGUAGES, Language Classifications, Very high-level languages \\ D.4.7 Software, OPERATING SYSTEMS, Organization and Design, Distributed systems \\ D.4.7 Software, OPERATING SYSTEMS, Organization and Design, Interactive systems \\ D.4.0 Software, OPERATING SYSTEMS, General, UNIX \\ D.4.7 Software, OPERATING SYSTEMS, Organization and Design, UNIX", treatment = "P Practical", } @Book{Lomuto:1983:UP, author = "Ann Nicols Lomuto and Nico Lomuto", title = "A {UNIX} Primer", publisher = pub-PH, address = pub-PH:adr, pages = "xvi + 239", year = "1983", ISBN = "0-13-938886-9", ISBN-13 = "978-0-13-938886-6", LCCN = "QA76.8.U65 L65 1983", bibdate = "Thu Sep 04 13:15:01 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Prentice-Hall Software Series, Editor: Brian W. Kernighan.", acknowledgement = ack-nhfb, } @Book{Lomuto:UP83, author = "Ann Nicols Lomuto and Nico Lomuto", title = "A {UNIX} Primer", publisher = pub-PH, address = pub-PH:adr, pages = "xvi + 239", year = "1983", ISBN = "0-13-938886-9", ISBN-13 = "978-0-13-938886-6", LCCN = "QA76.8.U65 L65 1983", bibdate = "Wed Dec 15 10:38:17 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Prentice-Hall Software Series, Editor: Brian W. Kernighan", } @Article{Macdonald:1983:HFB, author = "N. H. Macdonald", title = "Human Factors and Behavioral Science: The {UNIX Writer's Workbench} Software: Rationale and Design", journal = j-BELL-SYST-TECH-J, volume = "62", number = "6", pages = "1891--1908", month = jul # "\slash " # aug, year = "1983", CODEN = "BSTJAN", ISSN = "0005-8580", bibdate = "Tue Nov 9 11:15:56 MST 2010", bibsource = "http://bstj.bell-labs.com/oldfiles/year.1983/BSTJ.1983.6206.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://bstj.bell-labs.com/BSTJ/images/Vol62/bstj62-6-1891.pdf", acknowledgement = ack-nhfb, fjournal = "The Bell System Technical Journal", } @Book{McGilton:1983:IUS, author = "Henry McGilton and Rachel Morgan", title = "Introducing the {UNIX} System", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xix + 556", year = "1983", ISBN = "0-07-045001-3", ISBN-13 = "978-0-07-045001-1", LCCN = "QA76.8.U65 M38 1983", bibdate = "Mon Oct 4 11:56:31 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$18.95", acknowledgement = ack-nhfb, } @Book{McGilton:IUS83, author = "Henry McGilton and Rachel Morgan", title = "Introducing the {UNIX} System", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xix + 556", year = "1983", ISBN = "0-07-045001-3", ISBN-13 = "978-0-07-045001-1", LCCN = "QA76.8.U65 M38 1983", bibdate = "Wed Dec 15 10:39:04 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$18.95", } @InProceedings{Murai:1983:KSU, author = "Jun Murai and Mario Tokoro and Fumio Teraoka", title = "{KEIO S\&Tnet}: {A} {UNIX} Campus Network", crossref = "IEEE:1983:CLC", pages = "14--23", year = "1983", bibdate = "Sat Sep 25 20:21:07 MDT 1999", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "IEEE Service Cent. Piscataway, NJ, USA.", acknowledgement = ack-nhfb, affiliation = "Keio Univ, Dep of Mathematics, Yokohama, Jpn", classification = "723", conference = "8th Conference on Local Computer Networks.", conflocation = "Minneapolis, MN, USA", journalabr = "Conf Local Comput Networks", keywords = "6-layer protocols; computer networks; Keio S\&Tnet; UNIX campus network; virtual", meetingaddress = "Minneapolis, MN, USA", sponsor = "IEEE Computer Soc, Technical Committee on Computer Communications, Los Alamitos, Calif, USA", } @Article{Shultis:1983:FS, author = "J. Shultis", title = "A functional shell", journal = j-SIGPLAN, volume = "18", number = "6", pages = "202--211", month = jun, year = "1983", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sat Apr 25 11:46:37 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6140D (High level languages); C6150J (Operating systems)", conflocation = "San Francisco, CA, USA; 27-29 June 1983", conftitle = "Proceedings of the SIGPLAN '83 Symposium on Programming Language Issues in Software Systems", corpsource = "Dept. of Computer Sci., Univ. of Colorado, Boulder, CO, USA", keywords = "branching; C language derivative; concurrent processing; design; functional shell; high level languages; labelled data streams; languages; looping; operating systems (computers); OS; pipes; powers; program algebra; program algebra processing; structured data streams; UNIX shell; verification", sponsororg = "ACM", subject = "D.4.1 Software, OPERATING SYSTEMS, Process Management, Concurrency \\ D.1 Software, PROGRAMMING TECHNIQUES, Applicative (Functional) Programming \\ I.4.3 Computing Methodologies, IMAGE PROCESSING, Enhancement, Filtering", treatment = "P Practical", } @Article{Tuthill:1983:TUS, author = "B. Tuthill", title = "Typesetting on the {UNIX} system", journal = j-BYTE, volume = "8", number = "19", pages = "253--265", month = oct, year = "1983", CODEN = "BYTEDJ", ISSN = "0360-5280", bibdate = "Fri Feb 09 18:10:41 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "documentation; human factors", subject = "K Computing Milieux, PERSONAL COMPUTING \\ D.4.7 Software, OPERATING SYSTEMS, Organization and Design, UNIX \\ D.4.0 Software, OPERATING SYSTEMS, General, UNIX \\ D.4.m Computing Methodologies, TEXT PROCESSING, Miscellaneous \\ I.7", } @Article{vanKatwijk:1983:PYP, author = "J. {van Katwijk}", title = "A preprocessor for {YACC. A} poor man's approach to parsing attributed grammars", journal = j-SIGPLAN, volume = "18", number = "10", pages = "12--15", month = oct, year = "1983", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sat Apr 25 11:46:37 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C4210 (Formal logic); C6150C (Compilers, interpreters and other processors); C6150J (Operating systems)", corpsource = "Dept. of Math. and Informatics, Delft Univ. of Technol., Delft, Netherlands", keywords = "4.1BSD; Ada; attribute grammars; attributed grammars; C programming language; compilers; context free grammars; context-free grammars; parameterized nonterminal symbols; parsing; PDP-11; preprocessor; program compilers; PWB; supervisory and executive programs; UNIX parameterized nonterminal symbols; UNIX timesharing system; V7, 2.1BSD; YACC", treatment = "P Practical", } @Article{Aho:1984:USF, author = "A. V. Aho", title = "The {UNIX} System: Foreword", journal = j-ATT-BELL-LAB-TECH-J, volume = "63", number = "8 part 2", pages = "1573--1576", month = oct, year = "1984", CODEN = "ABLJER", ISSN = "0748-612X", bibdate = "Sat Dec 04 13:43:49 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Bach:1984:MUO, author = "M. J. Bach", title = "Multiprocessor {UNIX} operating systems", journal = j-ATT-BELL-LAB-TECH-J, volume = "63", number = "8 part 2", pages = "1733--1749", month = oct, year = "1984", CODEN = "ABLJER", ISSN = "0748-612X", bibdate = "Fri Nov 12 09:17:39 2010", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This paper describes the problems posed by running the UNIX operating system on multiprocessors, as well as some solutions. The resulting systems function like their single-processor counterparts but yield 70 percent better throughput for two-processor configurations. Closely coupled multiprocessor UNIX systems currently run on IBM and AT\&T Technologies hardware, but the implementation described in this paper ports to other architectures as well, and the design is not limited to two-processor configurations.", acknowledgement = ack-nhfb, fjournal = "AT\&T Bell Laboratories Technical Journal", subject = "multiprocessor; UNIX operating systems", topic = "computer systems, digital", } @Article{Bodenstab:1984:UOS, author = "D. E. Bodenstab and Thomas F. Houghton and Keith A. Kelleman and George Ronkin and Edward P. Schan", title = "{UNIX} operating system porting experiences", journal = j-ATT-BELL-LAB-TECH-J, volume = "63", number = "8 part 2", pages = "1769--1790", month = oct, year = "1984", CODEN = "ABLJER", ISSN = "0748-612X", bibdate = "Fri Nov 12 09:17:39 2010", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "One of the reasons for the dramatic growth in popularity of the UNIX operating system is the portability of both the operating system and its associated user-level programs. This paper highlights the portability of the UNIX operating system, presents some general porting considerations, and shows how some of the ideas were used in actual UNIX operating system porting efforts. Discussions of the efforts associated with porting the UNIX operating system to an Intel 8086-based system, two UNIVAC 1100 Series processors, and the AT\&T 3B20S and 3B5 minicomputers are presented.", acknowledgement = ack-nhfb, fjournal = "AT\&T Bell Laboratories Technical Journal", subject = "porting experiences; UNIX operating system", topic = "computer systems, digital", } @Article{Feder:1984:EUS, author = "Jerome Feder", title = "Evolution of {UNIX} system performance", journal = j-ATT-BELL-LAB-TECH-J, volume = "63", number = "8 part 2", pages = "1791--1814", month = oct, year = "1984", CODEN = "ABLJER", ISSN = "0748-612X", bibdate = "Fri Nov 12 09:17:39 2010", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Performance has motivated much of the change in the UNIX operating system over the years. This paper gives the results of measurements of system performance taken over time and links the measured improvements to the algorithmic changes that gave rise to them. The most notable improvements have occurred in methods for performing table searches, disk input/output, and terminal handling; these have been driven heavily by the release from address space and memory restrictions in recent 32-bit hardware. Overall, the changes on 32-bit machines have yielded a more than 25-percent improvement in the system's ability to support time-sharing users.", acknowledgement = ack-nhfb, fjournal = "AT\&T Bell Laboratories Technical Journal", subject = "disk input/output; table searches; terminal handling; UNIX operating system; UNIX system performance", topic = "computer systems, digital", } @Article{Felton:1984:USI, author = "William A. Felton and Gerald L. Miller and J. Michael Milner", title = "A {UNIX} system implementation for {System\slash 370}", journal = j-ATT-BELL-LAB-TECH-J, volume = "63", number = "8 part 2", pages = "1751--1767", month = oct, year = "1984", CODEN = "ABLJER", ISSN = "0748-612X", bibdate = "Fri Nov 12 09:17:39 2010", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This paper describes an implementation of the UNIX operating system for IBM System/370 computers. In this implementation an underlying Resident Supervisor, adapted from an existing IBM control program, provides machine control and multiprogramming; while a UNIX System Supervisor, adapted from the standard UNIX system kernel, provides the UNIX system environment. This implementation supports multiprocessing, paging, and large-process, virtual address spaces. Terminal handling is done through an outboard terminal processor. This paper describes the software structure, with emphasis on unique aspects of this implementation: multiprocessing and process synchronization, process creation, and outboard terminal handling. Capacity and performance of the UNIX system on large mainframes is also discussed. Included in this discussion are the reasons for selecting this system for development, applications software porting, and general experience with mainframe UNIX systems.", acknowledgement = ack-nhfb, fjournal = "AT\&T Bell Laboratories Technical Journal", subject = "IBM System/370 computers; UNIX operating system; UNIX system implementation", topic = "computer systems, digital", } @Article{Fritz:1984:NCR, author = "T. E. Fritz and J. E. Hefner and T. M. Raleigh", title = "Network of computers running the {UNIX} system", journal = j-ATT-BELL-LAB-TECH-J, volume = "63", number = "8 part 2", pages = "1877--1896", month = oct, year = "1984", CODEN = "ABLJER", ISSN = "0748-612X", bibdate = "Fri Nov 12 09:17:39 2010", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This paper discusses experience in designing software to interconnect large numbers of processors that are based on the UNIX operating system over a high-speed local area network. This paper discusses portability of the implementation between different processors and operating systems based on the UNIX system, the influence of different schedulers, input/output subsystems, and different speed processors on the implementation and performance of the network. Also discussed are characteristics of network usage, such as traffic patterns, throughput, and response.", acknowledgement = ack-nhfb, fjournal = "AT\&T Bell Laboratories Technical Journal", keywords = "computer software --- design; computer systems, digital", subject = "operating system environment; UNIX operating system", topic = "computer networks", } @Article{Gait:1984:SOK, author = "Jason Gait", title = "Semaphores outside the kernel", journal = j-SIGPLAN, volume = "19", number = "10", pages = "12--21", month = oct, year = "1984", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sat Apr 25 11:46:37 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6150J (Operating systems)", corpsource = "Comput. Res. Lab., Tektronix Inc., Beaverton, OR, USA", keywords = "concurrent programming; distributed protocol; kernel; operating systems (computers); parallel processing; queue management; semaphores; software trap mechanism; spin loop; synchronisation; V7 UNIX", treatment = "P Practical", } @Article{Grampp:1984:UOS, author = "Frederick T. Grampp and Robert H. Morris", title = "{UNIX} operating system security", journal = j-ATT-BELL-LAB-TECH-J, volume = "63", number = "8 part 2", pages = "1649--1672", month = oct, year = "1984", CODEN = "ABLJER", ISSN = "0748-612X", bibdate = "Fri Nov 12 09:17:39 2010", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Computing systems that are easy to access and that facilitate communications with other systems are by their nature difficult to secure. Most often, though, the level of security that is actually achieved is far below what it could be. This is due to many factors, the most important of which are the knowledge and attitudes of the administrators and users of such systems. We discuss here some of the security hazards of the UNIX operating system, and we suggest ways to protect against them, in the hope that an educated community of users will lead to a level of protection that is stronger, but far more importantly, that represents a reasonable and thoughtful balance between security and ease of use of the system. We will not construct parallel examples for other systems, but we encourage readers to do so for themselves.", acknowledgement = ack-nhfb, fjournal = "AT\&T Bell Laboratories Technical Journal", keywords = "computer systems, digital", subject = "security hazards; UNIX operating system", topic = "data processing", } @Book{Harbison:1984:CAR, author = "Samuel P. Harbison and Guy L. {Steele Jr.}", title = "{C}\emdash {A} Reference Manual", publisher = pub-PH, address = pub-PH:adr, pages = "x + 352", year = "1984", ISBN = "0-13-110008-4", ISBN-13 = "978-0-13-110008-4", LCCN = "QA76.73.C15 H38 1984", bibdate = "Tue Dec 14 22:55:00 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @InProceedings{Kernighan:1984:UDP, author = "B. W. Kernighan", title = "The {Unix} Document Preparation Tools \emdash{ A} Retrospective", crossref = "Miller:1984:PPF", year = "1984", bibdate = "Sat Aug 27 17:00:38 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Kernighan:1984:UPE, author = "Brian W. Kernighan and Rob Pike", title = "The {UNIX} Programming Environment", publisher = pub-PH, address = pub-PH:adr, pages = "x + 357", year = "1984", ISBN = "0-13-937699-2 (hardcover), 0-13-937681-X (paperback)", ISBN-13 = "978-0-13-937699-3 (hardcover), 978-0-13-937681-8 (paperback)", LCCN = "QA76.8.U65 K46 1984", bibdate = "Mon Oct 4 11:56:01 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Kernighan:UPE84, author = "Brian W. Kernighan and Rob Pike", title = "The {UNIX} Programming Environment", publisher = pub-PH, address = pub-PH:adr, pages = "x + 357", year = "1984", ISBN = "0-13-937699-2 (hardcover), 0-13-937681-X (paperback)", ISBN-13 = "978-0-13-937699-3 (hardcover), 978-0-13-937681-8 (paperback)", LCCN = "QA76.76.O63 K48 1984", bibdate = "Wed Dec 15 10:36:12 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", } @Article{Korth:1984:SUD, author = "Henry F. Korth and Gabriel M. Kuper and Joan Feigenbaum and Allen {Van Gelder} and Jeffrey D. Ullman", title = "{System/U}: {A} Database System Based on the Universal Relation Assumption", journal = j-TODS, volume = "9", number = "3", pages = "331--347", month = sep, year = "1984", CODEN = "ATDSD3", ISSN = "0362-5915 (print), 1557-4644 (electronic)", bibdate = "Sat Apr 14 10:34:48 MDT 2001", bibsource = "Compendex database; Database/Graefe.bib; Database/Wiederhold.bib; http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org/pubs/articles/journals/tods/1984-9-3/p331-korth/p331-korth.pdf; http://www.acm.org/pubs/citations/journals/tods/1984-9-3/p331-korth/", abstract = "System/U is a universal relation database system under development at Stanford University which uses the language C on UNIX. The system is intended to test the use of the universal view, in which the entire database is seen as one relation. This paper describes the theory behind System/U, in particular the theory of maximal objects and the connection between a set of attributes. We also describe the implementation of the DDL (Data Description Language) and the DML (Data Manipulation Language), and discuss in detail how the DDL finds maximal objects and how the DML determines the connection between the attributes that appear in a query.", acknowledgement = ack-nhfb, classification = "723", generalterms = "Design; Theory", keywords = "computer programming languages; database systems; RELATIONAL DATABASE; SYSTEM/U; UNIVERSAL RELATION", subject = "Information Systems --- Database Management --- Logical Design (H.2.1): {\bf Data models}; Information Systems --- Database Management --- Languages (H.2.3): {\bf Data description languages (DDL)}; Information Systems --- Database Management --- Languages (H.2.3): {\bf Data manipulation languages (DML)}; Information Systems --- Database Management --- Physical Design (H.2.2): {\bf Access methods}; Information Systems --- Database Management --- Systems (H.2.4): {\bf Query processing}; Mathematics of Computing --- Discrete Mathematics --- Graph Theory (G.2.2): {\bf Path and circuit problems}", } @Article{Martin:1984:USP, author = "R. L. Martin", title = "The {UNIX} System: Preface", journal = j-ATT-BELL-LAB-TECH-J, volume = "63", number = "8 part 2", pages = "1571--1572", month = oct, year = "1984", CODEN = "ABLJER", ISSN = "0748-612X", bibdate = "Sat Dec 04 13:43:49 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Mayer:1984:EPP, author = "Herbert Mayer", title = "Experiences porting {Pascal} source from a micro computer to a {Vax}", journal = j-SIGPLAN, volume = "19", number = "9", pages = "16--20", month = sep, year = "1984", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:14:47 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6100 (Software techniques and systems)", corpsource = "Dept. of Math. Sci., San Diego State Univ., CA, USA", keywords = "compiler; Intel microcomputer; Pascal; porting; software portability; Unix; Vax Pascal compiler; Vax11/780", treatment = "G General Review; P Practical", } @Article{McKusick:1984:FFS, author = "Marshall K. McKusick and William N. Joy and Sam J. Leffler and Robert S. Fabry", key = "McKusick et al.", title = "A Fast File System for {UNIX}", journal = j-TOCS, volume = "2", number = "3", pages = "181--197", month = aug, year = "1984", bibdate = "Thu Feb 7 10:11:41 1985", bibsource = "ftp://ftp.ira.uka.de/pub/bibliography/Database/Graefe.bib; ftp://ftp.ira.uka.de/pub/bibliography/Os/unix.1.bib; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "A reimplementation of the UNIX file system is described. The reimplementation provides substantially higher throughput rates by using more flexible allocation policies that allow better locality of reference and can be adapted to a wide range of peripheral and processor characteristics. The new file system clusters data that is sequentially accessed and provides two block sizes to allow fast access to large files while not wasting large amounts of space for small files. File access rates of up to ten times faster than the traditional UNIX file system are experienced. Long-needed enhancements to the programmers' interface are discussed. These include a mechanism to place advisory locks on files, extensions of the name space across file systems, the ability to use long file names, and provisions for administrative control of resource usage.", acknowledgement = ack-nhfb, keywords = "TOCS; UNIX, file system organization, file system performance, file system design, application program interface", } @Article{Peachey:1984:EIS, author = "Darwyn R. Peachey and Richard B. Bunt and Carey L. Williamson and Tim B. Brecht", title = "An experimental investigation of scheduling strategies for {UNIX}", journal = j-SIGMETRICS, volume = "12", number = "3", pages = "158--166", month = aug, year = "1984", CODEN = "????", DOI = "http://doi.acm.org/10.1145/1031382.809324", ISSN = "0163-5999 (print), 1557-9484 (electronic)", ISSN-L = "0163-5999", bibdate = "Thu Jun 26 11:00:50 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "The scheduler used in an operating system is an important factor in the performance of the system under heavy load. This paper describes the scheduling philosophy employed in the UNIX operating system and outlines the standard scheduling strategies. Modified strategies which address deficiencies in the standard strategies are described. The effectiveness of these modified strategies is assessed by means of performance experiments.", acknowledgement = ack-nhfb, } @Article{Perez-Davila:1984:PIF, author = "Alfredo de J. Perez-Davila and Lawrence W. Dowdy", title = "Parameter interdependencies of file placement models in a {Unix} system", journal = j-SIGMETRICS, volume = "12", number = "3", pages = "15--26", month = aug, year = "1984", CODEN = "????", DOI = "http://doi.acm.org/10.1145/1031382.809310", ISSN = "0163-5999 (print), 1557-9484 (electronic)", ISSN-L = "0163-5999", bibdate = "Thu Jun 26 11:00:50 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "A file assignment case study of a computer system running Unix is presented. A queueing network model of the system is constructed and validated. A modeling technique for the movement of files between and within disks is proposed. A detailed queueing network model is constructed for several file distributions in secondary storage. The interdependencies between the speed of the CPU, the swapping activity, the visit ratios and the multiprogramming level are examined and included in the modeling technique. The models predict the performance of several possible file assignments. The various file assignments are implemented and comparisons between the predicted and actual performance are made. The models are shown to accurately predict user response time.", acknowledgement = ack-nhfb, } @Article{Pike:1984:PDU, author = "Rob Pike and Brian W. Kernighan", title = "Program Design in the {UNIX} System Environment", journal = j-ATT-BELL-LAB-TECH-J, volume = "63", number = "8 part 2", pages = "1595--1605", month = oct, year = "1984", CODEN = "ABLJER", ISSN = "0748-612X", bibdate = "Sat Dec 04 13:43:49 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Powell:1984:POC, author = "Michael L. Powell", title = "A portable optimizing compiler for {Modula-2}", journal = j-SIGPLAN, volume = "19", number = "6", pages = "310--318", month = jun, year = "1984", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:14:46 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6140D (High level languages); C6150C (Compilers, interpreters and other processors)", conflocation = "Montreal, Que., Canada; 17-22 June 1984", conftitle = "Proceedings of the SIGPLAN 84 Symposium on Compiler Construction", corpsource = "Western Res. Lab., Digital Equipment Corp., Los Altos, CA, USA", keywords = "design; high level languages; languages; machine language; measurement; Modula-2; P-code; performance; portable optimizing compiler; program compilers; programming language; Unix environment", sponsororg = "ACM", subject = "D.3.4 Software, PROGRAMMING LANGUAGES, Processors, Compilers \\ D.3.2 Software, PROGRAMMING LANGUAGES, Language Classifications, Modula-2 \\ D.3.4 Software, PROGRAMMING LANGUAGES, Processors, Optimization \\ D.4.0 Software, OPERATING SYSTEMS, General, UNIX", treatment = "P Practical", } @Article{Reeds:1984:FSU, author = "James A. Reeds and Peter J. Weinberger", title = "File Security and the {UNIX} System {\tt crypt} Command", journal = j-ATT-BELL-LAB-TECH-J, volume = "63", number = "8 part 2", pages = "1673--1683", month = oct, year = "1984", CODEN = "ABLJER", ISSN = "0748-612X", bibdate = "Fri Nov 12 09:17:39 2010", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Reprinted in \cite[pp.~93--103]{ATT:1986:AUS}.", abstract = "Sufficiently large files encrypted with the UNIX system {\tt crypt} command can be deciphered in a few hours by algebraic techniques and human interaction. We outline such a decryption method and show it to be applicable to a proposed strengthened algorithm as well. We also discuss the role of encryption in file security.", acknowledgement = ack-nhfb, fjournal = "AT\&T Bell Laboratories Technical Journal", keywords = "computer systems, digital", subject = "crypt command; encryption; file security; UNIX system", topic = "data processing", } @Article{Rice:1984:ASM, author = "John R. Rice and Calvin Ribbens and William A. Ward", title = "{Algorithm 622}: {A} Simple Macroprocessor", journal = j-TOMS, volume = "10", number = "4", pages = "410--416", month = dec, year = "1984", CODEN = "ACMSCU", ISSN = "0098-3500 (print), 1557-7295 (electronic)", bibdate = "Tue Mar 09 10:17:12 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "See remark \cite{Levin:1998:RAS}.", URL = "http://doi.acm.org/10.1145/2701.356105", acknowledgement = ack-nhfb, } @Article{Ritchie:1984:EUT, author = "Dennis M. Ritchie", title = "Evolution of the {UNIX} time-sharing system", journal = j-ATT-BELL-LAB-TECH-J, volume = "63", number = "8 part 2", pages = "1577--1593", month = oct, year = "1984", CODEN = "ABLJER", ISSN = "0748-612X", bibdate = "Fri Nov 12 09:17:39 2010", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This paper presents a brief history of the early development of the UNIX operating system. It concentrates on the evolution of the file system, the process-control mechanism, and the idea of pipelined commands. Some attention is paid to social conditions during the development of the system.", acknowledgement = ack-nhfb, fjournal = "AT\&T Bell Laboratories Technical Journal", topic = "computer systems programming", } @Manual{SSC:1984:SRC, author = "{SSC staff}", title = "{SCC} Reference Cards", organization = pub-SSC, address = pub-SSC:adr, year = "1984--1993", bibdate = "Wed Sep 29 13:43:45 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "These are some good, inexpensive reference\slash tutorial cards on UNIX commands, Bourne shell, Korn shell, {\tt emacs}, {\tt vi}, C, C++, etc \ldots{}. e.g. the new ``UNIX System Command Summary for SVR4.2\slash Solaris 2.1'' (ISBN: 0-916151-61-1) \ldots{}. Contact Belinda Frazier (\path|bel@ssc.com|) or \path|sales@ssc.com| for more info.", acknowledgement = ack-sk, } @Book{Waite:1984:USV, author = "Mitchell Waite and Donald Martin and Stephen Prata", title = "{UNIX} System {V} Primer", publisher = pub-HWS, address = pub-HWS:adr, pages = "431", year = "1984", ISBN = "0-672-22404-6", ISBN-13 = "978-0-672-22404-1", LCCN = "QA76.6 .W3186 1985", bibdate = "Wed Jun 29 20:30:05 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "{\em Highly recommended}. A very very good hand-holding tutorial-type book for {UNIX}\slash {SVR4}.", price = "US\$19.95", acknowledgement = ack-sk, } @Article{Alexander:1985:TBP, author = "Cedell A. Alexander and William M. Keshlear and Faye Briggs", title = "Translation buffer performance in a {UNIX} environment", journal = j-COMP-ARCH-NEWS, volume = "13", number = "5", pages = "2--14", month = dec, year = "1985", CODEN = "CANED2", ISSN = "0163-5964 (ACM), 0884-7495 (IEEE)", bibdate = "Fri May 12 09:41:18 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Anonymous:1985:URG, author = "Anonymous", title = "The {UNIX} reference guide for {System V}: with expanded {AWK}, {DC}, {ED}, {SHELL}, {SED}, {VI}", publisher = "System Publications", address = "Trenton, NJ, USA", pages = "45", year = "1985", ISBN = "0-935739-00-9", ISBN-13 = "978-0-935739-00-8", LCCN = "QA76.76.O63", bibdate = "Fri Jul 01 14:36:20 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Binding:1985:CCC, author = "C. Binding", title = "Cheap concurrency in {C}", journal = j-SIGPLAN, volume = "20", number = "9", pages = "21--26", month = sep, year = "1985", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sat Apr 25 11:46:37 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6140D (High level languages); C6150J (Operating systems)", corpsource = "Dept. of Comput. Sci., Washington Univ., Seattle, WA, USA", keywords = "C language; C programming language; concurrency; interrupt handling; measurement; multiprocessing programs; mutual exclusion; process creation; process synchronization; process termination; simple kernel; UNIX", pubcountry = "USA A02", subject = "D.3.2 Software, PROGRAMMING LANGUAGES, Language Classifications, C \\ D.4.1 Software, OPERATING SYSTEMS, Process Management, Concurrency \\ D.3.3 Software, PROGRAMMING LANGUAGES, Language Constructs, Data types and structures \\ D.4.1 Software, OPERATING SYSTEMS, Process Management, Synchronization", treatment = "P Practical", } @Book{Birns:1985:UPM, author = "Peter M. Birns and Patrick B. Brown and John C. C. Muster", title = "{UNIX} for People\emdash {A} Modular Guide to the {UNIX} Operating System\emdash Visual Editing, Document Preparation, \& Other Resources", publisher = pub-PH, address = pub-PH:adr, pages = "xiii + 528", year = "1985", ISBN = "0-13-937459-0 (hardcover), 0-13-937442-6 (paperback)", ISBN-13 = "978-0-13-937459-3 (hardcover), 978-0-13-937442-5 (paperback)", LCCN = "QA76.6 .B5725 1985", bibdate = "Tue Oct 12 18:28:21 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Campbell:1985:PWR, author = "Roy H. Campbell and William J. Kubitz", title = "Professional Workstation Research Project", journal = j-IEEE-CGA, volume = "6", number = "5", pages = "17--24", month = may, year = "1985", CODEN = "ICGADZ", DOI = "http://dx.doi.org/10.1109/MCG.1986.276788", ISSN = "0272-1716 (print), 1558-1756 (electronic)", ISSN-L = "0272-1716", bibdate = "Sat Jan 25 06:42:48 MST 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliationaddress = "Univ of Illinois, Urbana, IL, USA", classification = "722; 723", conference = "First Int Conf on Comput Workstn", journalabr = "IEEE Comput Graphics Appl", keywords = "computer graphics; computer operating systems; computer programming languages --- Pascal; computer workstations; database systems --- Distributed; UNIX operating system", meetingaddress = "San Jose, CA, USA", meetingdate = "Nov 1985", meetingdate2 = "11/85", } @Article{Donahue:1985:IMC, author = "James Donahue", title = "Integration mechanisms in {Cedar}", journal = j-SIGPLAN, volume = "20", number = "7", pages = "245--251", month = jul, year = "1985", CODEN = "SINODQ", ISBN = "0-89791-165-2", ISBN-13 = "978-0-89791-165-8", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:14:50 MST 2003", bibsource = "Compendex database; http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "The Cedar environment provides a variety of somewhat novel integration mechanisms; they are the subject of this paper. We discuss Cedar from the viewpoint of a tool developer, discussing both `rights' and `responsibilities'; in building a new tool. We describe integration in Cedar from the `ground up'. First, we discuss the Cedar programming language and its effect on integration; the main point here is that in Cedar, one finds little `code stealing' and a lot of `code sharing'. Then we discuss Cedar packages; the key point here is that programmer's interfaces are just as important as the user's interface. Finally, we discuss the Cedar file system, FS, and the degree to which FS makes it easy to manage large numbers of files.", acknowledgement = ack-nhfb, affiliationaddress = "Xerox Palo Alto Research Cent, Palo Alto, CA, USA", classification = "723; C6115 (Programming support); C6140D (High level languages)", conference = "Proceedings of the ACM SIGPLAN 85 Symposium on Language Issues in Programming Environments.", conflocation = "Seattle, WA, USA; 25-28 June 1985", conftitle = "Proceedings of the ACM SIGPLAN 85 Symposium on Language Issues in Programming Environments", corpsource = "Xeros Palo Alto Res. Center, CA, USA", journalabr = "SIGPLAN Notices (ACM Special Interest Group on Programming Languages)", keywords = "Cedar; cedar packages; cedar programming environment; computer programming; computer programming languages; design; environment; file system; high level languages; integration mechanism; integration mechanisms; languages; packages; programming environments; programming language; theory; tool developer; tool development; Unix pipes; Unix shell; Unix tools", meetingaddress = "Seattle, WA, USA", pubcountry = "USA A25", sponsor = "ACM, Special Interest Group on Programming Languages, New York, NY, USA; ACM, Special Interest Group on Software Engineering, New York, NY, USA", sponsororg = "ACM", subject = "D.2.6 Software, SOFTWARE ENGINEERING, Programming Environments, CEDAR \\ D.3.2 Software, PROGRAMMING LANGUAGES, Language Classifications, Applicative languages", treatment = "P Practical", } @Book{Foxley:1985:US, author = "Eric Foxley", title = "{UNIX} for super-users", publisher = pub-AW, address = pub-AW:adr, pages = "xiv + 213", year = "1985", ISBN = "0-201-14228-7", ISBN-13 = "978-0-201-14228-0", LCCN = "QA76.76.O63 F69 1985 Bar", bibdate = "Fri Jun 2 16:28:17 MDT 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "UK\pounds 11.95", series = "International computer science series", acknowledgement = ack-nhfb, } @Article{Gerber:1985:TMR, author = "A. J. Gerber", title = "The trouble with mutual recursion in concurrent {Euclid}", journal = j-SIGPLAN, volume = "20", number = "8", pages = "64--70", month = aug, year = "1985", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sat Apr 25 11:46:37 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6140D (High level languages); C6150C (Compilers, interpreters and other processors)", corpsource = "Basser Dept. of Comput. Sci., Sydney Univ., NSW, Australia", keywords = "compiler; Concurrent Euclid; documentation; high level languages; mutual recursion; mutually recursive procedures; parallel processing; program compilers; University of Toronto; Unix; VAX", pubcountry = "USA A08", subject = "D.3.4 Software, PROGRAMMING LANGUAGES, Processors, Compilers \\ D.3.2 Software, PROGRAMMING LANGUAGES, Language Classifications, EUCLID \\ D.2.7 Software, SOFTWARE ENGINEERING, Distribution and Maintenance, Documentation", treatment = "P Practical", } @Article{Holland:1985:ESS, author = "Les Holland and Granino Korn and John Matson and Bob Seader and Phil Wolfe", title = "Engineering Support System Software", journal = j-IEEE-MICRO, volume = "5", number = "5", pages = "17--21", month = oct, year = "1985", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/MM.1985.304599", ISSN = "0272-1732 (print), 1937-4143 (electronic)", bibdate = "Mon Apr 7 14:32:46 MDT 1997", bibsource = "Compendex database; Database/Wiederhold.bib; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, annote = "No to UNIX, yes to databases.", classcodes = "C5620 (Computer networks and techniques); C6150J (Operating systems); C6160 (Database management systems (DBMS)); C7400 (Engineering computing)", classification = "723", journalabr = "IEEE Micro", keywords = "CAD; CAE; computer aided engineering; computer networks; computer software; controlled engineering/scientific database; database; database management systems; database systems; engineering computing; engineering database; engineering support system (ess); engineering support system software; operating systems (computers); scientific; system design; universal operating system; workstations", treatment = "P Practical", } @Article{Hornsby:1985:DIF, author = "C. Hornsby and C. H. C. Leung", title = "The Design and Implementation of a Flexible Retrieval Language for a {Prolog} Database System", journal = j-SIGPLAN, volume = "20", number = "9", pages = "43--51", month = sep, year = "1985", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sat Apr 25 11:46:37 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Implementation of a database management system in PROLOG.", acknowledgement = ack-nhfb, classification = "C6140D (High level languages); C6150C (Compilers, interpreters and other processors); C6160D (Relational databases); C6160D (Relational interpreters and other processors); C7250 (Information storage and retrieval)", corpsource = "Dept. of Comput. Sci., Univ. Coll. London, UK", keywords = "automatic normalisation; Averaging; built-in functions; common relational operators; Counting; deductive capabilities; design; flexible retrieval language; information retrieval; integrity constraints enforcement; intelligent database system; Join; logic programming language; PDP-11/44; performance; program compilers; Project; PROLOG; Prolog database system; relational; relational complete; relational databases; Select; Unix operating system", pubcountry = "USA A05 A05", subject = "D.3.4 Software, PROGRAMMING LANGUAGES, Processors, Compilers \\ D.3.2 Software, PROGRAMMING LANGUAGES, Language Classifications, Prolog \\ H.3.3 Information Systems, INFORMATION STORAGE AND RETRIEVAL, Information Search and Retrieval, Retrieval models \\ D.2.2 Software, SOFTWARE ENGINEERING, Tools and Techniques, Modules and interfaces", treatment = "P Practical", } @Book{Hunt:1985:CT, author = "William James Hunt", title = "The {C} Toolbox", publisher = pub-AW, address = pub-AW:adr, pages = "xviii + 413", year = "1985", ISBN = "0-201-11111-X", ISBN-13 = "978-0-201-11111-8", LCCN = "QA76.73.C15 H85 1985", bibdate = "Mon Oct 4 15:18:28 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "An excellent introduction to the use of C for the writing of software tools, with particular emphasis (but not limited to) the IBM PC. Tools developed include a screen-based file viewing utility, sorting programs, a B-tree module, assembly language primitives, and a terminal emulator.", price = "US\$19.95", acknowledgement = ack-nhfb, } @Book{Jaeschke:1985:LCN, author = "Rex Jaeschke", title = "Let's {C} Now", publisher = pub-PPB, address = pub-PPB:adr, year = "1985", ISBN = "0-9614729-2-8", ISBN-13 = "978-0-9614729-2-4", LCCN = "QA76.73.C15 J336 1985", bibdate = "Sun Jul 10 11:40:39 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @InProceedings{Kernighan:1985:RWU, author = "B. W. Kernighan", booktitle = "Proceedings of the European UNIX Users Group Conference, September, Copenhagen, Denmark", title = "Recent Work in {Unix} Document Preparation Tools", publisher = pub-EUUG, address = pub-EUUG:adr, pages = "??--??", month = sep, year = "1985", bibdate = "Sat Feb 10 15:31:09 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Kochan:1985:USP, author = "Stephen G. Kochan and Patrick H. Wood", title = "{UNIX} shell programming", publisher = pub-HAYDEN, address = pub-HAYDEN:adr, pages = "422", year = "1985", ISBN = "0-8104-6309-1 (paperback), 0-471-83900-0", ISBN-13 = "978-0-8104-6309-7 (paperback), 978-0-471-83900-2", LCCN = "QA76.76.O63 K64 1985", bibdate = "Mon Jan 8 06:35:48 MST 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", price = "US\$22.50 (est.)", series = "Hayden UNIX system library", acknowledgement = ack-nhfb, subject = "UNIX (Computer file); UNIX Shells", } @Book{Lozy:1985:EUE, author = "Mohamed el Lozy", title = "Editing in a {UNIX} environment\emdash the {\tt{vi}}\slash {\tt{ex}} editor", publisher = pub-PH, address = pub-PH:adr, pages = "xiv + 226", year = "1985", ISBN = "0-13-235599-X", ISBN-13 = "978-0-13-235599-5", LCCN = "QA76.6 .L69 1985", bibdate = "Sat Oct 01 18:15:16 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$18.95", acknowledgement = ack-nhfb, } @Article{Matthews:1985:PMP, author = "D. C. J. Matthews", title = "{Poly} manual: {Poly} and standard {ML}", journal = j-SIGPLAN, volume = "20", number = "9", pages = "52--76", month = sep, year = "1985", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sat Apr 25 11:46:37 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6140D (High level languages); C6160 (Database management systems (DBMS))", corpsource = "Comput. Lab., Cambridge Univ., UK", keywords = "Berkeley 4.2 VAX-Unix; database; database management systems; design; fist class objects; high level languages; persistent storage system; Poly; Poly/ML; programming language; Standard ML; Types", pubcountry = "USA A06", subject = "D.3.2 Software, PROGRAMMING LANGUAGES, Language Classifications, POLY \\ D.3.3 Software, PROGRAMMING LANGUAGES, Language Constructs, Abstract data types \\ D.3.3 Software, PROGRAMMING LANGUAGES, Language Constructs, Procedures, functions, and subroutines \\ D.3.4 Software, PROGRAMMING LANGUAGES, Processors, Compilers", treatment = "P Practical", } @TechReport{McKusick:1985:PIF, author = "M. Kirk McKusick and Mike Karels and Sam Leffler", title = "Performance improvements and functional enhancements in {4.3BSD}", type = "Report", number = "{UCB\slash CSD} 245", institution = "Computer Science Division, University of California, Berkeley", address = "Berkeley, CA, USA", pages = "12", year = "1985", bibdate = "Tue Sep 17 06:50:10 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Meertens:1985:DB, author = "L. Meertens and S. Pemberton", title = "Description of {B}", journal = j-SIGPLAN, volume = "20", number = "2", pages = "58--76", month = feb, year = "1985", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sat Apr 25 11:46:37 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6140D (High level languages)", corpsource = "Dept. of Comput. Sci., Centre for Math. and Comput. Sci., Amsterdam, Netherlands", keywords = "B language; high level languages; IBM-PC; MS-DOS; personal computing; UNIX", treatment = "P Practical", } @Article{Ousterhout:1985:TDA, author = "John K. Ousterhout and Herv{\'e} {Da Costa} and David Harrison and John A. Kunze and Mike Kupfer and James G. Thompson", title = "A trace-driven analysis of the {UNIX 4.2 BSD} file system", journal = j-OPER-SYS-REV, volume = "19", number = "5", pages = "15--24", month = dec, year = "1985", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 12:44:34 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Quarterman:1985:EUS, author = "John S. Quarterman and Abraham Silberschatz and James L. Peterson", title = "{4.2BSD} and {4.3BSD} as Examples of the {UNIX} System", journal = j-COMP-SURV, volume = "17", number = "4", pages = "379--418", month = dec, year = "1985", CODEN = "CMSVAN", ISSN = "0360-0300 (print), 1557-7341 (electronic)", bibdate = "Wed Dec 18 07:42:17 MST 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org/pubs/toc/Abstracts/0360-0300/6043.html", abstract = "This paper presents an in-depth examination of the 4. 2 Berkeley Software Distribution, Virtual VAX-11 Version (4. 2BSD), which is a version of the UNIX Time-Sharing System. There are notes throughout on 4. 3BSD, the forthcoming system from the University of California at Berkeley. We trace the historical development of the UNIX system from its conception in 1969 until today, and describe the design principles that have guided this development. We then present the internal data structures and algorithms used by the kernel to support the user interface. In particular, we describe process management, memory management, the file system, the I/O system, and communications. We conclude with a brief description of the user interface and a set of bibliographic notes.", acknowledgement = ack-nhfb, affiliation = "Univ of Texas, Austin, TX, USA", affiliationaddress = "Univ of Texas, Austin, TX, USA", classification = "722; 723", keywords = "4.2BSD UNIX; 4.3BSD UNIX; computer operating systems; computer systems, digital --- Distributed; distributed operating systems, design; performance; reliability; security; theory", review = "ACM CR 8706-0484", subject = "{\bf D.4.0}: Software, OPERATING SYSTEMS, General, UNIX. {\bf D.4.7}: Software, OPERATING SYSTEMS, Organization and Design, Interactive systems. {\bf K.2}: Computing Milieux, HISTORY OF COMPUTING.", } @Book{Rochkind:1985:AUP, author = "Marc J. Rochkind", title = "Advanced {UNIX} Programming", publisher = pub-PH, address = pub-PH:adr, pages = "xv + 265", year = "1985", ISBN = "0-13-011818-4 (hardcover), 0-13-011800-1 (paperback)", ISBN-13 = "978-0-13-011818-9 (hardcover), 978-0-13-011800-4 (paperback)", LCCN = "QA76.76.O63 R63 1985", bibdate = "Wed Dec 15 10:41:14 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$32.95 (hardcover), US\$24.95 (paperback)", acknowledgement = ack-nhfb, } @Book{Schreiner:1985:ICC, author = "Axel T. Schreiner and H. George {Friedman, Jr.}", title = "Introduction to Compiler Construction Under {UNIX}", publisher = pub-PH, address = pub-PH:adr, pages = "viii + 194", year = "1985", ISBN = "0-13-474396-2", ISBN-13 = "978-0-13-474396-7", LCCN = "QA76.76.C65 S37 1985", bibdate = "Tue Jan 12 16:03:28 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "ftp://ftp.cs.uiuc.edu/pub/faculty/friedman/tar", acknowledgement = ack-nhfb, } @Book{Ward:1985:APT, author = "Terry A. Ward", title = "Applied Programming Techniques in {C}", publisher = pub-SF, address = pub-SF:adr, pages = "xii + 349", year = "1985", ISBN = "0-673-18050-6", ISBN-13 = "978-0-673-18050-6", LCCN = "QA76.73.C15 W37 1985", bibdate = "Mon Oct 4 15:24:16 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$19.95", acknowledgement = ack-nhfb, } @Book{Wood:1985:USS, author = "Patrick H. Wood and Stephen G. Kochan", title = "{UNIX} System Security", publisher = pub-HAYDEN, address = pub-HAYDEN:adr, pages = "299", year = "1985", ISBN = "0-8104-6267-2", ISBN-13 = "978-0-8104-6267-0", LCCN = "QA76.76.O63 W66 1985", bibdate = "Fri Jun 2 16:28:17 MDT 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Hayden UNIX system library", acknowledgement = ack-nhfb, keywords = "computer security; UNIX (computer file)", } @Article{Alexander:1986:CMP, author = "Cedell Alexander and William Keshlear and Furrokh Cooper and Faye Briggs", title = "Cache memory performance in a {Unix} environment", journal = j-COMP-ARCH-NEWS, volume = "14", number = "3", pages = "41--61", month = jun, year = "1986", CODEN = "CANED2", ISSN = "0163-5964 (ACM), 0884-7495 (IEEE)", bibdate = "Fri May 12 09:40:55 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Anderson:1986:UCS, author = "Gail Anderson and Paul Anderson", title = "The {UNIX C} Shell Field Guide", publisher = pub-PH, address = pub-PH:adr, pages = "xxi + 374", year = "1986", ISBN = "0-13-937468-X", ISBN-13 = "978-0-13-937468-5", LCCN = "QA76.76.O63 A6 1986", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "The C-Shell bible\emdash everything you need to know to use {UNIX}.", acknowledgement = ack-sk, } @Book{Arthur:1986:USP, author = "Lowell Jay Arthur", title = "{UNIX} Shell programming", publisher = pub-WILEY-INTERSCIENCE, address = pub-WILEY-INTERSCIENCE:adr, pages = "xv + 261", year = "1986", ISBN = "0-471-84932-4, 0-471-83900-0 (paperback)", ISBN-13 = "978-0-471-84932-2, 978-0-471-83900-2 (paperback)", LCCN = "QA76.76.O63 A765 1986", bibdate = "Mon Jan 8 06:35:48 MST 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "UNIX (Computer file); UNIX Shells", } @Book{ATT:1986:AUSa, author = "AT{\&T}", key = "ATT", title = "{AT}{\&T UNIX} System Readings and Applications", volume = "I", publisher = pub-PH, address = pub-PH:adr, pages = "xiv + 397", year = "1986", ISBN = "0-13-938532-0", ISBN-13 = "978-0-13-938532-2", LCCN = "QA76.76.O63 U553 1986", bibdate = "Sat Oct 28 08:41:39 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{ATT:1986:AUSb, author = "AT{\&T}", key = "ATT", title = "{AT}{\&T UNIX} System Readings and Applications", volume = "II", publisher = pub-PH, address = pub-PH:adr, pages = "xii + 324", year = "1986", ISBN = "0-13-939845-7", ISBN-13 = "978-0-13-939845-2", LCCN = "QA76.76.O63 U553 1986", bibdate = "Sat Oct 28 08:41:40 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{ATT:1986:UPMa, author = "AT{\&T}", key = "ATT", title = "{UNIX Programmer}'s {Manual}\emdash {Commands} and {Utilities}", volume = "1", publisher = pub-HRW, address = pub-HRW:adr, pages = "xxix + 523", year = "1986", ISBN = "0-03-009317-1", ISBN-13 = "978-0-03-009317-3", LCCN = "QA76.76.O63 U548 1986", bibdate = "Sat Oct 28 08:41:40 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{ATT:1986:UPMb, author = "AT{\&T}", key = "ATT", title = "{UNIX Programmer}'s {Manual}\emdash {System Calls} and {Library Routines}", volume = "2", publisher = pub-HRW, address = pub-HRW:adr, pages = "xxxv + 465", year = "1986", ISBN = "0-03-009314-7", ISBN-13 = "978-0-03-009314-2", LCCN = "QA76.76.O63 U548 1986", bibdate = "Sat Oct 28 08:41:40 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{ATT:1986:UPMc, author = "AT{\&T}", key = "ATT", title = "{UNIX Programmer}'s {Manual}\emdash {System Administration Facilities}", volume = "3", publisher = pub-HRW, address = pub-HRW:adr, pages = "xiv + 142", year = "1986", ISBN = "0-03-009313-9", ISBN-13 = "978-0-03-009313-5", LCCN = "QA76.76.O63 U548 1986", bibdate = "Sat Oct 28 08:41:40 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{ATT:1986:UPMd, author = "AT{\&T}", key = "ATT", title = "{UNIX Programmer}'s {Manual}\emdash {Document Preparation}", volume = "4", publisher = pub-HRW, address = pub-HRW:adr, pages = "xiii + 355", year = "1986", ISBN = "0-03-011207-9", ISBN-13 = "978-0-03-011207-2", LCCN = "QA76.76.O63 U548 1986", bibdate = "Sat Oct 28 08:41:41 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{ATT:1986:UPMe, author = "AT{\&T}", key = "ATT", title = "{UNIX Programmer}'s {Manual}\emdash {Languages} and {Support Tools}", volume = "5", publisher = pub-HRW, address = pub-HRW:adr, pages = "xviii + 168", year = "1986", ISBN = "0-03-011204-4", ISBN-13 = "978-0-03-011204-1", LCCN = "QA76.76.O63 U548 1986", bibdate = "Sat Oct 28 08:41:41 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{ATT:1986:USV, author = "AT{\&T}", key = "ATT", title = "{UNIX System V Programmer}'s {Guide}", publisher = pub-HRW, address = pub-HRW:adr, pages = "xiv + 832", year = "1986", ISBN = "0-13-940438-4", ISBN-13 = "978-0-13-940438-2", LCCN = "QA76.76.O63 U556 1987", bibdate = "Sat Oct 28 08:41:42 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{ATT:AUS86-1, author = "AT{\&T}", key = "ATT", title = "{AT}{\&T UNIX} System Readings and Applications", volume = "I", publisher = pub-PH, address = pub-PH:adr, pages = "xiv + 397", year = "1986", ISBN = "0-13-938532-0", ISBN-13 = "978-0-13-938532-2", LCCN = "QA76.76.O63 U553 1986", bibdate = "Sat Oct 28 08:25:56 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", xxnote = "NB: special form AT{\&T} required to get correct alpha-style labels.", } @Book{ATT:AUS86-2, author = "AT{\&T}", key = "ATT", title = "{AT}{\&T UNIX} System Readings and Applications", volume = "II", publisher = pub-PH, address = pub-PH:adr, pages = "xii + 324", year = "1986", ISBN = "0-13-939845-7", ISBN-13 = "978-0-13-939845-2", LCCN = "QA76.76.O63 U553 1986", bibdate = "Sat Oct 28 08:25:58 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", xxnote = "NB: special form AT{\&T} required to get correct alpha-style labels.", } @Book{ATT:UPM86-1, author = "AT{\&T}", key = "ATT", title = "{UNIX Programmer}'s {Manual}\emdash {Commands} and {Utilities}", volume = "1", publisher = pub-HRW, address = pub-HRW:adr, pages = "xxix + 524", year = "1986", ISBN = "0-03-009317-1", ISBN-13 = "978-0-03-009317-3", LCCN = "QA76.76.O63 U548 1986", bibdate = "Sat Oct 28 08:26:04 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", xxnote = "NB: special form AT{\&T} required to get correct alpha-style labels.", } @Book{ATT:UPM86-2, author = "AT{\&T}", key = "ATT", title = "{UNIX Programmer}'s {Manual}\emdash {System Calls} and {Library Routines}", volume = "2", publisher = pub-HRW, address = pub-HRW:adr, pages = "xxxv + 465", year = "1986", ISBN = "0-03-009314-7", ISBN-13 = "978-0-03-009314-2", LCCN = "QA76.76.O63 U548 1986", bibdate = "Sat Oct 28 08:26:05 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", } @Book{ATT:UPM86-3, author = "AT{\&T}", key = "ATT", title = "{UNIX Programmer}'s {Manual}\emdash {System} {Administration Facilities}", volume = "3", publisher = pub-HRW, address = pub-HRW:adr, pages = "xiv + 142", year = "1986", ISBN = "0-03-009313-9", ISBN-13 = "978-0-03-009313-5", LCCN = "QA76.76.O63 U548 1986", bibdate = "Sat Oct 28 08:26:07 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", xxnote = "NB: special form AT{\&T} required to get correct alpha-style labels.", } @Book{ATT:UPM86-4, author = "AT{\&T}", key = "ATT", title = "{UNIX Programmer}'s {Manual}\emdash {Document} {Preparation}", volume = "4", publisher = pub-HRW, address = pub-HRW:adr, pages = "xiii + 355", year = "1986", ISBN = "0-03-011207-9", ISBN-13 = "978-0-03-011207-2", LCCN = "QA76.76.O63 U548 1986", bibdate = "Sat Oct 28 08:26:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", xxnote = "NB: special form AT{\&T} required to get correct alpha-style labels.", } @Book{ATT:UPM86-5, author = "AT{\&T}", key = "ATT", title = "{UNIX Programmer}'s {Manual}\emdash {Languages} and {Support Tools}", volume = "5", publisher = pub-HRW, address = pub-HRW:adr, pages = "xviii + 618", year = "1986", ISBN = "0-03-011204-4", ISBN-13 = "978-0-03-011204-1", LCCN = "QA76.76.O63 U548 1986", bibdate = "Sat Oct 28 08:26:09 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", xxnote = "NB: special form AT{\&T} required to get correct alpha-style labels.", } @Book{ATT:USV86, author = "AT{\&T}", key = "ATT", title = "{UNIX System V Programmer}'s {Guide}", publisher = pub-HRW, address = pub-HRW:adr, pages = "xiv + 832", year = "1986", ISBN = "0-13-940438-4", ISBN-13 = "978-0-13-940438-2", LCCN = "QA76.76.O63 U556 1987", bibdate = "Sat Oct 28 08:26:11 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", xxnote = "NB: special form AT{\&T} required to get correct alpha-style labels.", } @Book{Bach:1986:DUO, author = "Maurice J. Bach", title = "The Design of the {UNIX} Operating System", publisher = pub-PH, address = pub-PH:adr, pages = "xiv + 471", year = "1986", ISBN = "0-13-201799-7", ISBN-13 = "978-0-13-201799-2", LCCN = "QA76.76.O63 B32 1986", bibdate = "Mon Oct 4 11:54:12 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "See also \cite{Goodheart:1994:MGE}.", acknowledgement = ack-nhfb, } @Book{Bach:1986:UTS, editor = "Fred Bach and Adalbert Baur and Christian Jansen", title = "{UNIX-Tabellenbuch f{\"u}r die Systeme UNIX Version 7, UNIX System III, UNIX System V, SINIX, XENIX 286, 4.2 BSD, XENIX 86}", publisher = "Hanser", address = "Munich, Germany; Vienna, Austria", pages = "287 (est.)", year = "1986", ISBN = "3-446-14622-9", ISBN-13 = "978-3-446-14622-8", LCCN = "????", bibdate = "Tue Sep 17 07:28:08 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, language = "German", } @Book{Bach:DUO86, author = "Maurice J. Bach", title = "The Design of the {UNIX} Operating System", publisher = pub-PH, address = pub-PH:adr, pages = "xiv + 471", year = "1986", ISBN = "0-13-201799-7", ISBN-13 = "978-0-13-201799-2", LCCN = "QA76.76.O63 B33 1986", bibdate = "Tue Dec 14 22:40:07 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", } @Article{Barr:1986:UGD, author = "W. J. Barr", title = "{Unix}-Based Gateway to Distributed Database Systems", journal = j-J-SYST-SOFTW, volume = "6", number = "3", pages = "225--235", month = aug, year = "1986", CODEN = "JSSODM", ISSN = "0164-1212", bibdate = "Wed Dec 16 15:40:53 MST 1998", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliationaddress = "Bell Communications Research, Morristown, NJ, USA", classification = "723", journalabr = "J Syst Software", keywords = "computer networks; data transmission; database systems; Distributed; ISO reference model; protocol translation; UNIX-based gateway", } @Article{Berglund:1986:IV, author = "Eric J. Berglund", title = "An introduction to the {V}-system", journal = j-IEEE-MICRO, volume = "6", number = "4", pages = "35--52", month = aug, year = "1986", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/MM.1986.304778", ISSN = "0272-1732 (print), 1937-4143 (electronic)", bibdate = "Mon Apr 7 14:32:46 MDT 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliationaddress = "Stanford Univ, CA, USA", classcodes = "C6150J (Operating systems); C6160B (Distributed DBMS)", classification = "722; 723", corpsource = "Dept. of Comput. Sci., Stanford Univ., CA, USA", journalabr = "IEEE Micro", keywords = "abstract representation; abstraction; applications; client/server model; computer architecture; computer operating systems; data; database systems --- Distributed; Design; distributed; distributed databases; distributed systems; operating systems (computers); server; system resources; UNIX system; v-system; V-system; workstation", treatment = "T Theoretical or Mathematical", } @TechReport{Cody:1986:ALB, author = "W. J. Cody", title = "An Alternative Library under {4.2 BSD UNIX} on a {VAX 11\slash 780}", type = "Technical Report", number = "ANL-86-10", institution = inst-ANL, address = inst-ANL:adr, pages = "iii + 30", month = feb, year = "1986", bibdate = "Sat Sep 24 00:36:25 1994", bibsource = "ftp://ftp.math.utah.edu/pub/bibnet/authors/c/cody-william-j.bib; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Corsini:1986:MID, author = "Paolo Corsini and Cosimo Antonio Prete", title = "Multibug: Interactive Debugging in Distributed Systems", journal = j-IEEE-MICRO, volume = "6", number = "3", pages = "26--33", month = jun, year = "1986", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/MM.1986.304671", ISSN = "0272-1732 (print), 1937-4143 (electronic)", bibdate = "Mon Apr 7 14:32:46 MDT 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib; Parallel/debug_3.1.bib; Parallel/par.debug.bib", acknowledgement = ack-nhfb, affiliationaddress = "Univ di Pisa, Italy", classcodes = "C6150G (Diagnostic, testing, debugging and evaluating systems)", classification = "721; 722; 723", corpsource = "Istituto de Elettronica e Telecommun., Pisa Univ., Italy", journalabr = "IEEE Micro", keywords = "computers --- Debugging; database systems; Distributed; distributed processing; distributed systems; interactive debugger; interactive debugging; interconnected monoprocessor nodes; multibug; Multibug; object files; program debugging; protocol; protocols; shell programs; UNIX environment; Unix environment", treatment = "P Practical", } @TechReport{Dawson:1986:UWP, author = "N. Dawson", title = "{UNIX} Word Processing at {HAO} (for use with the {4.2 BSD} Version and {\tt -me} Macro Package)", type = "Report", number = "ANL-86-10", institution = "National Science Foundation", address = "Washington, DC, USA", year = "1986", bibdate = "Tue Sep 17 07:19:08 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Contract No. W-31-109-ENG-38.", acknowledgement = ack-nhfb, } @Article{Dreiheller:1986:PPP, author = "A. Dreiheller and M. Moerschbacher and B. Mohr", title = "{PHYSCAL}: Programming {Pascal} with physical units", journal = j-SIGPLAN, volume = "21", number = "12", pages = "114--123", month = dec, year = "1986", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:15:06 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6110 (Systems analysis and programming); C6140D (High level languages)", keywords = "input/output facilities; language extension; language implementation; languages; Pascal; PHYSCAL; PHYSCAL-to-Pascal preprocessor; physical units; predefined units; programming; scale factors; UNIX environment; UNIX implementation", pubcountry = "USA A06", subject = "D.3.2 Software, PROGRAMMING LANGUAGES, Language Classifications, Pascal \\ J.2 Computer Applications, PHYSICAL SCIENCES AND ENGINEERING", treatment = "P Practical", } @Article{Ewing:1986:OOO, author = "J. J. Ewing", title = "An object-oriented operating system interface", journal = j-SIGPLAN, volume = "21", number = "11", pages = "46--53", month = nov, year = "1986", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sat Apr 25 11:46:37 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6140D (High level languages); C6150J (Operating systems)", conflocation = "Portland, OR, USA; 29 Sept.-2 Oct. 1986", conftitle = "OOPSLA '86. Object-Orientated Programming Systems, Languages and Applications. Conference Proceedings", corpsource = "Artificial Intelligence Machines, Tektronix Inc, Wilsonville, OR, USA", keywords = "computer interfaces; higher order abstractions; object-oriented interface; object-oriented operating system interface; operating system facilities; operating system processes; operating systems (computers); programming; Smalltalk; Smalltalk-80 programming environment; Unix-like operating system", pubcountry = "USA A06 A06", sponsororg = "ACM", treatment = "P Practical", } @Book{Gehani:1986:DFT, author = "Narain Gehani", title = "Document Formatting and Typesetting on the {UNIX} System", publisher = pub-SILICON, address = pub-SILICON:adr, pages = "xv + 364", year = "1986", ISBN = "0-9615336-0-9", ISBN-13 = "978-0-9615336-0-1", LCCN = "Z52.5.U54 G43 1986", bibdate = "Thu Aug 30 07:30:17 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$33.95", acknowledgement = ack-nhfb, keywords = "documentation; languages", review = "ACM CR 8607-0584", subject = "I.7.2 Computing Methodologies, TEXT PROCESSING, Document Preparation, Format and notation \\ I.7.2 Computing Methodologies, TEXT PROCESSING, Document Preparation, Languages \\ D.4.0 Software, OPERATING SYSTEMS, General, UNIX", } @Book{Griswold:1986:IIP, author = "Ralph E. Griswold and Madge T. Griswold", title = "The Implementation of the {Icon} Programming Language", publisher = pub-PUP, address = pub-PUP:adr, pages = "x + 336", year = "1986", ISBN = "0-691-08431-9", ISBN-13 = "978-0-691-08431-2", LCCN = "QA76.73.I19 G76 1986", bibdate = "Sun Jul 10 01:07:50 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.50", acknowledgement = ack-nhfb, } @Article{Groening:1986:NNM, author = "K. Groening and C. Ohsendoth", title = "{NEMO}: {A} nicely modified {YACC}", journal = j-SIGPLAN, volume = "21", number = "4", pages = "58--66", month = apr, year = "1986", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:14:57 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6150C (Compilers, interpreters and other processors); C6150J (Operating systems); C7410D (Electronic engineering computing)", corpsource = "Dortmund Univ., West Germany", keywords = "DACAPO-III; languages; modular semantic; modular semantic analysis; program compilers; UNIX compiler-compiler; VLSI", pubcountry = "USA A04", subject = "D.3.4 Software, PROGRAMMING LANGUAGES, Processors, Compilers \\ D.3.4 Software, PROGRAMMING LANGUAGES, Processors, Parsing", treatment = "P Practical", } @Article{Grune:1986:GPC, author = "Dick Grune", title = "Generic packages in {C}", journal = j-SIGPLAN, volume = "21", number = "8", pages = "31--39", month = aug, year = "1986", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:15:02 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6120 (File organisation); C6150C (Compilers, interpreters and other processors)", corpsource = "Vrije Univ., Amsterdam, Netherlands", keywords = "auxiliary code; body file; C compiler; C language; C listings; dependency control; file organisation; generic packages; header files; instantiation parameters; languages; object files; preprocessor; program compilers; specification file; Unix", pubcountry = "USA A03", subject = "D.3.2 Software, PROGRAMMING LANGUAGES, Language Classifications, C \\ D.4.3 Software, OPERATING SYSTEMS, File Systems Management, Maintenance", treatment = "P Practical", } @Book{Hansen:1986:TVU, author = "August Hansen", title = "{\tt vi}\emdash The {UNIX} Screen Editor\emdash {A} User's Guide", publisher = pub-BRADY, address = pub-BRADY:adr, pages = "xvii + 230", year = "1986", ISBN = "0-89303-928-4", ISBN-13 = "978-0-89303-928-8", LCCN = "QA76.76.T49 H36 1986", bibdate = "Tue Jan 11 10:05:07 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Hu:1986:MFA, author = "Irene Hu", title = "Measuring file access patterns in {UNIX}", journal = j-SIGMETRICS, volume = "14", number = "2", pages = "15--20", month = aug, year = "1986", CODEN = "????", DOI = "http://doi.acm.org/10.1145/15827.15828", ISSN = "0163-5999 (print), 1557-9484 (electronic)", ISSN-L = "0163-5999", bibdate = "Thu Jun 26 11:04:16 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "UNIX is a disk-based operating system, where only the system kernel is always memory-resident. A combination of small block size, limited read-ahead and numerous seeks can severely limit the file system throughput. This paper presents a tool to study the file access patterns. Information derived from the data collected can be used to determine the optimal disk block size and also to improve the block placement strategy. The tool is a software monitor, installed at the device driver level, and triggered by every physical request to the disk handler. The design approach used to measure the average number of logical records accessed sequentially is described. An evaluation of the tool is also presented.", acknowledgement = ack-nhfb, } @Book{IEEE:1986:ITU, author = "{IEEE}", title = "{IEEE} Trial-Use Standard Portable Operating System for Computer Environments", publisher = pub-WILEY-INTERSCIENCE, address = pub-WILEY-INTERSCIENCE:adr, edition = "{IEEE Std} 1003.1", pages = "207", month = apr, year = "1986", ISBN = "0-471-85027-6", ISBN-13 = "978-0-471-85027-4", LCCN = "TK 275 I5 Std 1003.1", bibdate = "Sat Oct 28 08:41:48 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @InProceedings{Isaak:1986:IRT, author = "J. Isaak", title = "The Impact of Real Time Computer Systems Standards: {VME}, {POSIX} and {MAP}", crossref = "Anonymous:1986:IIC", pages = "98--104", year = "1986", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Jaeschke:1986:SCH, author = "Rex Jaeschke", title = "Solutions in {C}\emdash Hundreds of Programming Tips by the Author of ``Doctor {C}'s Pointers''", publisher = pub-AW, address = pub-AW:adr, pages = "247", year = "1986", ISBN = "0-201-15042-5", ISBN-13 = "978-0-201-15042-1", LCCN = "QA76.73.C15 J34 1986", bibdate = "Mon Oct 4 13:30:15 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$17.95", acknowledgement = ack-nhfb, } @Article{Jouvelot:1986:DNL, author = "P. Jouvelot", title = "Designing new languages or new language manipulation systems using {ML}", journal = j-SIGPLAN, volume = "21", number = "8", pages = "40--52", month = aug, year = "1986", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:15:02 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6115 (Programming support); C6140 (Programming languages)", corpsource = "Paris VI Univ., Paris, France", keywords = "denotational theory; language design; languages; ML language; Pascal-like programming language; programming environments; programming languages; programming theory; Unix-4.2BSD implementation", pubcountry = "USA A04 A04", subject = "D.3.2 Software, PROGRAMMING LANGUAGES, Language Classifications, ML", treatment = "P Practical; T Theoretical or Mathematical", } @Book{Manis:1986:USP, author = "Rod Manis and Marc H. Meyer", title = "The {UNIX} shell programming language", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xiii + 303", year = "1986", ISBN = "0-672-22497-6 (paperback)", ISBN-13 = "978-0-672-22497-3 (paperback)", LCCN = "QA76.76.O63 M35 1986", bibdate = "Mon Jan 8 06:35:48 MST 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", price = "US\$24.94", acknowledgement = ack-nhfb, subject = "UNIX (Computer file); UNIX Shells", } @Book{Strang:1986:PTC, author = "John Strang", title = "Programming with {\tt curses}", publisher = pub-ORA, address = pub-ORA:adr, pages = "71", year = "1986", ISBN = "0-937175-02-1", ISBN-13 = "978-0-937175-02-6", bibdate = "Mon Jan 3 18:28:25 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Stroustrup:1986:CPL, author = "Bjarne Stroustrup", title = "The {C++} Programming Language", publisher = pub-AW, address = pub-AW:adr, pages = "viii + 327", year = "1986", ISBN = "0-201-12078-X", ISBN-13 = "978-0-201-12078-3", LCCN = "QA76.73.C153 S77 1986", bibdate = "Wed Dec 15 18:34:06 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, email = "\path|bs@alice.uucp|", } @Article{Sum:1986:AOS, author = "R. N. {Sum, Jr.} and R. H. Campbell and W. J. Kubitz", title = "An Approach to Operating System Testing", journal = j-J-SYST-SOFTW, volume = "6", number = "3", pages = "273--284", month = aug, year = "1986", CODEN = "JSSODM", ISSN = "0164-1212", bibdate = "Wed Dec 16 15:40:53 MST 1998", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliationaddress = "Univ of Illinois at Urbana-Champaign, Urbana, IL, USA", classification = "723", journalabr = "J Syst Software", keywords = "computer operating systems; computer software --- Testing; IBM System/9000 Xenix operating system; Testing; UNIX", } @Book{Sun:1986:UTN, author = "{Sun Microsystems}", title = "Using {\tt nroff} and {\tt troff} on the {Sun} Workstation. Rev. {A}", publisher = pub-SUN, address = pub-SUN:adr, pages = "xvii + 212", year = "1986", LCCN = "CM.2.5.07", bibdate = "Mon Mar 14 23:40:27 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Part number 800-1321-03", acknowledgement = ack-nhfb, } @Article{Turner:1986:OM, author = "D. Turner", title = "An overview of {Miranda}", journal = j-SIGPLAN, volume = "21", number = "12", pages = "158--166", month = dec, year = "1986", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:15:06 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6115 (Programming support); C6120 (File organisation); C6140D (High level languages)", corpsource = "Comput. Lab., Kent Univ., Canterbury, UK", keywords = "abstract data types; advanced functional programming system; block structure; currying; data structures; guarded equations; high level languages; higher order functions; infinite lists; languages; lazy evaluation; linking; Miranda; Miranda programming environment; pattern matching; polymorphic strong typing; programming environments; separate compilation; type synonyms; UNIX operating system; user defined types; ZF expressions", pubcountry = "USA A11", subject = "D.3.2 Software, PROGRAMMING LANGUAGES, Language Classifications \\ D.4.0 Software, OPERATING SYSTEMS, General, UNIX", treatment = "P Practical; R Product Review", } @Manual{Apollo:1987:MBS, title = "Managing {BSD} system software", organization = "Apollo Computer Inc.", address = "Chelmsford, MA, USA", year = "1987", bibdate = "Tue Sep 17 07:30:25 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Barron:1987:TPT, author = "David Barron and Mike Rees", title = "Text Processing and Typesetting with {UNIX}", publisher = pub-AW, address = pub-AW:adr, pages = "xiv + 447", year = "1987", ISBN = "0-201-14219-8", ISBN-13 = "978-0-201-14219-8", LCCN = "Z286.D47 B37 1987", bibdate = "Mon Jul 25 11:50:00 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$24.95; UK\pounds 15.95", series = "International computer science series", acknowledgement = ack-nhfb, keywords = "documentation", review = "ACM CR 8811-0841", subject = "I.7.2 Computing Methodologies, TEXT PROCESSING, Document Preparation, nroff \\ I.7.2 Computing Methodologies, TEXT PROCESSING, Document Preparation, troff", } @MastersThesis{Basler:1987:IKM, author = "Werner Basler", title = "{Interprozess-Kommunikations-Mechanismen: Beschreibung der Interprozess-Kommunikations-Mechanismen in den UNIX-Betriebssystemen 4.2 BSD und AT\&T System V}. ({German}) [Interprocess Communication Mechanisms: Description of the Interprocess Communication Mechanisms in the {UNIX 4.2 BSD} and {AT\&T System V} Operating Systems]", type = "Semesterarbeit", school = "Institut f{\"u}r Informatik der Universit{\"a}t Z{\"u}rich", address = "Z{\"u}rich, Switzerland", pages = "65", year = "1987", bibdate = "Tue Sep 17 07:22:22 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, language = "German", } @Book{Campbell:1987:CPG, author = "Joe Campbell", title = "{C} Programmer's Guide to Serial Communications", publisher = pub-HWS, address = pub-HWS:adr, pages = "xii + 655", year = "1987", ISBN = "0-672-22584-0", ISBN-13 = "978-0-672-22584-0", LCCN = "QA76.73.C15 C36 1987", bibdate = "Tue Oct 5 07:22:52 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$22.95", acknowledgement = ack-nhfb, } @Article{Carr:1987:IPC, author = "P. Carr and R. Stevenson and J. Alea and J. Berthold and G. Groucher and M. Davis and G. Dobbins and D. Law and V. Szarek and W. Webster", title = "Implementation of a Prototype {CAIS} Environment", journal = j-SIGADA-LETTERS, volume = "7", number = "2", pages = "58--72", month = mar # "\slash " # apr, year = "1987", CODEN = "AALEE5", ISSN = "0736-721X", bibdate = "Thu Sep 28 07:33:23 MDT 2000", bibsource = "ftp://ftp.uu.net/library/bibliography; http://www.adahome.com/Resources/Bibliography/articles.ref; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Ada Programming Support Environment (APSE), Unix; design; languages; performance", subject = "D.3.2 Software, PROGRAMMING LANGUAGES, Language Classifications, Ada \\ D.2.6 Software, SOFTWARE ENGINEERING, Programming Environments, Ada", } @Article{Cheriton:1987:UUS, author = "David R. Cheriton", title = "{UIO}: {A} {Uniform I/O} System Interface for Distributed Systems", journal = j-TOCS, volume = "5", number = "1", pages = "12--46", month = feb, year = "1987", CODEN = "ACSYEC", ISSN = "0734-2071", bibdate = "Thu Jan 14 06:47:30 MST 1999", bibsource = "Compendex database; http://www.acm.org/pubs/contents/journals/tocs/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80/pubs/citations/journals/tocs/1987-5-1/p12-cheriton/", abstract = "The UIO (uniform I/O) system interface that has been used for the past five years in the V distributed operating system is described, with the focus on the key design issues. This interface provides several extensions beyond the I/O interface of UNIX, including support for record I/O, locking, atomic transactions, and replication, as well as attributes that indicate whether optional semantics and operations are available. Experience in using and implementing this interface with a variety of different I/O services is described, along with the performance of both local and network I/O. It is concluded that the UIO interface provides a uniform I/O system interface with significant functionality, wide applicability, and no significant performance penalty.", acknowledgement = ack-nhfb, affiliationaddress = "Stanford Univ, Stanford, CA, USA", classification = "722; 723", journalabr = "ACM Trans Comput Syst", keywords = "computer interfaces; computer operating systems; computer systems, digital --- Distributed; design; experimentation; files input/output; interprocess communication; performance; remote procedure call; standardization; uniform I/O interface", subject = "{\bf D.4.4} Software, OPERATING SYSTEMS, Communications Management, Input/output. {\bf C.2.4} Computer Systems Organization, COMPUTER-COMMUNICATION NETWORKS, Distributed Systems, Network operating systems. {\bf D.4.7} Software, OPERATING SYSTEMS, Organization and Design, Distributed systems. {\bf C.2.0} Computer Systems Organization, COMPUTER-COMMUNICATION NETWORKS, General, Security and protection (e.g., firewalls).", } @Book{Christian:1987:UTP, author = "Kaare Christian", title = "The {UNIX} text processing system", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xii + 250", year = "1987", ISBN = "0-471-85581-2", ISBN-13 = "978-0-471-85581-1", LCCN = "QA76.76.O63 C47 1987", bibdate = "Mon Jul 25 11:51:08 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$24.95", acknowledgement = ack-nhfb, keywords = "documentation; languages", review = "ACM CR 8806-0406", subject = "I.7.2 Computing Methodologies, TEXT PROCESSING, Document Preparation \\ I.7.1 Computing Methodologies, TEXT PROCESSING, Text Editing \\ D.4.0 Software, OPERATING SYSTEMS, General, UNIX \\ D.4.9 Software, OPERATING SYSTEMS, Systems Programs and Utilities", } @Book{Cruz:1987:KFT, author = "Frank da Cruz", title = "Kermit\emdash {A} File Transfer Protocol", publisher = pub-DP, address = pub-DP:adr, pages = "xvii + 379", year = "1987", ISBN = "0-932376-88-6", ISBN-13 = "978-0-932376-88-6", LCCN = "TK5105.5 .D23 1987", bibdate = "Tue Oct 5 07:20:45 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Emerson:1987:TTT, author = "Sandra L. Emerson and Karen Paulsell", title = "{\tt troff} Typesetting for {UNIX} systems", publisher = pub-PH, address = pub-PH:adr, pages = "xx + 359", year = "1987", ISBN = "0-13-930959-4", ISBN-13 = "978-0-13-930959-5", LCCN = "Z253.4.U53 E45 1987", bibdate = "Tue Jan 11 10:14:11 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @Book{Emerson:1987:TTU, author = "Sandra L. Emerson and Karen Paulsell", title = "troff Typesetting for {UNIX} systems", publisher = pub-PH, address = pub-PH:adr, pages = "xx + 359", year = "1987", ISBN = "0-13-930959-4", ISBN-13 = "978-0-13-930959-5", LCCN = "Z253.4.U53 E45 1987", bibdate = "Wed Aug 10 11:26:52 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", acknowledgement = ack-nhfb, keywords = "design; documentation; performance", review = "ACM CR 8712-0981", subject = "I.7.2 Computing Methodologies, TEXT PROCESSING, Document Preparation, troff \\ D.4.0 Software, OPERATING SYSTEMS, General, UNIX", } @Book{Gehani:1987:DFT, author = "Narain Gehani", title = "Document Formatting and Typesetting on the {UNIX} System", publisher = pub-SILICON, address = pub-SILICON:adr, edition = "Second", pages = "xv + 377", year = "1987", ISBN = "0-9615336-2-5", ISBN-13 = "978-0-9615336-2-5", LCCN = "Z52.5.U54G43 1987", bibdate = "Thu Aug 30 07:30:57 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$40.90", acknowledgement = ack-nhfb, } @Article{Guenther:1987:REU, author = "G. R. Guenther", title = "Running 7th edition {UNIX} programs on a {VAX} in compatibility mode", journal = j-OPER-SYS-REV, volume = "21", number = "1", pages = "30--33", month = jan, year = "1987", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:35 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Harbison:1987:CAR, author = "Samuel P. Harbison and Guy L. {Steele Jr.}", title = "{C}\emdash {A} Reference Manual", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "xii + 404", year = "1987", ISBN = "0-13-109802-0", ISBN-13 = "978-0-13-109802-2", LCCN = "QA76.73.C15 H38 1987", bibdate = "Wed Dec 15 08:02:04 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Haviland:1987:USP, author = "Keith Haviland and Ben Salama", title = "{UNIX} System Programming", publisher = pub-AW, address = pub-AW:adr, pages = "xv + 339", year = "1987", ISBN = "0-201-12919-1", ISBN-13 = "978-0-201-12919-9", LCCN = "QA76.76.O63 H38 1987", bibdate = "Fri Jun 2 16:28:17 MDT 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "UK\pounds 15.95", series = "International computer science series", acknowledgement = ack-nhfb, keywords = "UNIX (computer file)", } @Book{Holub:1987:CWU, author = "Allen I. Holub", title = "On Command: Writing a {Unix}-Like Shell for {MS-DOS}", publisher = pub-MT, address = pub-MT:adr, pages = "319", year = "1987", ISBN = "0-934375-29-1", ISBN-13 = "978-0-934375-29-0", LCCN = "QA76.76.O63H65 1987", bibdate = "Fri Sep 11 07:45:53 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Holub:curses, author = "Allen I. Holub", title = "Curses: {UNIX}-Compatible Windowing Output Functions", journal = j-DDJ, volume = "12", number = "7", pages = "94--104, 74--93", month = jul, year = "1987", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", } @InCollection{Johnson:1987:LDT, author = "Steven C. Johnson and Michael E. Lesk", booktitle = "{UNIX} System Readings and Applications", title = "Language Development Tools", publisher = pub-PH, address = pub-PH:adr, pages = "245--265", year = "1987", ISBN = "0-13-938532-0", ISBN-13 = "978-0-13-938532-2", bibdate = "Mon Oct 4 11:55:40 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Reprinted from {The Bell System Technical Journal}, 1978", acknowledgement = ack-nhfb, } @InCollection{Johnson:tools87, author = "Steven C. Johnson and Michael E. Lesk", booktitle = "{UNIX} System Readings and Applications", title = "Language Development Tools", publisher = pub-PH, address = pub-PH:adr, pages = "245--265", year = "1987", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Reprinted from {The Bell System Technical} {Journal}, 1978", } @Article{Koch:1987:DFA, author = "Philip D. L. Koch", title = "Disk File Allocation Based on the Buddy System", journal = j-TOCS, volume = "5", number = "4", pages = "352--370", month = nov, year = "1987", CODEN = "ACSYEC", ISSN = "0734-2071", bibdate = "Thu Jan 14 06:47:30 MST 1999", bibsource = "Compendex database; http://www.acm.org/pubs/contents/journals/tocs/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80/pubs/citations/journals/tocs/1987-5-4/p352-koch/", abstract = "A variant of the binary buddy system that reduces fragmentation is described. Files are allocated on up to t extents, and inoptimally allocated files are periodically reallocated. The Dartmouth Time-Sharing System (DTSS) uses this method. Several installations, representing different classes of workload are studied to measure the method's performance. The results indicate that compared to the file layout method used by UNIX, the buddy system results in more efficient access but less efficient utilization of disk space. As disks become larger and less expensive per byte, strategies that achieve efficient I/O throughput at the expense of some storage loss become increasingly attractive.", acknowledgement = ack-nhfb, affiliationaddress = "Dartmouth Coll, USA", classification = "723", journalabr = "ACM Trans Comput Syst", keywords = "buddy system; computer operating systems; data processing --- File Organization; disk file allocation; dynamic memory management; dynamic storage allocation; file system design; measurement; performance; Storage Allocation", subject = "{\bf D.4.3} Software, OPERATING SYSTEMS, File Systems Management, File organization. {\bf D.4.3} Software, OPERATING SYSTEMS, File Systems Management, Access methods. {\bf D.4.2} Software, OPERATING SYSTEMS, Storage Management, Allocation/deallocation strategies. {\bf D.4.2} Software, OPERATING SYSTEMS, Storage Management, Secondary storage. {\bf D.4.8} Software, OPERATING SYSTEMS, Performance, Measurements. {\bf H.3.2} Information Systems, INFORMATION STORAGE AND RETRIEVAL, Information Storage, File organization. {\bf E.5} Data, FILES, Organization/structure.", } @Article{Kossmann:1987:GSS, author = "Heinz Kossmann", title = "A Graphic {SDL} Support Environment", journal = j-COMP-NET-ISDN, volume = "13", number = "2", pages = "91--96", year = "1987", CODEN = "CNISE9", ISSN = "0169-7552", bibdate = "Sat Sep 25 23:08:50 MDT 1999", bibsource = "Compendex database; ftp://ftp.ira.uka.de/pub/bibliography/Distributed/QLD/1987.bib; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliation = "Siemens AG, Munich, West Ger", annote = "The paper describes the experiences gained at Siemens AG from large scale applications of a first version of an SDL tool on a graphic workstation as well as the development of an integrated set of tools supporting SDL.", classification = "718; 723; 902", country = "NL", date = "08/01/91", descriptors = "SDL; tool; graphics; application;", enum = "4150", journalabr = "Comput Networks ISDN Syst", keywords = "computer graphics; computer programming languages; computer software; hicom; semantics and syntax; specification and description language (SDL); telephone exchanges --- Computer Interfaces; UNIX workstation; workstations with raster graphics", language = "English", location = "RWTH-AC-DFV: Bibl.", references = "6", revision = "21/04/91", } @Book{Lapin:1987:PCU, author = "J. E. Lapin", title = "Portable {C} and {UNIX} Programming", publisher = pub-PH, address = pub-PH:adr, pages = "xiv + 249", year = "1987", ISBN = "0-13-686494-5", ISBN-13 = "978-0-13-686494-3", LCCN = "QA76.73.C15 L36 1987", bibdate = "Mon Oct 4 11:56:08 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Lapin:PCU87, author = "J. E. Lapin", title = "Portable {C} and {UNIX} Programming", publisher = pub-PH, address = pub-PH:adr, pages = "xiv + 249", year = "1987", ISBN = "0-13-686494-5", ISBN-13 = "978-0-13-686494-3", LCCN = "QA76.73.C15 L36 1987", bibdate = "Wed Dec 15 10:38:06 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", } @Article{Melamed:1987:PAU, author = "Anna S. Melamed", title = "Performance analysis of {Unix-based} network file systems", journal = j-IEEE-MICRO, volume = "7", number = "1", pages = "25--38", month = feb, year = "1987", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/MM.1987.304932", ISSN = "0272-1732 (print), 1937-4143 (electronic)", bibdate = "Thu Apr 10 10:01:49 1997", bibsource = "Compendex database; Distributed/simulan.bib; http://www.math.utah.edu/pub/tex/bib/unix.bib; Misc/simulan.bib", note = "CSZ108", acknowledgement = ack-nhfb, affiliationaddress = "AT\&T Bell Lab, Holmdel, NJ, USA", classcodes = "B6150 (Communication system theory); C1140C (Queueing theory)C5470 (Performance evaluation and testing); C5620 (Computer networks and techniques); C6150J (Operating systems)", classification = "723; 921", coco = "1987-41091", corpsource = "AT\&T Bell Labs., Holmdel, NJ, USA", journalabr = "IEEE Micro", keywords = "bottlenecks; capacity analysis; capacity behaviour; capacity performance; client caching; computer architecture --- Performance; computer networks --- Local Networks; computer operating systems --- Analysis; consumption equations; data processing; File Organization; hardware architecture; network model; network operating systems; performance analysis methodology; performance analysis predictive mode; performance enhancements; performance evaluation; queueing; queuing; remote files; resource; response time improvements; software architecture; system capacity measures; theory; UNIX operating systems; UNIX-based distributed file systems; Unix-based network file systems; work load model", treatment = "P Practical; T Theoretical or Mathematical", } @Article{Potmesil:1987:FST, author = "Michael Potmesil and Eric M. Hoffert", title = "{FRAMES}: {Software} tools for modeling, rendering and animation of {$3$D} scenes", journal = j-COMP-GRAPHICS, volume = "21", number = "4", pages = "85--93", month = jul, year = "1987", CODEN = "CGRADI, CPGPBZ", ISSN = "0097-8930", bibdate = "Mon Oct 4 18:47:07 MDT 1999", bibsource = "Graphics/imager/imager.87.bib; http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/graph/37401/p85-potmesil/", acknowledgement = ack-nhfb, conference = "held in Anaheim, California; 27--31 July 1987", keywords = "algorithms; design; languages; UNIX, pipeline, filter, a-buffer, parallel image rendering", subject = "{\bf I.3.2} Computing Methodologies, COMPUTER GRAPHICS, Graphics Systems, Distributed/network graphics. {\bf I.3.3} Computing Methodologies, COMPUTER GRAPHICS, Picture/Image Generation, Display algorithms. {\bf I.3.5} Computing Methodologies, COMPUTER GRAPHICS, Computational Geometry and Object Modeling, Curve, surface, solid, and object representations. {\bf I.3.7} Computing Methodologies, COMPUTER GRAPHICS, Three-Dimensional Graphics and Realism, Color, shading, shadowing, and texture. {\bf I.3.7} Computing Methodologies, COMPUTER GRAPHICS, Three-Dimensional Graphics and Realism, Visible line/surface algorithms.", } @Book{Prata:1987:USV, author = "Stephen Prata and Donald Martin", title = "{Unix System V} Bible: commands and utilities", publisher = pub-HWS, address = pub-HWS:adr, pages = "ix + 516", year = "1987", ISBN = "0-672-22562-X", ISBN-13 = "978-0-672-22562-8", LCCN = "QA76.76.O63 P74 1987", bibdate = "Fri Jun 2 16:28:17 MDT 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "UNIX System V (computer file)", } @Book{Roddy:1987:UNT, author = "Kevin P. Roddy", title = "{UNIX NROFF}\slash{TROFF}\emdash {A} User's Guide", publisher = pub-HRW, address = pub-HRW:adr, pages = "xii + 362", year = "1987", ISBN = "0-03-000167-6", ISBN-13 = "978-0-03-000167-3", LCCN = "QA76.76.T49 R634 1987", bibdate = "Tue Jan 11 10:08:33 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Sonnenschein:1987:GTV, author = "Dan Sonnenschein", title = "A guide to {\tt vi}\emdash visual editing on the {UNIX} system", publisher = pub-PH, address = pub-PH:adr, pages = "xix + 180", year = "1987", ISBN = "0-13-371311-3", ISBN-13 = "978-0-13-371311-4", LCCN = "QA76.76.T49 S66 1987", bibdate = "Tue Jan 11 10:02:33 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Tanenbaum:1987:UCS, author = "Andrew S. Tanenbaum", title = "A {UNIX} clone with source code for operating systems courses", journal = j-OPER-SYS-REV, volume = "21", number = "1", pages = "20--29", month = jan, year = "1987", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:35 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "MINIX", } @Book{Aho:1988:APL, author = "Alfred V. Aho and Brian W. Kernighan and Peter J. Weinberger", key = "AWK87", title = "The {AWK} Programming Language", publisher = pub-AW, address = pub-AW:adr, pages = "x + 210", year = "1988", ISBN = "0-201-07981-X", ISBN-13 = "978-0-201-07981-4", LCCN = "QA76.73.A95 A351 1988", bibdate = "Mon Oct 4 11:54:06 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, nb = "the author order is AKW, but the key looks better as AWK", } @Article{Anonymous:1988:OS, author = "Anonymous", title = "Operating Systems", journal = j-DATAMATION, volume = "34", number = "20", pages = "19--??", day = "15", month = oct, year = "1988", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat May 25 15:28:26 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", abstract = "Leila Davis finds information resource managers readily embracing the newly approved Posix federal information processing standard.", acknowledgement = ack-nhfb, } @Article{Barkley:1988:PSU, author = "Ronald E. Barkley and Curt F. Schimmel", title = "A Performance Study of the {Unix System V} Fork System Call Using {Casper}", journal = j-ATT-TECH-J, volume = "67", number = "5", pages = "100--109", month = sep # "\slash " # oct, year = "1988", CODEN = "ATJOEM", ISSN = "8756-2324", bibdate = "Fri Nov 26 21:59:42 2010", bibsource = "http://www.cs.cmu.edu/afs/cs.cmu.edu/user/eslib/journals/ATTBLTJ/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, fjournal = "AT\&T Technical Journal", } @TechReport{Bina:1988:FFB, author = "Eric Jon Bina and Perry A. Emrath", title = "A faster fsck for {BSD UNIX}", type = "Technical Report", number = "CSRD 823", institution = inst-UIUC-CSRD, address = inst-UIUC-CSRD:adr, pages = "12", month = oct, year = "1988", bibdate = "Fri Aug 30 08:01:51 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "In the UNIX operating system, the kernel assumes that the file system is always maintained in known correct state. Should the kernel ever detect a variation from that state, a system panic occurs, and the system `crashes'. For this reason it is important that the integrity of the file system be checked before bringing any UNIX system up in multi-user mode. A file system check program called fsck is supplied with UNIX (unless otherwise specified UNIX refers to the BSD version family), and is designed to find any errors in the state of the file system and fix them, if possible, to prevent system panics. Unfortunately, on a system with a relatively large amount of mounted disk storage, the time it takes to run fsck can become a very significant percentage of system boot time. When working in a system development environment where the system will probably have to be booted frequently, the (highly desirable) use of fsck can begin to waste valuable work time. In an attempt to solve this problem, fsck was studied in detail, and then modified to perform its tasks more efficiently. This paper first describes the function of the original fsck program to convey the basic goals it sets out to accomplish. The next section points out inefficiencies that were found in the original algorithms, and describes how these inefficiencies were alleviated. A number of timing measurements were taken to locate the original problems, and then later to show that the modifications did provide significant improvement. Our new fsck was tested to ensure it retained all the diagnostic and corrective capabilities of the original. It was also ported to a different machine to demonstrate its general usefulness in any BSD based UNIX environment. Compared to the version of fsck distributed with BSD 4.2 or 4.3, our fsck consistently runs 2 to 3 times faster, and reboot times (with file system checks) have been cut almost in half. Real time measurements for our fsck on the three machines where it has been installed are given in the concluding section.", acknowledgement = ack-nhfb, annote = "Submitted to USENIX Technical Conference --- Winter 1989, San Diego, CA. Supported in part by National Science Foundation. Supported in part by U.S. Department of Energy.", keywords = "UNIX (Computer operating system)", } @MastersThesis{Bina:1988:MUF, author = "Eric Jon Bina", title = "Modifications to the {UNIX} file system check program {FSCK} for quicker crash recovery", type = "Thesis (M.S.)", number = "CSRD 811", school = inst-UIUC, address = inst-UIUC:adr, pages = "iv + 51", month = aug, year = "1988", bibdate = "Fri Aug 30 08:01:51 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, annote = "Supported in part by the National Science Foundation. Supported in part by the U.S. Department of Energy.", keywords = "UNIX (Computer operating system)", } @Article{Canas:1988:PUO, author = "Daniel A. Ca{\~n}as and Laura M. Esquivel", title = "Portability and the {UNIX} operating system", journal = j-OPER-SYS-REV, volume = "22", number = "2", pages = "6--23", month = apr, year = "1988", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:40 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Christian:1988:UOS, author = "Kaare Christian", title = "The {UNIX} Operating System", publisher = pub-WILEY-INTERSCIENCE, address = pub-WILEY-INTERSCIENCE:adr, edition = "Second", pages = "xxii + 455", year = "1988", ISBN = "0-471-84782-8 (hardcover) and 0-471-84781-X (paperback)", ISBN-13 = "978-0-471-84782-3 (hardcover) and 978-0-471-84781-6 (paperback)", LCCN = "QA76.8.U65 C45 1988", bibdate = "Fri Apr 30 10:43:05 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "See \cite{Sobell:1989:PGU}.", acknowledgement = ack-nhfb, } @Book{Christian:UOS88, author = "Kaare Christian", title = "The {UNIX} Operating System", publisher = pub-WILEY-INTERSCIENCE, address = pub-WILEY-INTERSCIENCE:adr, edition = "Second", pages = "xxii + 455", year = "1988", ISBN = "0-471-84782-8 (hardcover) and 0-471-84781-X (paperback)", ISBN-13 = "978-0-471-84782-3 (hardcover) and 978-0-471-84781-6 (paperback)", LCCN = "QA76.8.U65 C45 1988", bibdate = "Tue Dec 14 23:28:05 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", } @Book{Darwin:1988:CCP, author = "Ian F. Darwin", title = "Checking {C} programs with {\tt lint}", publisher = pub-ORA, address = pub-ORA:adr, pages = "x + 72", month = oct, year = "1988", ISBN = "0-937175-30-7", ISBN-13 = "978-0-937175-30-9", LCCN = "QA76.73.C15 D37 1990", bibdate = "Sat May 11 07:55:08 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$12.95", acknowledgement = ack-nhfb, } @TechReport{Donnelly:1988:BYC, author = "Charles Donnelly and Richard M. Stallman", title = "{BISON}\emdash The {YACC}-com\-pat\-i\-ble Parser Generator", institution = pub-FSF, address = pub-FSF:adr, year = "1988", bibdate = "Mon Oct 4 11:54:40 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Bison was largely written by Robert Corbett, and made yacc-com\-pat\-i\-ble by Richard Stallman. Electronic mail: \path|rms@prep.ai.mit.edu|. Software also available via ANONYMOUS FTP to \path|prep.ai.mit.edu|. See also \cite{Paxson:1988:FFL}.", acknowledgement = ack-nhfb, } @Book{Egan:1988:WUD, author = "Janet I. Egan and Thomas J. Teixeira", title = "Writing a {UNIX} device driver", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "viii + 357", year = "1988", ISBN = "0-471-62859-X (paperback), 0-471-62811-5", ISBN-13 = "978-0-471-62859-0 (paperback), 978-0-471-62811-8", LCCN = "QA76.76.O63 E35 1988", bibdate = "Sat Aug 31 09:15:22 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "computer input-output equipment; electronic digital computers -- programming; unix (computer file)", } @Article{Fiedler:1988:UIE, author = "David Fiedler", title = "{USENET}: An Informal But Extensive {CommNet} For {UNIX} and {XENIX} Systems and Users", journal = j-CUJ, volume = "6", number = "1", pages = "54--??", month = jan, year = "1988", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Frakes:1988:CES, author = "William B. Frakes and Christopher J. Fox", title = "{CEST}: an expert system function library and workbench for {UNIX} system\slash {C} language", journal = j-ATT-TECH-J, volume = "67", number = "2", pages = "95--106", month = mar # "\slash " # apr, year = "1988", CODEN = "ATJOEM", ISSN = "8756-2324", bibdate = "Fri Nov 12 13:09:16 2010", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Integrating expert system components into production software can be difficult, because environments for developing expert systems typically are not compatible with traditional software-engineering technology. To deal with this problem, we are developing CEST, a C-language expert system toolset. It is a library of inference engines implemented as C functions that can be called from C programs --- and a workbench of knowledge-engineering support tools. CEST allows easy integration of expert system components into C-based software systems, and provides knowledge-engineering support tools analogous to traditional software-engineering support tools. The first tool written for CEST is AVIEN, a backward-chaining attribute-value inference engine. It has been widely distributed within AT\&T, and has been used to build both stand-alone expert systems and C-based hybrid systems. In particular, the Quality Assurance Center at AT\&T Bell Laboratories is using AVIEN in software tools being developed for quality and reliability analysis.", acknowledgement = ack-nhfb, fjournal = "AT\&T Technical Journal", keywords = "artificial intelligence; c language; computer programming; expert systems; operating systems (computers); software tools", subject = "backward-chaining attribute-value inference engine; CEST (C Expert System Tools); expert system components; knowledge-engineering support tool; production software", topic = "computer integrated manufacturing", } @Book{Gehani:1988:DFT, author = "Narain Gehani and Steven Lally", title = "Document formatting and typesetting on the {UNIX} system. Vol. 2: grap, mv, ms, and troff", publisher = pub-SILICON, address = pub-SILICON:adr, pages = "xiii + 304", year = "1988", ISBN = "0-9615336-3-3", ISBN-13 = "978-0-9615336-3-2", LCCN = "????", bibdate = "Mon Jul 25 08:37:04 MDT 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$30.95", acknowledgement = ack-nhfb, keyword = "languages; documentation", keywords = "documentation; languages", review = "ACM CR 8907-0444", subject = "I.7.2 Computing Methodologies, TEXT PROCESSING, Document Preparation \\ D.4.0 Software, OPERATING SYSTEMS, General, UNIX \\ I.7.2 Computing Methodologies, TEXT PROCESSING, Document Preparation, troff", } @Book{Gircys:1988:UUC, author = "Gintaras R. Gircys", title = "Understanding and Using {COFF}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xvii + 176", year = "1988", ISBN = "0-937175-31-5", ISBN-13 = "978-0-937175-31-6", LCCN = "QA76.8.U65 G57 1988", bibdate = "Mon Jan 3 18:24:14 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$21.95", acknowledgement = ack-nhfb, } @Article{Graham:1988:PHB, author = "Ken Graham", title = "Pssssttt! Hey buddy, you wanta buy {UNIX} source for \$89?", journal = j-CUJ, volume = "6", type = "User Report", number = "6", pages = "43--??", month = jun, year = "1988", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Hinnant:1988:AUB, author = "David F. Hinnant", title = "Accurate {Unix} benchmarking: art, science, or black magic?", journal = j-IEEE-MICRO, volume = "8", number = "5", pages = "64--75", month = oct, year = "1988", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/40.87531", ISSN = "0272-1732 (print), 1937-4143 (electronic)", bibdate = "Mon Apr 7 14:32:46 MDT 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classcodes = "C6150J (Operating systems); C6150G (Diagnostic, testing, debugging and evaluating systems)", classification = "722; 723; 921", journalabr = "IEEE Micro", keywords = "Benchmarking Technique Guidelines; Computer Hardware; Computer Operating Systems; Computer Software; hardware variables; Hardware/Software Interrelation; mathematical model; Mathematical Models; operating system environments; performance evaluation; software variables; Unix; Unix Benchmarking; Unix benchmarking", treatment = "P Practical", } @Book{IEEE:1988:ISP, author = "{IEEE}", title = "{IEEE} Standard Portable Operating System Interface for Computer Environments", publisher = pub-IEEE, address = pub-IEEE:adr, edition = "{IEEE Std} 1003.1-1988", pages = "317", year = "1988", ISBN = "1-55937-003-3", ISBN-13 = "978-1-55937-003-5", LCCN = "QA76.76.O63 I6 1988", bibdate = "Sat Oct 28 08:41:52 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Revision of IEEE Std 1003.1, issued for Trial-Use in April 1986.", acknowledgement = ack-nhfb, keywords = "C (computer program language); operating systems (computers); UNIX (computer file)", } @Article{Jones:1988:TUS, author = "Darrell Jones", title = "{{\em UNIX for Super-Users}}, by {Eric Foxley}", journal = j-CUJ, volume = "6", type = "Book review", number = "1", pages = "42--??", month = jan, year = "1988", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "See \cite{Foxley:1985:US}.", acknowledgement = ack-nhfb, } @Book{Kernighan:1988:CPL, author = "Brian W. Kernighan and Dennis M. Ritchie", title = "The {C} Programming Language", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "xii + 272", year = "1988", ISBN = "0-13-110362-8", ISBN-13 = "978-0-13-110362-7", LCCN = "QA76.73.C15 K47 1988", bibdate = "Tue Sep 28 15:11:06 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "This book is 200\% a {\em must} for any C programmers \ldots{}. The answers to the exercises can be found in \cite{Tondo:1989:CAB}.", acknowledgement = ack-sk, } @Article{Litman:1988:DDO, author = "Ami Litman", title = "The {DUNIX} distributed operating system", journal = j-OPER-SYS-REV, volume = "22", number = "1", pages = "42--51", month = jan, year = "1988", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:35 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Manual{NIST:1988:PPO, author = "{National Institute of Standards and Technology (U. S.)}", title = "{POSIX}: portable operating system interface for computer environments", volume = "151", publisher = pub-NTIS, address = pub-NTIS:adr, pages = "7", day = "12", month = sep, year = "1988", LCCN = "JK468.A8 A31 no.151", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Shipping list no.: 88-752-P.", series = "FIPS PUB", acknowledgement = ack-nhfb, keywords = "computer software -- development", } @Book{Nye:1988:XPM, author = "Adrian Nye", title = "{Xlib} Programming Manual for Version 11", volume = "1", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxxiii + 615", year = "1988", ISBN = "0-937175-26-9", ISBN-13 = "978-0-937175-26-2", LCCN = "QA76.76.W56 D44 v.1 1988", bibdate = "Mon Oct 4 11:56:44 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Nye:1988:XRM, author = "Adrian Nye", title = "{Xlib} Reference Manual for Version 11", volume = "2", publisher = pub-ORA, address = pub-ORA:adr, pages = "xiv + 701", year = "1988", ISBN = "0-937175-27-7", ISBN-13 = "978-0-937175-27-9", LCCN = "QA76.76.W56 D44 v.2 1988", bibdate = "Mon Oct 4 11:56:47 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{OReilly:1988:MUU, author = "Tim O'Reilly and Grace Todino", title = "Managing {UUCP} and Usenet", publisher = pub-ORA, address = pub-ORA:adr, pages = "xvi + 256", month = mar, year = "1988", ISBN = "0-937175-09-9", ISBN-13 = "978-0-937175-09-5", LCCN = "QA76.8.U65 O64 1988", bibdate = "Mon Oct 4 11:57:01 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{OReilly:1988:XWS, author = "Tim O'Reilly and Valerie Quercia and Linda Lamb", title = "{X Window System} User's Guide for Version 11", volume = "3", publisher = pub-ORA, address = pub-ORA:adr, pages = "xviii + 344", year = "1988", ISBN = "0-937175-29-3", ISBN-13 = "978-0-937175-29-3", LCCN = "QA76.76.W56 D44 v.3 1988", bibdate = "Mon Oct 4 11:57:05 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Pajari:1988:MUW, author = "George E. Pajari", title = "Of Mice and {UNIX} --- Writing a {UNIX} Device Driver for the {Microsoft} Bus Mouse", journal = j-CUJ, volume = "6", number = "9", pages = "54--??", month = sep, year = "1988", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Pass:1988:UST, author = "E. M. Pass", title = "{UNIX} System 5 Terminal Raw Mode Setting", journal = j-CUJ, volume = "6", type = "Letter", number = "2", pages = "69--??", month = feb, year = "1988", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Misc{Paxson:1988:FFL, author = "Vern Paxson", title = "flex\emdash fast lexical analyzer generator", howpublished = pub-FSF # " " # pub-FSF:adr, year = "1988", bibdate = "Mon Oct 4 16:09:15 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Electronic mail: \path|vern@lbl-csam.arpa| or \path|vern@lbl-rtsg.arpa|. Software also available via ANONYMOUS FTP to \path|lbl-csam.arpa|, \path|lbl-rtsg.arpa|, or \path|prep.ai.mit.edu|. See also \cite{Donnelly:1988:BYC}.", acknowledgement = ack-nhfb, } @Book{Peters:1988:UPM, author = "James F. Peters", title = "{UNIX} programming: methods and tools", publisher = pub-HBJ, address = pub-HBJ:adr, pages = "xv + 447", year = "1988", ISBN = "0-15-593021-4 (paperback)", ISBN-13 = "978-0-15-593021-6 (paperback)", LCCN = "QA76.76.O63 P52 1988", bibdate = "Sat Aug 31 09:15:22 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "See book review \cite{Flatters:1990:TUP}. System requirements for computer disk: IBM PC.", acknowledgement = ack-nhfb, keywords = "unix (computer file)", } @Manual{Polytron:1988:P, title = "{PolyAWK}", organization = "Polytron Corporation", address = "Beaverton, OR, USA", year = "1988", bibdate = "Fri Jul 01 14:47:44 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Pugh:1988:ASL, author = "Kenneth Pugh", title = "{ANSI} Standards List for {UNIX}", journal = j-CUJ, volume = "6", type = "Questions and Answers", number = "1", pages = "22--??", month = jan, year = "1988", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Pugh:1988:IHT, author = "Kenneth Pugh", title = "{INIT.C} in {HOC6} from {{\em The UNIX Programming Environment}}", journal = j-CUJ, volume = "6", type = "Questions and Answers", number = "11", pages = "10--??", month = nov, year = "1988", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Pugh:1988:UAO, author = "Kenneth Pugh", title = "{UNIX} Alternatives To Overlays", journal = j-CUJ, volume = "6", type = "Questions and Answers", number = "2", pages = "9--??", month = feb, year = "1988", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Ramamurthy:1988:AMU, author = "Gopalakrishnan Ramamurthy", title = "An Analytical Model for {Unix} Systems", journal = j-ATT-TECH-J, volume = "67", number = "5", pages = "86--99", month = sep # "\slash " # oct, year = "1988", CODEN = "ATJOEM", ISSN = "8756-2324", bibdate = "Fri Nov 26 21:59:42 2010", bibsource = "http://www.cs.cmu.edu/afs/cs.cmu.edu/user/eslib/journals/ATTBLTJ/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, fjournal = "AT\&T Technical Journal", } @TechReport{Rost:1988:PIO, author = "Randi J. Rost", title = "{PEX} Introduction and Overview", number = "Version 3.20", institution = "Digital Equipment Corporation, Workstation Systems Engineering", month = apr, year = "1988", bibdate = "Tue Dec 7 09:44:52 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "This document is present in the X Window System Version 11 Release 3 in the file \path|X11/X11/doc/extensions/pex/doc/intro/doc.ms|.", acknowledgement = ack-nhfb, } @Book{Scheifler:1988:XWS, author = "Robert W. Scheifler and James Gettys and Ron Newman", title = "{X Window System}: {C} Library and Protocol Reference", publisher = pub-DP, address = pub-DP:adr, pages = "xxix + 701", year = "1988", ISBN = "1-55558-012-2", ISBN-13 = "978-1-55558-012-4", LCCN = "QA76.76.W56 S34 1988", bibdate = "Mon Oct 4 11:57:43 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Smaha:1988:PVF, author = "Steve Smaha", title = "{PC\slash VI} Faithfully Replicates Capabilities of {UNIX} Original", journal = j-CUJ, volume = "6", type = "User Report", number = "5", pages = "64--??", month = may, year = "1988", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Strang:1988:TTT, author = "John Strang and Linda Mui and Tim O'Reilly", title = "{\tt termcap} \& {\tt terminfo}", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "xv + 248", month = apr, year = "1988", ISBN = "0-937175-22-6", ISBN-13 = "978-0-937175-22-4", LCCN = "QA76.8.U65 S79 1988", bibdate = "Mon Jan 3 17:48:19 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$21.95", acknowledgement = ack-nhfb, } @Article{Thakkar:1988:BMS, author = "Shreekant Thakkar and Paul Gifford and Garay Fielland", title = "The {Balance} multiprocessor system", journal = j-IEEE-MICRO, volume = "8", number = "1", pages = "57--69", month = feb, year = "1988", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/40.521", ISSN = "0272-1732 (print), 1937-4143 (electronic)", bibdate = "Mon Apr 7 14:32:46 MDT 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliationaddress = "Sequential Computer Systems Inc, Beaverton, OR, USA", classcodes = "C5220 (Computer architecture); C5440 (Multiprocessor systems and techniques); C5610 (Computer interfaces); C6150J (Operating systems)", classification = "722; 723", corpsource = "Sequent Comput. Syst. Inc., Beaverton, OR, USA", journalabr = "IEEE Micro", keywords = "21 million instructions per; 21 million instructions per second (mips); 21 MIPS; 28 MB; 28 Mbytes of; 32 bit; 32-bit microprocessors; ANSI small computer system interface (SCSI); architecture; Balance multiprocessor system; computer interfaces; computer operating systems; computer systems, digital; Dynix; dynix operating system; high-bandwidth pipelined bus; LAN interface; main memory; MIPS; Multibus; Multiprocessing; multiprocessing; multiprocessing systems; multiprocessor operating system; operating; parallel applications; parallel architectures; SCSI; second; shared-memory; shared-memory, tightly coupled multiprocessor system; system; systems (computers); tightly coupled multiprocessor; Unix", treatment = "P Practical", } @Book{VanWyk:1988:DSC, author = "Christopher J. Van Wyk", title = "Data Structures in {C}", publisher = pub-AW, address = pub-AW:adr, pages = "x + 387", year = "1988", ISBN = "0-201-16116-8", ISBN-13 = "978-0-201-16116-8", LCCN = "QA76.73.C15 V36 1990", bibdate = "Mon Oct 4 13:34:18 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Vesonder:1988:RBP, author = "Gregg T. Vesonder", title = "Rule-Based Programming in the {Unix} System", journal = j-ATT-TECH-J, volume = "67", number = "1", pages = "69--80", month = jan, year = "1988", CODEN = "ATJOEM", ISSN = "8756-2324", bibdate = "Fri Nov 26 21:59:42 2010", bibsource = "http://www.cs.cmu.edu/afs/cs.cmu.edu/user/eslib/journals/ATTBLTJ/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, fjournal = "AT\&T Technical Journal", } @Article{Ward:1988:SMS, author = "Robert L. Ward", title = "A Simple Menu System For {MS-DOS} and {Unix}", journal = j-CUJ, volume = "6", type = "How To Do It \ldots{} In C", number = "3", pages = "49--??", month = mar, year = "1988", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Weinstein:1988:UST, author = "Sydney S. Weinstein", title = "{UNIX} Signals and Terminal Control Parameters Are More Natural Fix For {BBS} Problem", journal = j-CUJ, volume = "6", number = "2", pages = "62--??", month = feb, year = "1988", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{XOPEN:1988:XPGa, author = "{X/Open Company, Ltd.}", title = "{X}\slash Open Portability Guide, Programming Languages", volume = "4", publisher = pub-PH, address = pub-PH:adr, pages = "xiii + 198", year = "1988", ISBN = "0-13-685868-6", ISBN-13 = "978-0-13-685868-3", bibdate = "Mon Oct 4 11:58:26 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{XOPEN:1988:XPGb, author = "{X/Open Company, Ltd.}", title = "{X}\slash Open Portability Guide, Data Management", volume = "5", publisher = pub-PH, address = pub-PH:adr, pages = "xiii + 204", year = "1988", ISBN = "0-13-685876-7", ISBN-13 = "978-0-13-685876-8", bibdate = "Mon Oct 4 11:58:27 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{XOPEN:1988:XPGc, author = "{X/Open Company, Ltd.}", title = "{X}\slash Open Portability Guide, Window Management", volume = "6", publisher = pub-PH, address = pub-PH:adr, pages = "xiv + 338", year = "1988", ISBN = "0-13-685884-8", ISBN-13 = "978-0-13-685884-3", bibdate = "Mon Oct 4 11:58:28 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{XOPEN:1988:XPGd, author = "{X/Open Company, Ltd.}", title = "{X}\slash Open Portability Guide, Networking Services", volume = "7", publisher = pub-PH, address = pub-PH:adr, pages = "xiii + 144", year = "1988", ISBN = "0-13-685892-9", ISBN-13 = "978-0-13-685892-8", bibdate = "Mon Oct 4 11:58:29 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Aho:1989:PGA, author = "Alfred V. Aho and Brian W. Kernighan and Peter J. Weinberger and Takanori Adachi", title = "Puroguramingu gengo {AWK}. ({Japanese}) [{Programming} language {AWK}]", publisher = "Toppan", address = "Tokyo, Japan", pages = "xvii + 299", year = "1989", ISBN = "4-8101-8008-5", ISBN-13 = "978-4-8101-8008-4", LCCN = "????", bibdate = "Fri Jul 01 14:54:04 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, language = "Japanese", } @TechReport{Anderson:1989:ITI, author = "E. Anderson and J. Dongarra", title = "Installing and Testing the Initial Release of {LAPACK} --- {Unix} and Non-{Unix} Versions", type = "LAPACK Working Note", number = "10", institution = inst-ANL-MCS, address = inst-ANL-MCS:adr, month = may, year = "1989", bibdate = "Fri Apr 22 17:06:37 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "ANL, MCS-TM-130, May 1989.", URL = "http://www.netlib.org/lapack/lawns/lawn10.ps; http://www.netlib.org/lapack/lawnspdf/lawn10.pdf", acknowledgement = ack-nhfb, } @Manual{ANSI:1989:C, title = "{American National Standard Programming Language C, ANSI X3.159-1989}", organization = pub-ANSI, address = pub-ANSI:adr, month = dec # " 14", year = "1989", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Atkinson:1989:ECP, author = "Russ Atkinson and Alan Demers and Carl Hauser and Christian Jacobi and Peter Kessler and Mark Weiser", title = "Experiences creating a portable {Cedar}", journal = j-SIGPLAN, volume = "24", number = "7", pages = "322--329", month = jul, year = "1989", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:15:41 MST 2003", bibsource = "http://portal.acm.org/; http://www.acm.org/pubs/contents/proceedings/pldi/73141/index.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/pldi/73141/p322-atkinson/", abstract = "Cedar is the name for both a language and an environment in use in the Computer Science Laboratory at Xerox PARC since 1980. The Cedar language is a superset of Mesa, the major additions being garbage collection and runtime types. Neither the language nor the environment was originally intended to be portable, and for many years ran only on D-machines at PARC and a few other locations in Xerox. We recently re-implemented the language to make it portable across many different architectures. We present a brief description of the Cedar language, our portability strategy for the compiler and runtime, our manner of making connections to other languages and the Unix operating system, and some measures of the performance of our `Portable Cedar'.", acknowledgement = ack-nhfb, affiliationaddress = "Palo Alto, CA, USA", annote = "Published as part of the Proceedings of PLDI'89.", classification = "723", conference = "Proceedings of the SIGPLAN '89 Conference on Programming Language Design and Implementation", journalabr = "SIGPLAN Not", keywords = "Computer Operating Systems--Program Compilers; Computer Programming Languages; Design; design; languages; performance; Programming Language C; Programming Language Cedar", meetingaddress = "Portland, OR, USA", meetingdate = "Jun 21--23 1989", meetingdate2 = "06/21--23/89", sponsor = "ACM, Special Interest Group on Programming Languages, New York; SS NY, USA", subject = "{\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, C. {\bf D.3.4} Software, PROGRAMMING LANGUAGES, Processors, Compilers. {\bf D.2.6} Software, SOFTWARE ENGINEERING, Programming Environments, CEDAR. {\bf D.2.7} Software, SOFTWARE ENGINEERING, Distribution, Maintenance, and Enhancement, Portability.", } @Book{Bolsky:1989:KSC, author = "Morris Bolsky and David Korn", title = "The {Korn} Shell Command and Programming Language", publisher = pub-PH, address = pub-PH:adr, pages = "xvi + 356", year = "1989", ISBN = "0-13-516972-0", ISBN-13 = "978-0-13-516972-8", LCCN = "QA76.73.K67 B64 1989", bibdate = "Wed Sep 29 10:51:21 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "The authoritative reference \ldots{}. See also \cite{Valley:1992:UDG}.", acknowledgement = ack-sk, } @Article{Borg:1989:FTU, author = "Anita Borg and Wolfgang Blau and Wolfgang Graetsch and Ferdinand Herrmann and Wolfgang Oberle", title = "Fault Tolerance under {UNIX}", journal = j-TOCS, volume = "7", number = "1", pages = "1--24", month = feb, year = "1989", CODEN = "ACSYEC", ISSN = "0734-2071", bibdate = "Thu Jan 14 06:47:30 MST 1999", bibsource = "Compendex database; http://www.acm.org/pubs/contents/journals/tocs/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80/pubs/citations/journals/tocs/1989-7-1/p1-borg/", abstract = "The initial design for a distributed, fault-tolerant version of UNIX based on three-way atomic message transmission was presented in an earlier paper. This paper describes the working system, now known as the TARGON\slash 32. The original design left open questions in at least two areas: fault tolerance for server processes and recovery after a crash were briefly and inaccurately sketched; rebackup after recovery was not discussed at all. The fundamental design involving three-way message transmission has remained unchanged. However, server backup has been redesigned and is now more consistent with that of normal user processes. Recovery and rebackup have been completed in a less centralized and thus more efficient manner. We review important aspects of the original design and note how the implementation differs from our original ideas. We then focus on the backup and recovery for server processes and the changes and additions in the design and implementation of recovery and rebackup.", acknowledgement = ack-nhfb, affiliation = "Nixdorf Computer GmbH", affiliationaddress = "Paderborn, West Ger", classification = "722; 723", journalabr = "ACM Trans Comput Syst", keywords = "algorithms; Computer Architecture; Computer Operating Systems; Computer Systems, Digital; Crash Handling; Fault Tolerant Capability; Multiway Message Transmission; reliability; Roll Forward Recovery; Server Architecture; TARGON/32; UNIX", subject = "{\bf D.4.0} Software, OPERATING SYSTEMS, General, UNIX. {\bf D.4.5} Software, OPERATING SYSTEMS, Reliability, Fault-tolerance. {\bf D.4.5} Software, OPERATING SYSTEMS, Reliability, Backup procedures. {\bf D.4.5} Software, OPERATING SYSTEMS, Reliability, Checkpoint/restart. {\bf C.1.2} Computer Systems Organization, PROCESSOR ARCHITECTURES, Multiple Data Stream Architectures (Multiprocessors), Associative processors. {\bf D.4.3} Software, OPERATING SYSTEMS, File Systems Management. {\bf D.4.4} Software, OPERATING SYSTEMS, Communications Management, Message sending.", } @Article{Braunstein:1989:IEU, author = "A. Braunstein and M. Riley and J. Wilkes", title = "Improving the efficiency of {UNIX} buffer caches", journal = j-OPER-SYS-REV, volume = "23", number = "5", pages = "71--82", month = dec, year = "1989", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 12:47:29 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @TechReport{Carr:1989:SSG, author = "J. A. Carr", title = "{SCRI}'s semi-complete guide to {UNIX} on the {ETA10} supercomputer", type = "Technical Report", number = "FSU-SCRI-89-28", institution = "Florida State University", address = "Tallahassee, FL, USA", pages = "64", day = "13", month = feb, year = "1989", bibdate = "Fri Aug 30 08:01:51 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, annote = "An overview of the Korn shell of AT\&T System V UNIX and related system utilities on the Florida State University ETA10 computer.", keywords = "Supercomputers; UNIX Shells (Computer programs); UNIX System V (Computer file)", } @Article{Coggins:1989:MCL, author = "James M. Coggins and Gregory Bollella", title = "Managing {C++} libraries", journal = j-SIGPLAN, volume = "24", number = "6", pages = "37--48", month = jun, year = "1989", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:15:40 MST 2003", bibsource = "Compendex database; http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This paper describes a scheme we have used to manage a large library written in the C++ language. The scheme imposes a directory structure, and represents dependency hierarchy in a globally accessible file we call the `prelude' file. We also discuss the structure of the description files (makefiles) used with the UNIX options we have found to be useful in reducing the size of the library, and how to minimize recompilation time after trivial changes to the source code of the library.", acknowledgement = ack-nhfb, affiliationaddress = "Chapel Hill, NC, USA", classification = "723", journalabr = "SIGPLAN Not", keywords = "Computer Operating Systems--Program Processors; Computer Programming Languages; Computer Programming--Subroutines; Design; languages; management; Operating System Unix; Program Libraries; Programming Language C Plus Plus", subject = "D.2.2 Software, SOFTWARE ENGINEERING, Tools and Techniques, Software libraries \\ D.3.2 Software, PROGRAMMING LANGUAGES, Language Classifications, C++", } @Book{Curry:1989:UCU, author = "Dave Curry", title = "Using {C} on the {UNIX} System", publisher = pub-ORA, address = pub-ORA:adr, pages = "250", month = jan, year = "1989", ISBN = "0-937175-23-4", ISBN-13 = "978-0-937175-23-1", LCCN = "QA76.73.C15 C87 1989", bibdate = "Tue Sep 13 11:59:48 MDT 1994", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$24.95", acknowledgement = ack-nhfb, } @Article{Dutton:1989:IGI, author = "R. D. Dutton and R. C. Brigham and F. Gomez", title = "{INGRID}: {A} Graph Invariant Manipulator", journal = j-J-SYMBOLIC-COMP, volume = "7", number = "2", pages = "163--178 (or 163--177??)", month = feb, year = "1989", CODEN = "JSYCEH", ISSN = "0747-7171 (print), 1095-855X (electronic)", bibdate = "Wed Mar 19 13:51:24 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classcodes = "C0220 (Education and training); C1160 (Combinatorial mathematics)", corpsource = "Univ. of Central Florida, Orlando, FL, USA", keywords = "Berkeley; commutative rule-based system; computer science education; forward chaining; graph invariant; graph theory; INGRID; interactive graph invariant delimiter; interface; manipulator; partial; Pascal; software packages; software system; UNIX; user; user-supplied restrictions; VAX 11/780", treatment = "P Practical; T Theoretical or Mathematical", } @Article{Engstrom:1989:SPS, author = "Bradley R. Engstrom and Peter R. Cappello", title = "The {SDEF} programming system", journal = j-J-PAR-DIST-COMP, volume = "7", number = "2", pages = "201--231", month = oct, year = "1989", CODEN = "JPDCER", ISSN = "0743-7315 (print), 1096-0848 (electronic)", bibdate = "Sat Apr 12 19:06:31 MDT 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliationaddress = "Santa Barbara, CA, USA", classification = "722; 723; C5120 (Logic and switching circuits); C6110 (Systems analysis and programming)", corpsource = "Dept. of Comput. Sci., California Univ., Santa Barbara, CA, USA", journalabr = "J Parallel Distrib Comput", keywords = "atomic systolic; cellular arrays; computations; Computer Architecture; Computer Programming--Algorithms; Computer Systems Programming; database; domain dependencies; domain type; editor; embedding; index set; nodal function; parallel programming; Performance; program notation; representation; SDEF Programming; SDEF programming system; software systems; spacetime; Sun 3/50; systolic array programming system; systolic array simulator; Systolic Arrays; Systolic Computations; Systolic Software; systolic software tools; translator; Transputer Array; Unix; Xwindows", treatment = "P Practical", } @Book{Frey:1989:VDE, author = "Donnalyn Frey and Rick Adams", title = "\verb|!%@|:: {A} Directory of Electronic Mail Addressing and Networks", publisher = pub-ORA, address = pub-ORA:adr, pages = "xv + 284", year = "1989", ISBN = "0-937175-39-0", ISBN-13 = "978-0-937175-39-2", LCCN = "HE6239.E54 F73 1989", bibdate = "Tue Dec 14 22:52:54 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Furht:1989:PRI, author = "Borko Furht and J. Parker and D. Grostick", title = "Performance of {REAL\slash IX$^{TM}$}-fully preemptive real time {UNIX}", journal = j-OPER-SYS-REV, volume = "23", number = "4", pages = "45--52", month = oct, year = "1989", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:51 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @TechReport{Gaur:1989:EPE, author = "Yogesh Gaur and Vincent A. Guarna and David Jablonowski", title = "An environment for performance experimentation on multiprocessors", type = "Technical Report", number = "CSRD 865", institution = inst-UIUC-CSRD, address = inst-UIUC-CSRD:adr, pages = "8", month = apr, year = "1989", bibdate = "Fri Aug 30 08:01:51 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This paper describes an interactive tool for collecting and visualizing performance statistics for programs running on an Alliant FX/8 multiprocessor. The performance `workbench' presented is based on the gprof tool, supplied as a standard component with many Unix programs. The user-friendly environment presented does most of the bookkeeping necessary to compile, execute, and analyze application programs automatically. The environment also supports a graphical interface to review experimental data. The work reported here is a part of the ongoing work on the development of the Faust programming environment at the Center for Supercomputing Research and Development at the University of Illinois at Urbana-Champaign.", acknowledgement = ack-nhfb, annote = "Submitted to Supercomputing '89, Reno, Nevada, November 1989. Supported in part by the National Science Foundation. Supported in part by the U.S. Department of Energy. Supported in part by the Air Force Office of Scientific Research.", keywords = "Computer programs --- Testing; System analysis", } @Book{Gosling:1989:NBI, author = "James Gosling and David S. H. Rosenthal and Michelle Arden", title = "The {NeWS} Book: an introduction to the {Network\slash extensible Window System}", publisher = pub-SV, address = pub-SV:adr, pages = "vi + 235", year = "1989", ISBN = "0-387-96915-2", ISBN-13 = "978-0-387-96915-2", LCCN = "QA76.76.W56 A731 1989", bibdate = "Tue May 25 07:20:00 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", keywords = "NeWS (computer file); Windows (computer programs)", } @Article{Graham:1989:TUS, author = "Ken Graham", title = "{{\em UNIX System Programming}}, by {Keith Haviland and Ben Salama}", journal = j-CUJ, volume = "7", type = "Book review", number = "10", pages = "36--??", month = oct, year = "1989", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Hudson:1989:CSA, author = "Scott E. Hudson and Roger King", title = "{Cactis}: {A} Self-Adaptive, Concurrent Implementation of an Object-Oriented Database Management System", journal = j-TODS, volume = "14", number = "3", pages = "291--321", month = sep, year = "1989", CODEN = "ATDSD3", ISSN = "0362-5915 (print), 1557-4644 (electronic)", bibdate = "Sat Apr 14 10:34:48 MDT 2001", bibsource = "Database/Graefe.bib; Database/Wiederhold.bib; http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org/pubs/articles/journals/tods/1989-14-3/p291-hudson/p291-hudson.pdf; http://www.acm.org/pubs/citations/journals/tods/1989-14-3/p291-hudson/; http://www.acm.org/pubs/toc/Abstracts/tods/68013.html", abstract = "Cactis is an object-oriented, multiuser DBMS developed at the University of Colorado. The system supports functionally-defined data and uses techniques based on attributed graphs to optimize the maintenance of functionally-defined data. The implementation is self-adaptive in that the physical organization and the update algorithms dynamically change in order to reduce disk access. The system is also concurrent. At any given time there are some number of computations that must be performed to bring the database up to date; these computations are scheduled independently and are performed when the expected cost to do so is minimal. The DBMS runs in the Unix/C Sun workstation environment. Cactis is designed to support applications that require rich data modeling capabilities and the ability to specify functionally-defined data, but that also demand good performance. Specifically, Cactis is intended for use in the support of such applications as VLSI and PCB design, and software environments.", acknowledgement = ack-nhfb, affiliation = "Dept. of Comput. Sci., Arizona Univ., Tucson, AZ, USA", annote = "attributes of objects can be derived; dynamic definition of a scheme, depending on the user's requirements functionally defined data, intelligent update algorithms", generalterms = "Algorithms; Design; Performance", keywords = "algorithms; clustering derived update propagation TODS; design; performance", subject = "{\bf H.2.4}: Information Systems, DATABASE MANAGEMENT, Systems, Cactis. {\bf H.2.1}: Information Systems, DATABASE MANAGEMENT, Logical Design, Data models. {\bf H.2.2}: Information Systems, DATABASE MANAGEMENT, Physical Design. {\bf J.6}: Computer Applications, COMPUTER-AIDED ENGINEERING.", } @Article{Hwu:1989:IFE, author = "Wen-Mei W. Hwu and Pohua P. Chang", title = "Inline function expansion for compiling {C} programs", journal = j-SIGPLAN, volume = "24", number = "7", pages = "246--257", month = jul, year = "1989", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:15:41 MST 2003", bibsource = "http://portal.acm.org/; http://www.acm.org/pubs/contents/proceedings/pldi/73141/index.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/pldi/73141/p246-chang/", abstract = "Inline function expansion replaces a function call with the function body. With automatic inline function expansion, programs can be constructed with many small functions to handle complexity and then rely on the compilation to eliminate most of the function calls. Therefore, inline expansion serves a tool for satisfying two conflicting goals: minimizing the complexity of the program development and minimizing the function call overhead of program execution. A simple inline expansion procedure is presented which uses profile information to address three critical issues: code expansion, stack expansion, and unavailable function bodies. Experiments show that a large percentage of function calls\slash returns (about 59\%) can be eliminated with a modest code expansion cost (about 17\%) for twelve UNIX programs.", acknowledgement = ack-nhfb, affiliationaddress = "Urbana, IL, USA", annote = "Published as part of the Proceedings of PLDI'89.", classification = "723", conference = "Proceedings of the SIGPLAN '89 Conference on Programming Language Design and Implementation", journalabr = "SIGPLAN Not", keywords = "Computer Operating Systems; Computer Programming Languages--Design; design; languages; Program Compilers; Programming Language C", meetingaddress = "Portland, OR, USA", meetingdate = "Jun 21--23 1989", meetingdate2 = "06/21--23/89", sponsor = "ACM, Special Interest Group on Programming Languages, New York; SS NY, USA", subject = "{\bf D.3.4} Software, PROGRAMMING LANGUAGES, Processors, Compilers. {\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, C. {\bf D.2.1} Software, SOFTWARE ENGINEERING, Requirements/Specifications, Languages.", xxauthor = "P. P. Chang and W. W. Hwu", } @Book{Jaeschke:1989:MSC, author = "Rex Jaeschke", title = "Mastering Standard {C}\emdash {A} Self-paced Training Workbook for Modern {C} Language", publisher = pub-PPB, address = pub-PPB:adr, pages = "366", year = "1989", ISBN = "0-9614729-8-7", ISBN-13 = "978-0-9614729-8-6", LCCN = "QA76.73.C15 J337 1989", bibdate = "Sun Jul 10 11:40:58 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Jaeschke:1989:PCL, author = "Rex Jaeschke", title = "Portability and the {C} Language", publisher = pub-HAYDEN, address = pub-HAYDEN:adr, pages = "xvi + 382", year = "1989", ISBN = "0-672-48428-5", ISBN-13 = "978-0-672-48428-5", LCCN = "QA76.76.C64 J34 1988", bibdate = "Mon Oct 4 13:23:10 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Johnson:1989:XWA, author = "Eric F. Johnson and Kevin Reichard", title = "{X Window} Applications Programming", publisher = pub-MIS, address = pub-MIS:adr, pages = "xxii + 562", year = "1989", ISBN = "1-55828-016-2", ISBN-13 = "978-1-55828-016-8", LCCN = "QA76.76.W56 J64 1989", bibdate = "Mon Oct 4 13:46:04 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Jones:1989:IXW, author = "Oliver Jones", title = "Introduction to the {X Window System}", publisher = pub-PH, address = pub-PH:adr, pages = "xii + 511", year = "1989", ISBN = "0-13-499997-5", ISBN-13 = "978-0-13-499997-5", LCCN = "QA76.76.W56 J66 1989", bibdate = "Mon Oct 4 11:55:50 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Kay:1989:CPU, author = "Judy Kay and Bob Kummerfeld", title = "{C} programming in a {UNIX} environment", publisher = pub-AW, address = pub-AW:adr, pages = "xii + 340", year = "1989", ISBN = "0-13-109760-1 (paperback); 0-201-12912-4 (paperback)", ISBN-13 = "978-0-13-109760-5 (paperback); 978-0-201-12912-0 (paperback)", LCCN = "QA76.73.C15 K39 1988", bibdate = "Fri Jun 10 13:04:25 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "See book review \cite{Nelson:1990:TCP}.", series = "International computer science series", acknowledgement = ack-nhfb, keywords = "C (computer program language); unix (computer file)", } @Article{Kernighan:1989:USD, author = "B. W. Kernighan", title = "The {UNIX} System Document Preparation Tools: {A} Retrospective", journal = j-ATT-TECH-J, volume = "68", number = "4", pages = "5--20", month = aug, year = "1989", ISSN = "8756-2324", bibdate = "Sat Aug 27 17:01:14 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Kochan:1989:UN, author = "Stephen G. Kochan and Patrick H. Wood", title = "{UNIX} Networking", publisher = pub-HAYDEN, address = pub-HAYDEN:adr, pages = "viii + 400", year = "1989", ISBN = "0-672-48440-4", ISBN-13 = "978-0-672-48440-7", LCCN = "QA76.76.O63 U546 1989", bibdate = "Mon Oct 4 11:56:05 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Leffler:1989:DIU, author = "Samuel J. Leffler and Marshall Kirk McKusick and Michael J. Karels and John S. Quarterman", title = "The Design and Implementation of the {4.3BSD UNIX} Operating System", publisher = pub-AW, address = pub-AW:adr, pages = "xxii + 471", year = "1989", ISBN = "0-201-06196-1", ISBN-13 = "978-0-201-06196-3", LCCN = "QA76.76.O63 D4741 1989", bibdate = "Mon Oct 4 11:56:14 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Leffler:DIU89, author = "Samuel J. Leffler and Marshall Kirk McKusick and Michael J. Karels and John S. Quarterman", title = "The Design and Implementation of the {4.3BSD UNIX} Operating System", publisher = pub-AW, address = pub-AW:adr, pages = "xxii + 471", year = "1989", ISBN = "0-201-06196-1", ISBN-13 = "978-0-201-06196-3", LCCN = "QA76.76.O63 D4741 1989", bibdate = "Wed Dec 15 10:38:09 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", } @Book{Libes:1989:LU, author = "Don Libes and Sandy Ressler", title = "Life with {UNIX}", publisher = pub-PH, address = pub-PH:adr, pages = "xx + 346", year = "1989", ISBN = "0-13-536657-7", ISBN-13 = "978-0-13-536657-8", LCCN = "QA76.76.O63 L52 1989", bibdate = "Mon Oct 4 11:56:21 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Libes:LU89, author = "Don Libes and Sandy Ressler", title = "Life with {UNIX}", publisher = pub-PH, address = pub-PH:adr, pages = "xx + 346", year = "1989", ISBN = "0-13-536657-7", ISBN-13 = "978-0-13-536657-8", LCCN = "QA76.76.O63 L52 1989", bibdate = "Wed Dec 15 10:38:15 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", } @Article{Luby:1989:SPS, author = "Michael Luby and Charles Rackoff", title = "A study of password security", journal = j-J-CRYPTOLOGY, volume = "1", number = "3", pages = "151--158", month = "????", year = "1989", CODEN = "JOCREQ", ISSN = "0933-2790 (print), 1432-1378 (electronic)", ISSN-L = "0933-2790", MRclass = "68P25 (68N25 68Q25 94A60)", MRnumber = "91a:68053", bibdate = "Sat Nov 21 16:36:38 MST 1998", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliation = "Int Computer Science Inst", affiliationaddress = "Berkeley, CA, USA", classification = "723", journalabr = "J Cryptol", keywords = "Cryptography; Data Processing--Security of Data; Password Security; Pseudorandom Function Generators; UNIX", } @Book{Mikes:1989:UMP, author = "Steven Mikes", title = "{UNIX} for {MS-DOS} Programmers", publisher = pub-AW, address = pub-AW:adr, pages = "xxviii + 474", year = "1989", ISBN = "0-201-17219-4", ISBN-13 = "978-0-201-17219-5", LCCN = "QA76.76.O63 M525 1989", bibdate = "Mon Oct 4 13:04:39 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{MKS:1989:MA, author = "{Mortice Kern Systems}", title = "{MKS AWK}", publisher = "Mortice Kern Systems", address = "Waterloo, ON, Canada", year = "1989", ISBN = "1-895033-01-2", ISBN-13 = "978-1-895033-01-4", LCCN = "A76 .73 A95; QA76.73", bibdate = "Fri Jul 01 14:41:50 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Version: 3.1, System: DOS 2.0+.", acknowledgement = ack-nhfb, } @Book{Muster:1989:UPU, author = "John C. C. Muster and Peter M. Birns and {Lurnix}", title = "{UNIX} Power Utilities for Power Users", publisher = pub-MIS, address = pub-MIS:adr, pages = "420", year = "1989", ISBN = "1-55828-000-6", ISBN-13 = "978-1-55828-000-7", LCCN = "QA76.76 .O63 M87 1989", bibdate = "Tue Oct 12 18:33:43 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$24.95", acknowledgement = ack-nhfb, } @Book{Nemeth:1989:USA, author = "Evi Nemeth and Garth Snyder and Scott Seebass", title = "{UNIX} System Administration Handbook", publisher = pub-PH, address = pub-PH:adr, pages = "xxx + 593", year = "1989", ISBN = "0-13-933441-6", ISBN-13 = "978-0-13-933441-2", LCCN = "QA76.76.O63 N45 1989", bibdate = "Mon Oct 4 11:56:40 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Nemeth:USA89, author = "Evi Nemeth and Garth Snyder and Scott Seebass", title = "{UNIX} System Administration Handbook", publisher = pub-PH, address = pub-PH:adr, pages = "xxx + 593", year = "1989", ISBN = "0-13-933441-6", ISBN-13 = "978-0-13-933441-2", LCCN = "QA76.76.O63 N45 1989", bibdate = "Wed Dec 15 10:40:01 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", } @Book{Quercia:1989:XWS, author = "Valerie Quercia and Tim O'Reilly", title = "{X Window System} user's guide: for {Version} 11 of the {X Window System}", volume = "3", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second, revised", pages = "xxi + 546", month = jul, year = "1989", ISBN = "0-937175-36-6", ISBN-13 = "978-0-937175-36-1", LCCN = "QA76.76.W56 D44 v.3 1989", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "The definitive guides to the {X Window System}", acknowledgement = ack-nhfb, keywords = "X Window System (computer system)", } @Article{Rain:1989:PIV, author = "Mark Rain", title = "Portable {IPC} on {Vanilla Unix}", journal = j-SIGPLAN, volume = "24", number = "5", pages = "47--56", month = may, year = "1989", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:15:39 MST 2003", bibsource = "Compendex database; http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "The paper describes an efficient, portable implementation of interprocess communication which does not require modifications to the operating system. The IPC facility described supports communication between arbitrary processes even on systems, such as vanilla Unix V, which normally restrict communication to parent\slash child or sibling process pairs. Interprocess channels are dynamically allocated, and no system configuration or other static specification is required. The implementation embeds a server registry facility to help clients find the IPC channels for servers. A library of C functions supports the creation, allocation, deallocation and maintenance of IPC channels, the registering, unregistering and searching for servers, and a general packet communication protocol for use between processes using IPC. While described in the context of Unix, the mechanism generalizes to any operating system which supports the `pipe' or `core file' concept.", acknowledgement = ack-nhfb, affiliationaddress = "Deer Isle, ME, USA", classification = "722; 723", journalabr = "SIGPLAN Not", keywords = "Computer Operating Systems; Computer Software; Computer Systems, Digital--Multiprocessing; Computers--Data Communication Systems; design; Interprocess Channels; Interprocess Communication; Packet Communication Protocol; Portability; Server Model; Unix Operating System", subject = "D.4.0 Software, OPERATING SYSTEMS, General, UNIX \\ D.4.4 Software, OPERATING SYSTEMS, Communications Management", } @Article{Ribar:1989:SSD, author = "John Ribar", title = "A Survey of System Differences Affecting Ports Between {UNIX} and {VAX} Environments", journal = j-CUJ, volume = "7", number = "1", pages = "97--??", month = jan, year = "1989", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Satyanarayanan:1989:ISL, author = "M. Satyanarayanan", title = "Integrating Security in a Large Distributed System", journal = j-TOCS, volume = "7", number = "3", pages = "247--280", month = aug, year = "1989", CODEN = "ACSYEC", ISSN = "0734-2071", bibdate = "Thu Jan 14 06:47:30 MST 1999", bibsource = "Compendex database; http://www.acm.org/pubs/contents/journals/tocs/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80/pubs/citations/journals/tocs/1989-7-3/p247-satyanarayanan/", abstract = "Andrew is a distributed computing environment that is a synthesis of the personal computing and timesharing paradigms. When mature, it is expected to encompass over 5,000 workstations spanning the Carnegie Mellon University campus. This paper examines the security issues that arise in such an environment and describes the mechanisms that have been developed to address them. These mechanisms include the logical and physical separation of servers and clients, support for secure communication at the remote procedure call level, a distributed authentication service, a file-protection scheme that combines access lists with UNIX mode bits, and the use of encryption as a basic building block. The paper also discusses the assumptions underlying security in Andrew and analyzes the vulnerability of the system. Usage experience reveals that resource control, particularly of workstation CPU cycles, is more important than originally anticipated and that the mechanisms available to address this issue are rudimentary.", acknowledgement = ack-nhfb, affiliation = "Carnegie Mellon Univ", affiliationaddress = "Pittsburgh, PA, USA", classification = "722; 723", journalabr = "ACM Trans Comput Syst", keywords = "algorithms; Andrew Distributed Computing Environment; Computer Security; Computer Systems, Digital; Computers, Personal; Cryptography; design; Distributed; security; Time Sharing", subject = "{\bf D.4.6} Software, OPERATING SYSTEMS, Security and Protection. {\bf C.0} Computer Systems Organization, GENERAL, Andrew. {\bf D.4.3} Software, OPERATING SYSTEMS, File Systems Management, Distributed file systems. {\bf C.2.4} Computer Systems Organization, COMPUTER-COMMUNICATION NETWORKS, Distributed Systems. {\bf E.3} Data, DATA ENCRYPTION, Data encryption standard (DES)**.", } @Book{Scheifler:1989:XPR, author = "Robert W. Scheifler", title = "{X} Protocol Reference Manual", volume = "0", publisher = pub-ORA, address = pub-ORA:adr, pages = "xv + 398", year = "1989", ISBN = "0-937175-40-4", ISBN-13 = "978-0-937175-40-8", bibdate = "Mon Oct 4 11:57:39 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$30.00", acknowledgement = ack-nhfb, } @Book{Skrivervik:1989:DUB, author = "Helge Skrivervik", title = "Driftsh{\aa}ndbok for {Unix BSD}", publisher = "Yrkesoppl{\ae}ring", address = "Oslo, Norway", pages = "199 (est.)", year = "1989", ISBN = "82-585-0699-4", ISBN-13 = "978-82-585-0699-4", LCCN = "????", bibdate = "Tue Sep 17 06:24:15 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, language = "Norwegian", } @Book{Sobell:1989:PGU, author = "Mark Sobell", title = "A Practical Guide to the {UNIX} System", publisher = pub-BENCUM, address = pub-BENCUM, edition = "Second.", pages = "xxv + 632", year = "1989", ISBN = "0-8053-0243-3", ISBN-13 = "978-0-8053-0243-1", LCCN = "QA76.76.O63 S595 1989", bibdate = "Tue Sep 28 12:17:10 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Similar to Christian's book \cite{Christian:1988:UOS} \ldots{} slightly easier to read \ldots{} There is a new edition for System V Release 4 \ldots{}", acknowledgement = ack-sk, } @Book{Staubach:1989:UWT, author = "Gottfried Staubach", title = "{UNIX-Werkzeuge zur Textmusterverarbeitung: Awk, Lex und Yacc}. ({German}) [{UNIX} Tools for Text Processing: {Awk}, {Lex}, and {Yacc}", publisher = pub-SV, address = pub-SV:adr, pages = "x + 157", year = "1989", ISBN = "3-540-51232-2", ISBN-13 = "978-3-540-51232-5", LCCN = "????", bibdate = "Fri Jul 01 14:48:59 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Stoll:1989:CET, author = "Cliff Stoll", title = "The Cuckoo's Egg\emdash Tracking a Spy through the Maze of Computer Espionage", publisher = pub-DOUBLEDAY, address = pub-DOUBLEDAY:adr, pages = "vi + 326", year = "1989", ISBN = "0-385-24946-2", ISBN-13 = "978-0-385-24946-1", LCCN = "UB271.R92 H477 1989", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A fascinating real story on computer espionage. A good alternative to this is \cite{Hafner:1991:COH}.", price = "US\$19.95", acknowledgement = ack-sk, } @Book{Tare:1989:DPU, author = "Ramkrishna S. Tare", title = "Data processing in the {UNIX} environment: with {INFORMIX-SQL}, {Embedded-SQL}, {C-ISAM}, and {TURBO}", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xxi + 438", year = "1989", ISBN = "0-07-062885-8", ISBN-13 = "978-0-07-062885-4", LCCN = "QA76.9 .D3 T374 1989", bibdate = "Sat Jun 17 16:35:06 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Tomayko:1989:ACI, author = "James E. Tomayko and Lawrence W. Langley and Juris Reinfelds", title = "Anecdotes: {A} Critical Incident; The First Port of {UNIX}", journal = j-ANN-HIST-COMPUT, volume = "11", number = "3", pages = "207--210", month = jul # "\slash " # sep, year = "1989", CODEN = "AHCOE5", ISSN = "0164-1239", bibdate = "Fri Nov 1 15:29:14 MST 2002", bibsource = "http://www.computer.org/annals/an1989/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://dlib.computer.org/an/books/an1989/pdf/a3207.pdf; http://www.computer.org/annals/an1989/a3207abs.htm", acknowledgement = ack-nhfb, } @Article{Tomayko:1989:AWC, author = "James E. Tomayko and Ralf B{\"u}low and Herbert R. J. Grosch and John D. Elson", title = "Anecdotes: The {Windmill Computer}---An Eyewitness Report of the {Scheutz Difference Engine}; In {Von Braun} Country; Origins of Terms [{Winchester} Disk and {UNIX}]", journal = j-ANN-HIST-COMPUT, volume = "11", number = "1", pages = "43--48", month = jan # "\slash " # mar, year = "1989", CODEN = "AHCOE5", ISSN = "0164-1239", bibdate = "Fri Nov 1 15:29:13 MST 2002", bibsource = "http://www.computer.org/annals/an1989/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://dlib.computer.org/an/books/an1989/pdf/a1043b.pdf; http://www.computer.org/annals/an1989/a1043babs.htm", acknowledgement = ack-nhfb, } @Book{Tondo:1989:CAB, author = "Clovis L. Tondo and Scott E. Gimpel", title = "The {C} Answer Book\emdash Solutions to the Exercises in {The C Programming Language}", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "208", year = "1989", ISBN = "0-13-109653-2", ISBN-13 = "978-0-13-109653-0", LCCN = "QA76.73 C15 T66 1989", bibdate = "Tue Sep 28 18:53:19 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "This book contains answers to the problems in \cite{Kernighan:1988:CPL}.", acknowledgement = ack-nhfb, } @Article{Vernon:1989:DCC, author = "Vaughn Vernon", title = "Design and Coding Considerations For {UNIX\slash MS-DOS} Application Portability", journal = j-CUJ, volume = "7", number = "1", pages = "59--??", month = jan, year = "1989", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{White:1989:SCU, author = "Eric White", title = "Serial Communications For {UNIX}", journal = j-CUJ, volume = "7", number = "7", pages = "41--??", month = jul, year = "1989", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{XOPEN:1989:XPGa, author = "{X/Open Company, Ltd.}", title = "{X}\slash Open Portability Guide, {XSI} Commands and Utilities", volume = "1", publisher = pub-PH, address = pub-PH:adr, pages = "xii + 340", year = "1989", ISBN = "0-13-685835-X", ISBN-13 = "978-0-13-685835-5", bibdate = "Mon Oct 4 11:58:23 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{XOPEN:1989:XPGb, author = "{X/Open Company, Ltd.}", title = "{X}\slash Open Portability Guide, {XSI} System Interface and Headers", volume = "2", publisher = pub-PH, address = pub-PH:adr, pages = "xx + 666", year = "1989", ISBN = "0-13-685843-0", ISBN-13 = "978-0-13-685843-0", bibdate = "Mon Oct 4 11:58:24 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{XOPEN:1989:XPGc, author = "{X/Open Company, Ltd.}", title = "{X}\slash Open Portability Guide, Supplementary Definitions", volume = "3", publisher = pub-PH, address = pub-PH:adr, pages = "xiv + 172", year = "1989", ISBN = "0-13-685850-3", ISBN-13 = "978-0-13-685850-8", bibdate = "Mon Oct 4 11:58:25 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Young:1989:XWS, author = "Douglas A. Young", title = "{X Window Systems}\emdash Programming and Applications with {Xt}", publisher = pub-PH, address = pub-PH:adr, pages = "x + 468", year = "1989", ISBN = "0-13-972167-3", ISBN-13 = "978-0-13-972167-0", LCCN = "QA76.76.W56 Y68 1989", bibdate = "Mon Oct 4 11:58:30 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Agrawal:1990:OUF, author = "R. Agrawal and N. H. Gehani and J. Srinivasan", title = "{OdeView}. {A} user-friendly graphical interface to {Ode}", journal = j-SIGMOD, volume = "19", number = "2", pages = "389--389", month = jun, year = "1990", CODEN = "SRECD8", ISSN = "0163-5808 (print), 1943-5835 (electronic)", bibdate = "Mon Jan 12 08:45:34 MST 2004", bibsource = "Compendex database; http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "OdeView is the graphical front end for Ode, an object-oriented database system and environment. It is intended for users who do not want to write programs in Ode's database programming language O++ to interact with Ode but instead want to use a friendlier interface to Ode. OdeView is based on the graphical direct manipulation paradigm that involves selection of items from pop-up menus and icons that can be clicked on the dragged. OdeView provides facilities for examining the database schema examining class definitions, browsing objects, following chains of references, displaying selected portions of objects or selecting a subset of the ways in which an object can be displayed (projection), and retrieving specific objects (selection). OdeView is implemented using X-Windows and HP-Widgets on a SUN workstation running the UNIX system. The video takes the viewers on a tour of OdeView, showing how a user interacts with OdeView to examine the database schema and the objects in the database.", acknowledgement = ack-nhfb, affiliation = "AT\&T Bell Lab", affiliationaddress = "Murray Hill, NJ, USA", classification = "723; C6130B (Graphics techniques); C6160Z (Other DBMS); C6180 (User interfaces)", conference = "Proceedings of the 1990 ACM SIGMOD International Conference on Management of Data", conferenceyear = "1990", keywords = "Browsing objects; Chains of references; Class definitions; Clicked on; Computer Graphics; Computer Programming Languages; Computer Workstations; Database schema; Database Systems; Dragged; Environment; Graphical direct manipulation; Graphical front end; Graphical interface; Icons; Object retrieval; Object-oriented database system; Ode; OdeView; Performance; Pop-up menus; Projection; Selection; User Friendly Interfaces; Videotape Presentation Summary Only, Object display", meetingaddress = "Atlantic City, NJ, USA", meetingdate = "May 23--25 1990", meetingdate2 = "05/23--25/90", publisherinfo = "Fort Collins Computer Center", sponsor = "ACM SIGMOD, New York, NY, USA", thesaurus = "Computer graphics; Database management systems; Object-oriented programming; User interfaces", xxcrossref = "Anonymous:1990:ASI", } @Article{Angebranndt:1990:XSS, author = "S. Angebranndt and P. Karlton and R. Drewry and T. Newman", title = "The {X11} Sample Server", journal = j-SPE, volume = "20", number = "S2", pages = "69--81", month = oct, year = "1990", CODEN = "SPEXBL", ISSN = "0038-0644 (print), 1097-024X (electronic)", bibdate = "Sat Feb 26 13:24:43 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Anonymous:1990:DMR, author = "Anonymous", title = "{DEC} Moves to {RISC}, {POSIX}", journal = j-INFORMATION-WEEK, volume = "293", pages = "14--??", day = "29", month = oct, year = "1990", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Sat May 25 15:28:26 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", abstract = "Company throws itself into the open systems arena with product introduction.", acknowledgement = ack-nhfb, } @Article{Anonymous:1990:HPS, author = "Anonymous", title = "The history of {Posix}: {A} study in the standards process", journal = j-COMPUTER, volume = "23", number = "7", pages = "89--??", month = jul, year = "1990", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Arthur:1990:USP, author = "Lowell Arthur", title = "{UNIX} Shell Programming", publisher = pub-WILEY-INTERSCIENCE, address = pub-WILEY-INTERSCIENCE:adr, edition = "Second", pages = "xii + 272", year = "1990", ISBN = "0-471-51821-2", ISBN-13 = "978-0-471-51821-1", LCCN = "QA76.76.O63 A765 1990", bibdate = "Wed Sep 29 10:53:58 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "This covers not only common shells but also general software tool concepts.", acknowledgement = ack-sk, } @Book{Asente:1990:XWS, author = "Paul J. Asente and Ralph R. Swick", title = "{X Window System} Toolkit\emdash The Complete Programmer's Guide and Specification", publisher = pub-DP, address = pub-DP:adr, pages = "xxxv + 967", year = "1990", ISBN = "1-55558-051-3", ISBN-13 = "978-1-55558-051-3", LCCN = "QA76.76.W56 A74 1990", bibdate = "Mon Oct 4 11:58:54 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{ATT:1990:USVa, author = "{American Telephone and Telegraph Company}", title = "{UNIX System V} release 4: programmer's guide: {POSIX} conformance", publisher = pub-PH, address = pub-PH:adr, pages = "i + 44 + 3", year = "1990", ISBN = "0-13-933672-9", ISBN-13 = "978-0-13-933672-0", LCCN = "QA76.76.O63 U5521869 1990 Bar", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "UNIX System V (computer file)", } @Book{ATT:1990:USVb, author = "{American Telephone and Telegraph Company}", title = "{UNIX System V} release 4. {BSD\slash XENIX} compatibility guide", publisher = pub-PH, address = pub-PH:adr, pages = "various", year = "1990", ISBN = "0-13-933664-8", ISBN-13 = "978-0-13-933664-5", LCCN = "QA76.76.O63 U552184 1990", bibdate = "Tue Sep 17 05:44:14 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "UNIX System V (computer file); XENIX", } @Book{Bourne:1990:UVU, author = "Philip E. Bourne", title = "{UNIX} for {VMS} Users", publisher = pub-DP, address = pub-DP:adr, pages = "xvi + 368", year = "1990", ISBN = "1-55558-034-3", ISBN-13 = "978-1-55558-034-6", LCCN = "QA76.76.O63 B67 1990", bibdate = "Mon Oct 4 11:54:21 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Bourne:UVU90, author = "Philip E. Bourne", title = "{UNIX} for {VMS} Users", publisher = pub-DP, address = pub-DP:adr, pages = "xvi + 368", year = "1990", ISBN = "1-55558-034-3", ISBN-13 = "978-1-55558-034-6", LCCN = "QA76.76.O63 B67 1989", bibdate = "Tue Dec 14 22:41:28 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", } @Article{Chang:1990:ESF, author = "A. Chang and M. F. Mergen and R. K. Rader and J. A. Roberts and S. L. Porter", title = "Evolution of storage facilities in {AIX} Version 3 for {RISC System\slash 6000} processors", journal = j-IBM-JRD, volume = "34", number = "1", pages = "105--110", month = jan, year = "1990", CODEN = "IBMJAE", ISSN = "0018-8646 (print), 2151-8556 (electronic)", bibdate = "Tue Mar 25 14:26:59 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "The AIX Version 3 storage facilities include features not found in other implementations of the UNIX operating system. Maximum virtual memory is more than 1000 terabytes and is used pervasively to access all files and the meta-data of the file systems. Each separate file system (subtree) of the file name hierarchy occupies a logical disk volume, composed of space from possibly several disks. Database memory (a variant of virtual memory) and other database techniques are used to manage file system meta-data. These features provide the capacity to address large applications and many users, simplified program access to file data, efficient file buffering in memory, flexible management of disk space, and reliable file systems with short restart time.", acknowledgement = ack-nhfb, affiliation = "IBM Res. Div., Thomas J. Watson Res. Center", classcodes = "C6150J (Operating systems); C6120 (File organisation)", classification = "C6120 (File organisation); C6150J (Operating systems)", corpsource = "IBM Res. Div., Thomas J. Watson Res. Center, Yorktown Heights, NY, USA", keywords = "(computers); AIX Version 3; AIX Version 3 storage facilities; buffering; database memory; Database memory; disk space; Disk space; file; File buffering; file data; File data; file name hierarchy; File name hierarchy; file organisation; file systems; File systems; flexible management; Flexible management; IBM computers; logical disk volume; Logical disk volume; meta-data; Meta-data; operating systems; program access; Program access; reduced instruction set computing; reliable file; Reliable file systems; restart time; Restart time; RISC System/6000 processors; storage; storage facilities; subtree; Subtree; systems; UNIX operating system; virtual; virtual memory; Virtual memory", thesaurus = "File organisation; IBM computers; Operating systems [computers]; Reduced instruction set computing; Virtual storage", treatment = "P Practical", } @InProceedings{Christoph:1990:SCG, author = "G. Christoph", title = "Security Considerations of Going to a {UNIX} Based Supercomputer Operating System", crossref = "USENIX:1990:USI", pages = "129--130", year = "1990", bibdate = "Mon Aug 26 10:38:41 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Coffin:1990:USV, author = "Stephen Coffin", title = "{UNIX} System {V} Release 4: The Complete Reference", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, pages = "xxxviii + 905", year = "1990", ISBN = "0-07-881653-X", ISBN-13 = "978-0-07-881653-6", LCCN = "QA76.76.O63 C6415 1990", bibdate = "Wed Sep 29 13:28:21 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Another good book on UNIX fundamentals and related subjects.", acknowledgement = ack-sk, } @Manual{CrayResearch:1990:UXW, author = "{Cray Research, Inc}", title = "{UNICOS X Window System} reference manual", number = "SR-2101 6.0.", publisher = "Cray Research, Inc.", address = "Mendota Heights, MN", edition = "Version 6.0", pages = "ix + 54", year = "1990", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Curry:1990:UCU, author = "David Curry", title = "Using {C} on the {UNIX} System", publisher = pub-ORA, address = pub-ORA:adr, pages = "xii + 379", year = "1990", ISBN = "0-937175-23-4", ISBN-13 = "978-0-937175-23-1", LCCN = "QA76.76.O63 H68 1992", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "This book is directed to (would-be) system programmers.", price = "US\$24.95", acknowledgement = ack-sk, } @Article{deFeraudy:1990:CUT, author = "Henri de Feraudy and Robert {Artigas, Jr.} and Arkin Asaf and Martin D. Winnick", title = "{CUG329 UNIX} Tools for {PC}", journal = j-CUJ, volume = "8", type = "CUG New Release", number = "11", pages = "126--??", month = nov, year = "1990", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Droms:1990:PMX, author = "R. Droms and W. R. Dyksen", title = "Performance Measurements of the {X Window System} Communication Protocol", journal = j-SPE, volume = "20", number = "S2", pages = "119--136", month = oct, year = "1990", CODEN = "SPEXBL", ISSN = "0038-0644 (print), 1097-024X (electronic)", bibdate = "Fri Feb 09 18:13:06 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Ellis:1990:ACR, author = "Margaret A. Ellis and Bjarne Stroustrup", title = "The Annotated {C++} Reference Manual", publisher = pub-AW, address = pub-AW:adr, pages = "x + 453", year = "1990", ISBN = "0-201-51459-1", ISBN-13 = "978-0-201-51459-9", LCCN = "QA76.73.C153 E35 1990", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Farrow:1990:USS, author = "Rik Farrow", title = "{UNIX} System Security\emdash How to Protect your Data and Prevent Intruders", publisher = pub-AW, address = pub-AW:adr, pages = "vii + 278", year = "1990", ISBN = "0-201-57030-0", ISBN-13 = "978-0-201-57030-4", LCCN = "QA76.76.O63 F38 1991", bibdate = "Fri Jun 02 16:52:22 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Fine \ldots{} slightly not as technical as other books.", price = "US\$22.95, CDN\$29.95", acknowledgement = ack-sk, } @Article{Flatters:1990:TUP, author = "Chris Flatters", title = "{{\em UNIX Programming: Methods and Tools}}, by {James F. Peters III}", journal = j-CUJ, volume = "8", type = "Book review", number = "11", pages = "119--??", month = nov, year = "1990", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "See \cite{Peters:1988:UPM}.", acknowledgement = ack-nhfb, } @Article{Florence:1990:UTF, author = "Ronald Florence", title = "{UNIX} `termcap' Facility Improves Portability By Hiding Terminal Dependencies", journal = j-CUJ, volume = "8", number = "1", pages = "93--??", month = jan, year = "1990", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Freda:1990:UIC, author = "William J. Freda", title = "{UNIX} Interprocess Communications", journal = j-CUJ, volume = "8", number = "11", pages = "49--??", month = nov, year = "1990", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Gajewska:1990:WXO, author = "Hania Gajewska and Mark S. Manasse and Joel McCormack", title = "Why {X} is Not Our Ideal Window System", journal = j-SPE, volume = "20", number = "S2", pages = "137--171", month = oct, year = "1990", CODEN = "SPEXBL", ISSN = "0038-0644 (print), 1097-024X (electronic)", bibdate = "Sat Feb 26 13:31:20 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Gettys:1990:XCL, author = "James Gettys and Robert W. Scheifler and Ron Newman", title = "Xlib: {C} Language {X} Interface ({X} version 11, release 4)", publisher = pub-SILICON, address = pub-SILICON:adr, pages = "x + 295", year = "1990", ISBN = "0-929306-03-1", ISBN-13 = "978-0-929306-03-2", LCCN = "QA76.73.C15 G47 1990", bibdate = "Sat Feb 19 12:15:03 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @Article{Gettys:1990:XWS, author = "J. Gettys and P. L. Karlton and S. McGregor", title = "The {X Window System}, Version 11", journal = j-SPE, volume = "20", number = "S2", pages = "35--67", month = oct, year = "1990", CODEN = "SPEXBL", ISSN = "0038-0644 (print), 1097-024X (electronic)", bibdate = "Sat Feb 26 13:22:24 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Gianone:1990:UMK, author = "Christine M. Gianone", title = "Using {MS-DOS KERMIT}: connecting your {PC} to the Electronic World", publisher = pub-DP, address = pub-DP:adr, pages = "xxv + 244", year = "1990", ISBN = "1-55558-048-3", ISBN-13 = "978-1-55558-048-3", LCCN = "TK5105.9 .G5 1990", bibdate = "Tue Oct 5 07:24:43 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Griswold:1990:IPL, author = "Ralph E. Griswold and Madge T. Griswold", title = "The {Icon} Programming Language", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "xv + 367", year = "1990", ISBN = "0-13-447889-4", ISBN-13 = "978-0-13-447889-0", LCCN = "QA76.73.I19 G74 1990", bibdate = "Tue Dec 14 22:54:39 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @TechReport{Hammerslag:1990:FLB, author = "David H. Hammerslag", title = "{Faust} library browser: user's manual", number = "CSRD 961", institution = inst-UIUC-CSRD, address = inst-UIUC-CSRD:adr, pages = "15 + 4", month = jan, year = "1990", bibdate = "Fri Aug 30 08:01:51 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This document describes the Faust library browser. The browser presents the user with an outline-like view of a UNIX directory structure. The user is able to expand and contract directories. Directories and files may have additional information associated with them which can be accessed by the user via pop up menus. The browser is designed to be used with libraries of mathematical software, but its principles are sufficiently general to allow it (with some modification) to be used for any type of directory browsing. The browser is implemented with the X Window system and Motif. We first present a manual of operation for the browser. After that, we discuss how to set up a library (directory) for browsing.", acknowledgement = ack-nhfb, annote = "Supported by the Air Force Office of Scientific Research.", keywords = "Operating systems (Computers); UNIX (Computer operating system)", } @Article{Harrison:1990:NNP, author = "Bradford T. Harrison", title = "Networking: {NAS}, {POSIX} And {RISC\slash VMS} On The Network", journal = j-DEC-PROFESSIONAL, volume = "9", number = "12", pages = "94--??", month = nov, year = "1990", ISSN = "0744-9216", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Haworth:1990:EDS, author = "Guy Haworth and Steve Leunig and Carsten Hammer and Mike Reeve", title = "The {European Declarative System}, database, and languages", journal = j-IEEE-MICRO, volume = "10", number = "6", pages = "20--23, 83--88", month = dec, year = "1990", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/40.62726", ISSN = "0272-1732 (print), 1937-4143 (electronic)", bibdate = "Mon Apr 7 14:39:59 MDT 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "To address future demands of immense, complex databases, this intelligent information server exploits large-scale parallelism and supports current interfaces such as Unix and SQL.", acknowledgement = ack-nhfb, affiliation = "ICL, Reading, UK", classcodes = "C6160 (Database management systems (DBMS)); C7250 (Information storage and retrieval); C6110 (Systems analysis and programming)", classification = "722; 723", corpsource = "ICL, Reading, UK", journalabr = "IEEE Micro", keywords = "Computational Models; Computer Architecture; Computer Programming Languages; database; database management systems; Database Systems--Research; Declarative Languages; design; Elipsys logic programming; EP2025 EDS project; European Declarative System; high-value interfaces; highly; language; language subsystems; Lisp; logic programming; Metal machine translation system; parallel information server; Research", treatment = "P Practical", } @Book{Heller:1990:XPMa, author = "Dan Heller", title = "{XView} Programming Manual", volume = "7", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxviii + 557", year = "1990", ISBN = "0-937175-38-2", ISBN-13 = "978-0-937175-38-5", LCCN = "QA76.76.W56 D44 v.7 1990", bibdate = "Mon Oct 4 11:20:17 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Heller:1990:XPMb, author = "Dan Heller", title = "{XView} Programming Manual: for Version 11 of the {X Window System}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxviii + 642", year = "1990", ISBN = "0-937175-52-8", ISBN-13 = "978-0-937175-52-1", LCCN = "QA76.76.W56 H355 1990", bibdate = "Wed Sep 14 14:14:42 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Heslop:1990:MS, author = "Brent Heslop and David Angell", title = "Mastering {SunOS}", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xxxii + 588", year = "1990", ISBN = "0-89588-683-9", ISBN-13 = "978-0-89588-683-5", LCCN = "QA76.76.O63G37 1991", bibdate = "Tue Sep 28 12:17:10 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A good comprehensive hands-on text to SunOS and OpenWindows.", price = "US\$29.95", acknowledgement = ack-sk, } @Book{Hewlett-Packard:1990:UGT, author = "{Hewlett--Packard Company}", title = "The Ultimate Guide to the {\tt vi} and {\tt ex} Text Editors", publisher = pub-BENCUM, address = pub-BENCUM:adr, year = "1990", ISBN = "0-8053-4460-8", ISBN-13 = "978-0-8053-4460-8", LCCN = "QA76.76.O63 U48 1990", bibdate = "Wed Sep 29 16:26:21 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Another decent text on {\tt vi} and {\tt ex}.", acknowledgement = ack-sk, } @Article{Hirschberg:1990:EDP, author = "Daniel S. Hirschberg and Debra A. Lelewer", title = "Efficient decoding of prefix codes", journal = j-CACM, volume = "33", number = "4", pages = "449--459", month = apr, year = "1990", CODEN = "CACMA2", ISSN = "0001-0782 (print), 1557-7317 (electronic)", bibdate = "Thu May 30 09:41:10 MDT 1996", bibsource = "ftp://ftp.ira.uka.de/pub/bibliography/Misc/IMMD_IV.bib; http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "This is the first of four key papers behind the {\tt bzip2} compression tools. The others are \cite{Burrows:1994:BSL,Wheeler:1997:UBM,Sedgewick:1997:FAS}.", URL = "http://www.acm.org/pubs/toc/Abstracts/0001-0782/77566.html", abstract = "A special case of the data compression problem is presented, in which a powerful encoder transmits a coded file to a decoder that has severely constrained memory. A data structure that achieves minimum storage is presented, and alternative methods that sacrifice a small amount of storage to attain faster decoding are described.", acknowledgement = ack-nhfb, keywords = "algorithms; bzip2; performance", subject = "{\bf E.4}: Data, CODING AND INFORMATION THEORY, Data compaction and compression. {\bf E.1}: Data, DATA STRUCTURES, Tables. {\bf E.2}: Data, DATA STORAGE REPRESENTATIONS. {\bf H.1.1}: Information Systems, MODELS AND PRINCIPLES, Systems and Information Theory, Information theory.", } @Book{Horton:1990:PCS, author = "Mark R. Horton", title = "Portable {C} Software", publisher = pub-PH, address = pub-PH:adr, pages = "ix + 372", year = "1990", ISBN = "0-13-868050-7", ISBN-13 = "978-0-13-868050-3", LCCN = "QA76.73.C15 H67 1990", bibdate = "Wed Aug 10 12:04:41 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$53.00", acknowledgement = ack-nhfb, } @Article{Horwitz:1990:IST, author = "Susan Horwitz", title = "Identifying the semantic and textual differences between two versions of a program", journal = j-SIGPLAN, volume = "25", number = "6", pages = "234--245", month = jun, year = "1990", CODEN = "SINODQ", ISBN = "0-89791-364-7", ISBN-13 = "978-0-89791-364-5", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:15:53 MST 2003", bibsource = "Compendex database; http://portal.acm.org/; http://www.acm.org/pubs/contents/proceedings/pldi/93542/index.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/pldi/93542/p234-horwitz/", abstract = "Text-based file comparators (e.g., the Unix utility diff), are very general tools that can be applied to arbitrary files. However, using such tools to compare programs can be unsatisfactory because their only notion of change is based on program text rather than program behavior. This paper describes a technique for comparing two versions of a program, determining which program components represent changes, and classifying each changed component as representing either a semantic or a textual change.", acknowledgement = ack-nhfb, affiliation = "Univ of Wisconsin-Madison", affiliationaddress = "Madison, WI, USA", annote = "Published as part of the Proceedings of PLDI'90.", classification = "723", conference = "Proceedings of the ACM SIGPLAN '90 Conference on Programming Language Design and Implementation", conferenceyear = "1990", journalabr = "SIGPLAN Not", keywords = "algorithms; Computer Operating Systems --- Program Processors; Computer Programming; design; Testing; Text-Based File Comparators; verification", meetingaddress = "White Plains, NY, USA", meetingdate = "Jun 20--22 1990", meetingdate2 = "06/20--22/90", sponsor = "Assoc for Computing Machinery, Special Interest Group on Programming Languages", subject = "{\bf D.3.1} Software, PROGRAMMING LANGUAGES, Formal Definitions and Theory, Semantics. {\bf D.2.2} Software, SOFTWARE ENGINEERING, Design Tools and Techniques. {\bf F.3.3} Theory of Computation, LOGICS AND MEANINGS OF PROGRAMS, Studies of Program Constructs. {\bf G.2.2} Mathematics of Computing, DISCRETE MATHEMATICS, Graph Theory, Graph algorithms. {\bf D.4.2} Software, OPERATING SYSTEMS, Storage Management. {\bf F.2.2} Theory of Computation, ANALYSIS OF ALGORITHMS AND PROBLEM COMPLEXITY, Nonnumerical Algorithms and Problems, Computations on discrete structures.", } @Book{IEC:1990:ITP, author = "{International Electrotechnical Commission}", title = "Information technology --- {Portable Operating System Interface (POSIX)}", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "various", year = "1990", ISBN = "1-55937-061-0 (vol. 1)", ISBN-13 = "978-1-55937-061-5 (vol. 1)", LCCN = "QA76.76.O63 I539 1990", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "International standard ISO/IEC 9945. IEEE Std 1003.1-1990 (revision of IEEE Std 1003.1-1988). Contents: pt. 1. System application program interface (API) [C language].", acknowledgement = ack-nhfb, keywords = "application software; C (computer program language); POSIX (computer software standard); UNIX (computer file)", } @Book{Johnson:1990:AXW, author = "Eric F. Johnson and Kevin Reichard", title = "Advanced {X Window} Applications Programming\emdash The Basics and Beyond", publisher = pub-MIS, address = pub-MIS:adr, pages = "xxii + 615", year = "1990", ISBN = "1-55828-029-4", ISBN-13 = "978-1-55828-029-8", LCCN = "QA76.76.W56 J63 1990", bibdate = "Thu Dec 9 18:03:41 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95 (book), US\$59.95 (book/disk)", acknowledgement = ack-nhfb, } @Book{Keller:1990:PGX, author = "Brian J. Keller", title = "A Practical Guide to {X Window} Programming\emdash Developing Applications with the {Xt} Intrinsics and {OSF\slash Motif}", publisher = pub-CRC, address = pub-CRC:adr, pages = "xiii + 349", year = "1990", ISBN = "0-8493-7406-5", ISBN-13 = "978-0-8493-7406-7", LCCN = "QA76.76.W56 K45 1990", bibdate = "Mon Oct 4 14:28:09 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Kent:1990:SIX, author = "Christopher A. Kent", title = "Special issue on the {X Window System}", volume = "20(S2)", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "S2/181", year = "1990", ISBN = "0-471-93006-7", ISBN-13 = "978-0-471-93006-8", LCCN = "QA76.5.A1 S653 v.20 no.S2", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Software practice and experience", acknowledgement = ack-nhfb, keywords = "X Window System (computer system)", } @Book{Kochan:1990:USP, author = "Stephen Kochan and Patrick Wood", title = "{UNIX} Shell Programming", publisher = pub-HAYDEN, address = pub-HAYDEN:adr, edition = "Revised.", pages = "xi + 490", year = "1990", ISBN = "0-672-48448-X", ISBN-13 = "978-0-672-48448-3", LCCN = "QA76.76.O63 K64 1992", bibdate = "Tue Mar 09 14:51:56 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "{\em Highly recommended}. A classic on using and programming Bourne Shell (and Korn Shell).", price = "US\$29.95", acknowledgement = ack-sk, } @Book{Lamb:1990:LTV, author = "Linda Lamb", title = "Learning the {\tt vi} Editor", publisher = pub-ORA, address = pub-ORA:adr, edition = "Fifth", pages = "xvi + 173", year = "1990", ISBN = "0-937175-67-6", ISBN-13 = "978-0-937175-67-5", LCCN = "QA76.8.U65 L35 1988", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A very good guide to {\tt vi} and {\tt ex} commands \ldots{}. With a quick reference card \ldots{}. Other good {\tt vi} stuff (including an online tutorial) is obtained by anonymous {\tt ftp} from \path|cs.uwp.edu| (in \path|pub/vi|).", price = "US\$21.95", acknowledgement = ack-sk, } @Article{Lanzatella:1990:SMI, author = "Thomas W. Lanzatella and Paul G. Rutherford", title = "Storage management issues for {Cray Research}", journal = j-DIGEST-PAPERS-IEEE-SYMP-MASS-STOR-SYS, pages = "176--181", year = "1990", CODEN = "DPISDX", ISBN = "0-8186-2034-x", ISBN-13 = "978-0-8186-2034-8", ISSN = "1051-9173", LCCN = "????", bibdate = "Mon Aug 26 10:51:12 MDT 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "IEEE catalog number 90CH2844-9.", abstract = "The issues facing Cray Research as a supercomputer vendor resulting from the availability of high-speed networks (100 MB/s) connected to high-capacity storage devices (\$GRT@1 TB) are discussed. Current capabilities in the area of storage management in the UNICOS operating system are reviewed. Operational requirements stemming from the changing environment along with functional extensions to the UNICOS operating system are discussed.", acknowledgement = ack-nhfb, affiliation = "Cray Res, Inc, Mendota Heights, MN, USA", classification = "722; 723", conference = "Digest of Papers --- Tenth IEEE Symposium on Mass Storage Systems", conferenceyear = "1990", journalabr = "Dig Pap IEEE Symp Mass Storage Syst", keywords = "Computer Operating Systems --- UNIX; Data Storage Units; Management; Mass Storage; Storage Management; UNICOS Operating System", meetingaddress = "Monterey, CA, USA", meetingdate = "May 7--10 1990", meetingdate2 = "05/07--10/90", publisherinfo = "IEEE Service Center", sponsor = "IEEE Computer Soc", } @Book{Leffler:1990:BUB, author = "Samuel J. Leffler and Marshall Kirk McKusick and Michael J. Karels and John S. Quarterman", title = "{Das 4.3-BSD-Unix-Betriebssystem: Design und Implementierung}. ({German}) [The {4.3 BSD UNIX} Operating System: Design and Implementation]", publisher = pub-AW, address = pub-AW:adr, pages = "xvi + 678", year = "1990", ISBN = "3-89319-239-5", ISBN-13 = "978-3-89319-239-7", LCCN = "????", bibdate = "Tue Sep 17 06:46:01 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, language = "German", } @Article{Leler:1990:LMU, author = "W. Leler", title = "{Linda} Meets {Unix}", journal = j-COMPUTER, volume = "23", number = "2", pages = "43--54", month = feb, year = "1990", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Sat Feb 1 16:21:14 MST 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "A system-level version of the Linda high-level parallel software paradigm is used as the basis of the QIX operating system, which supports both multiprocessing and multiprogramming while retaining Unix compatibility.", acknowledgement = ack-nhfb, affiliation = "Cogent Research Inc, Beaverton, OR, USA", classification = "722; 723; C5440 (Multiprocessor systems and techniques); C6110 (Systems analysis and programming); C6120 (File organisation); C6150J (Operating systems)", journalabr = "Computer", keywords = "Associative memory; Computer Operating Systems; Computer Systems Programming--Multiprogramming; Computer Systems, Digital; Computers, Microcomputer; Distributed Memory Model; Distributed-memory models; Dynamic Load Balancing; Explicit parallel programming; Linda Parallel Communication Paradigm; Linda parallel communication paradigm; Name resolution; Operating systems; Parallel Processing; Parallel Programming; Program communication; QIX; QIX Operating System; Shared data space; Shared-memory; Tuple space; Tuple Spaces; Unix", thesaurus = "Content-addressable storage; Parallel machines; Parallel programming; Storage management; Unix", } @Article{Levy:1990:DFS, author = "Eliezer Levy and Abraham Silberschatz", title = "Distributed File Systems: Concepts and Examples", journal = j-COMP-SURV, volume = "22", number = "4", pages = "321--374", month = dec, year = "1990", CODEN = "CMSVAN", ISSN = "0360-0300 (print), 1557-7341 (electronic)", bibdate = "Wed Dec 18 07:42:17 MST 1996", bibsource = "Compendex database; ftp://ftp.ira.uka.de/pub/bibliography/Database/Wiederhold.bib; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org/pubs/toc/Abstracts/0360-0300/98169.html", abstract = "The purpose of a distributed file system (DFS) is to allow users of physically distributed computers to share data and storage resources by using a common file system. A typical configuration for a DFS is a collection of workstations and mainframes connected by a local area network (LAN). A DFS is implemented as part of the operating system of each of the connected computers. This paper establishes a viewpoint that emphasizes the dispersed structure and decentralization of both data and control in the design of such systems. It defines the concepts of transparency, fault tolerance, and scalability and discusses them in the context of DFSs. The paper claims that the principle of distributed operation is fundamental for a fault tolerant and scalable DFS design. It also presents alternatives for the semantics of sharing and methods for providing access to remote files. A survey of contemporary UNIX-based systems, namely, UNIX United, Locus, Sprite, Sun's Network File System, and ITC's Andrew, illustrates the concepts and demonstrates various implementations and design alternatives. Based on the assessment of these systems, the paper makes the point that a departure from the approach of extending centralized file systems over a communication network is necessary to accomplish sound distributed file system design.", acknowledgement = ack-nhfb, affiliation = "Univ of Texas at Austin", affiliationaddress = "Austin, TX, USA", annote = "UNIX United, Locus, Sprite, SNFS, ITC's Andrew, a departure is necessary to accomplish sound distributed file system design; topics: location transparency and independence, naming, caching, stateful vs stateless service, availability, replication, scalability, lightweight processes", classification = "722; 723", keywords = "Computer Operating Systems; design; Distributed; Distributed File Systems; reliability, Computer Systems, Digital; Shared Data; Shared Storage", subject = "{\bf D.4.3}: Software, OPERATING SYSTEMS, File Systems Management, Distributed file systems. {\bf C.2.5}: Computer Systems Organization, COMPUTER-COMMUNICATION NETWORKS, Local Networks. {\bf C.2.4}: Computer Systems Organization, COMPUTER-COMMUNICATION NETWORKS, Distributed Systems, Network operating systems. {\bf D.4.2}: Software, OPERATING SYSTEMS, Storage Management. {\bf D.4.4}: Software, OPERATING SYSTEMS, Communications Management, Network communication.", } @Article{Li:1990:SPA, author = "Xiaobo Li and Yian-Leng Chang", title = "Simulating Parallel Architectures in a Distributed Environment", journal = j-J-PAR-DIST-COMP, volume = "9", number = "2", pages = "218--223", month = jun, year = "1990", CODEN = "JPDCER", ISSN = "0743-7315 (print), 1096-0848 (electronic)", bibdate = "Sat Apr 12 19:06:31 MDT 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliation = "Univ of Alberta", affiliationaddress = "Edmonton, Alberta, Can", classification = "722; 723; C5220 (Computer architecture); C6115 (Programming support)", corpsource = "Dept. of Comput. Sci., Alberta Univ., Edmonton, Alta., Canada", journalabr = "J Parallel Distrib Comput", keywords = "algorithms; Computer Architecture; Computer Operating systems--UNIX; Computer Programming Languages; Computer Programming--Algorithms; Computer Simulation--Applications; Computer Workstations; digital simulation; distributed environment; distributed processing; environment; object labeling algorithm; parallel; Parallel Algorithms; parallel algorithms; Parallel Architectures; parallel architectures; Parallelism Granularity; program verification; SIMD Object Labelling Algorithm; simulation; Software Package spade; software tools; SPADE; tool; verification", treatment = "P Practical", } @Book{Loukides:1990:SPT, author = "Mike Loukides", title = "System Performance Tuning", publisher = pub-ORA, address = pub-ORA:adr, pages = "xix + 313", year = "1990", ISBN = "0-937175-60-9", ISBN-13 = "978-0-937175-60-6", LCCN = "QA76.76.O63 L66 1992", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A fine book for system administrators on how to fine tune your {UNIX} system(s) to do more work.", price = "US\$24.95", acknowledgement = ack-sk, } @Book{Loukides:1990:UFP, author = "Mike Loukides", title = "{UNIX} for {FORTRAN} Programmers", publisher = pub-ORA, address = pub-ORA:adr, pages = "xviii + 244", year = "1990", ISBN = "0-937175-51-X", ISBN-13 = "978-0-937175-51-4", LCCN = "QA76.76.O63 L67 1990", bibdate = "Mon Jan 3 18:26:16 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$24.95", acknowledgement = ack-nhfb, } @Article{Lubkin:1990:PSP, author = "Saul Lubkin", title = "Porting sophisticated programs to your {UNIX} environment for free", journal = j-COMPUTERSHOPPER, pages = "642--644", month = mar, year = "1990", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", } @Article{Luu:1990:CCR, author = "J. Luu", title = "Comments on {`A comparison of RISC architectures'} by {R. S. Piepho} and {W. S. Wu}", journal = j-IEEE-MICRO, volume = "10", number = "2", pages = "5--5", month = apr, year = "1990", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/40.52942", ISSN = "0272-1732 (print), 1937-4143 (electronic)", bibdate = "Sat Apr 5 20:40:53 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classcodes = "C5220 (Computer architecture); C6150J (Operating systems)", keywords = "position-independent code; reduced instruction set computing; relative addressing capability; shareable libraries; software portability; storage allocation; SunOS 4; Unix System 5.4", treatment = "P Practical", } @Article{Markas:1990:DFS, author = "Tassos Markas and Mark Royals and Nick Kanopoulos", title = "On Distributed Fault Simulation", journal = j-COMPUTER, volume = "23", number = "1", pages = "40--52", month = jan, year = "1990", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Tue Feb 04 06:50:23 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Efficient partitioning of fault simulation tasks and allocation of the resulting subtasks over a distributed system yields faster fault simulation without resorting to expensive special-purpose hardware.", acknowledgement = ack-nhfb, affiliation = "Center for Digital Syst. Res., Triangle Inst., Research Triangle Park, NC, USA", classification = "721; 723; B1130B (Computer-aided circuit analysis and design); B1265B (Logic circuits); C5210B (Computer-aided logic design); C6150J (Operating systems); C7410D (Electronic engineering)", journalabr = "Computer", keywords = "Computational aspects; Computer Networks--Local Networks; Computer Simulation; Computer Systems, Digital--Distributed; Computing resources; DFSim; Digital circuits; Distributed fault simulation; Distributed Fault Simulation; Distributed system; Fault Simulation; Heterogeneous local area network; Heterogeneous Local Area Networks; Logic Circuits; Nodes; Partitioning; Subtasks; Testing; Unix operating systems; Workstations", thesaurus = "Circuit analysis computing; Distributed processing; Fault location; Logic CAD", } @Book{Mason:1990:TLT, author = "Tony Mason and Doug Brown", title = "{\tt lex} \& {\tt yacc}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xviii + 216", year = "1990", ISBN = "0-937175-49-8", ISBN-13 = "978-0-937175-49-1", LCCN = "QA76.76.O63 M37 1990", bibdate = "Mon Oct 4 11:56:29 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{McCormack:1990:WFX, author = "Joel McCormack", title = "Writing Fast {X} Servers for Dumb Color Frame Buffers", journal = j-SPE, volume = "20", number = "S2", pages = "83--108", month = oct, year = "1990", CODEN = "SPEXBL", ISSN = "0038-0644 (print), 1097-024X (electronic)", bibdate = "Sat Feb 26 13:26:00 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{McGilton:1990:TTU, author = "Henry McGilton and Mary McNabb", title = "Typesetting Tables on the {UNIX} System", publisher = pub-TRILITHON, address = pub-TRILITHON:adr, pages = "xxii + 282", year = "1990", ISBN = "0-9626289-0-5", ISBN-13 = "978-0-9626289-0-0", LCCN = "Z253.4.U53 M33 1990", bibdate = "Tue Oct 12 18:19:25 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$22.00", acknowledgement = ack-nhfb, } @Book{McGilton:TTU90, author = "Henry McGilton and Mary McNabb", title = "Typesetting Tables on the {UNIX} System", publisher = pub-TRILITHON, address = pub-TRILITHON:adr, pages = "xxii + 282", year = "1990", ISBN = "0-9626289-0-5", ISBN-13 = "978-0-9626289-0-0", LCCN = "Z253.4.U53 M33 1990", bibdate = "Tue Oct 12 18:19:25 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$22.00", acknowledgement = ack-nhfb, } @Book{Mikes:1990:XWS, author = "Steven Mikes", title = "{{X} Window} System Technical Reference", publisher = pub-AW, address = pub-AW:adr, pages = "xiv + 786", year = "1990", ISBN = "0-201-52370-1", ISBN-13 = "978-0-201-52370-6", LCCN = "QA76.76.W56 M55 1990", bibdate = "Mon Oct 4 12:49:53 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Milenkovic:1990:MMM, author = "Milan Milenkovic", title = "Microprocessor Memory Management Units", journal = j-IEEE-MICRO, volume = "10", number = "2", pages = "70--85", month = apr, year = "1990", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/40.52948", ISSN = "0272-1732 (print), 1937-4143 (electronic)", bibdate = "Mon Apr 7 14:39:59 MDT 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This tutorial looks at the way the current crop of CISCs and RISCs handle virtual memory, compares high-end microprocessor MMUs, and discusses Unix requirements and multiprocessing considerations.", acknowledgement = ack-nhfb, affiliation = "IBM Corp, Boca Raton, FL, USA", classcodes = "B1265F (Microprocessors and microcomputers); B1265D (Memory circuits); C5130 (Microprocessor chips); C5320G (Semiconductor storage); C5380 (Other aspects of storage devices and techniques); C5150 (Other circuits for digital computers); C5220 (Computer architecture)", classification = "722; 723", corpsource = "IBM Corp., Boca Raton, FL, USA", journalabr = "IEEE Micro", keywords = "32 bit; 32-bit microprocessors; 68020; 68030; 68040; 68851; 88000; 88200; Address Translation; CISCs; Computer Operating Systems; Computer Systems, Digital--Multiprocessing; Computers, Microcomputer; Data Storage, Digital; i486; i860; MB86920; Memory Management Units; memory management units; microprocessor chips; MIPS R2000; multiple MMU; multiprocessor; R3000; RISCs; Sparc MMU; storage; storage management chips; Unix requirements; Virtual; virtual; virtual memory", treatment = "P Practical", } @Article{Miller:1990:ESR, author = "Barton P. Miller and Lars Fredriksen and Bryan So", title = "An empirical study of the reliability of {UNIX} utilities", journal = j-CACM, volume = "33", number = "12", pages = "32--44", month = dec, year = "1990", CODEN = "CACMA2", ISSN = "0001-0782 (print), 1557-7317 (electronic)", bibdate = "Wed Mar 24 08:33:42 1999", bibsource = "ftp://ftp.ira.uka.de/pub/bibliography/Misc/IMMD_IV.bib; http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "This is a fascinating paper on what happens when random input streams are fed into important UNIX utilities on several commercial UNIX systems. In some cases, the tests were able to crash the entire operating system. In 1995, a (sadly, unpublished) followup study showed that many of the failures diagnosed in 1990 still had not been repaired in the commercial systems, and that the GNU implementations were generally more robust. Both 1990 and 1995 papers, and the fuzz-generating software, are available at the authors' FTP site at \path|ftp://grilled.cs.wisc.edu/technical_papers/fuzz.ps| and \path|ftp://grilled.cs.wisc.edu/technical_papers/fuzz-revisited.ps|.", URL = "ftp://grilled.cs.wisc.edu/technical_papers/fuzz-revisited.ps; ftp://grilled.cs.wisc.edu/technical_papers/fuzz.ps; http://www.acm.org/pubs/toc/Abstracts/0001-0782/96279.html", acknowledgement = ack-nhfb, keywords = "design; reliability; security", subject = "{\bf D.4.5}: Software, OPERATING SYSTEMS, Reliability. {\bf D.4.0}: Software, OPERATING SYSTEMS, General, UNIX. {\bf D.4.9}: Software, OPERATING SYSTEMS, Systems Programs and Utilities. {\bf D.2.5}: Software, SOFTWARE ENGINEERING, Testing and Debugging.", } @Book{Miller:1990:OLA, author = "John David Miller", title = "An {OPEN LOOK} at {UNIX}", publisher = pub-MT, address = pub-MT:adr, pages = "482", year = "1990", ISBN = "1-55851-057-5", ISBN-13 = "978-1-55851-057-9", LCCN = "QA76.76.U84 M55 1990", bibdate = "Mon Oct 4 11:56:33 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Miller:OLU90, author = "John David Miller", title = "An {OPEN LOOK} at {UNIX}", publisher = pub-MT, address = pub-MT:adr, pages = "482", year = "1990", ISBN = "1-55851-057-5", ISBN-13 = "978-1-55851-057-9", LCCN = "QA76.76.U84 M55 1990", bibdate = "Wed Dec 15 10:39:11 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", } @Article{Mullender:1990:ADO, author = "Sape J. Mullender and Guido {van Rossum} and Andrew S. Tanenbaum and Robbert {van Renesse} and Hans {van Staveren}", title = "{Amoeba}: {A} Distributed Operating System for the 1990s", journal = j-COMPUTER, volume = "23", number = "5", pages = "44--53", month = may, year = "1990", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Sat Feb 1 16:21:14 MST 1997", bibsource = "Compendex database; Database/Graefe.bib; Distributed/CCR.bib; Distributed/Dcs-1.0.bib; Distributed/distfs.bib; Distributed/Mach.bib; http://www.math.utah.edu/pub/tex/bib/unix.bib; Misc/IMMD_IV.bib; Misc/Mach.bib; Object/Ooos.bib", abstract = "Amoeba is the distributed system developed at the Free University (VU) and the Centre for Mathematics and Computer Science (CWI), both in Amsterdam. Throughout the project's ten-year history, a major concern of the designers has been to combine the research themes of distributed systems, such as high availability, use of parallelism and scalability, with simplicity and high performance. Distributed systems are necessarily more complicated than centralized systems, so they have a tendency to be much slower. Amoeba was always designed to be used, so it was deemed essential to achieve extremely high performance. The Amoeba software is based on objects. An objects is a piece of data on which well-defined operations may be performed by authorized users, independent of where the user and object are located. Objects are managed by server processes and named using capabilities chosen randomly from a sparse name space. Processes consist of a segmented address space shared by one or more threads of control. Processes can be created, managed, and debugged remotely. Operations on objects are implemented using remote procedure calls. Amoeba has a unique and fast file system. The file system is split into two parts --- the Bullet Service, which stores immutable files contiguously on the disk and the SOAP Directory Service, which provides a mechanism for giving capabilities symbolic names. The directory server also handles replication and atomicity, eliminating the need for a separate transaction management system.", acknowledgement = ack-nhfb, affiliation = "Centre for Math. and Comput. Sci., Amsterdam, Netherlands", classification = "723; C5620 (Computer networks and techniques); C6150J (Operating systems)", journalabr = "Computer", keywords = "Amoeba Distributed Operating System; Atomicity; Bullet service; Capabilities; Centralized system; Computer Operating Systems; Computer Systems, Digital--Distributed; Directory service; Distributed Operating Systems; Distributed Systems, van Rossum, Renesse, Staveren, Amoeba distributed operating system; Fault tolerance; File system; Flexibility; Immutable files; Library; Objects; Replication; Security; Server processes; Sparse name space; Speed; Symbolic names; Unix emulation; Unix Emulation Facility; Unix system call routines", thesaurus = "Network operating systems; Unix", } @Article{Naecker:1990:PP, author = "Philip A. Naecker", title = "{POSIX} and Portability", journal = j-DEC-PROFESSIONAL, volume = "9", number = "6", pages = "46--??", month = jun, year = "1990", ISSN = "0744-9216", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "POSIX promotes portability of application programs across open systems environments. Although POSIX standards are written primarily with UNIX in mind, little limits them to UNIX or its derivatives. If POSIX is successful, many software products soon will run on many more platforms, and software developers will spend less time on porting and more on new development. You're likely to see more of the entire POSIX family of standards in the future.", acknowledgement = ack-nhfb, } @Article{Nelson:1990:TCP, author = "Phyllis Nelson", title = "{{\em C Programming In A UNIX Environment}}, by {Judy Kay and Bob Kummerfeld}", journal = j-CUJ, volume = "8", type = "Book review", number = "8", pages = "119--??", month = aug, year = "1990", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "See \cite{Kay:1989:CPU}.", acknowledgement = ack-nhfb, } @Manual{NIST:1990:XWS, author = "{National Institute of Standards and Technology (U. S.)}", title = "{X Window System}: version 11, release 3", volume = "158", publisher = pub-NIST, address = pub-NIST:adr, pages = "various", year = "1990", LCCN = "JK468.A8 A31 no.158", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Shipping list no.: 90-0657-P. Contents: X Window System protocol / Robert W. Scheifler -- Xlib-C language X interface / James Gettys, Robert W. Scheifler, Ron Newman -- X toolkit intrinsics-C language interface / Joel McCormack, Paul Asente, Ralph R. Swick -- Bitmap distribution format 2.1.", series = "FIPS PUB", acknowledgement = ack-nhfb, keywords = "C (computer program language) -- handbooks, manuals, etc; X Window System (computer system) -- handbooks, manuals, etc", } @Book{Nye:1990:XPM, author = "Adrian Nye", title = "{Xlib} Programming Manual: for Version 11 of the {X Window System}", volume = "1", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xxxi + 635", month = jul, year = "1990", ISBN = "0-937175-11-0", ISBN-13 = "978-0-937175-11-8", LCCN = "QA76.76.W56 N93 1990", bibdate = "Tue Sep 13 11:59:48 MDT 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Nye:1990:XPR, author = "Adrian Nye", title = "{X} Protocol Reference Manual", volume = "0", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", year = "1990", ISBN = "0-937175-50-1", ISBN-13 = "978-0-937175-50-7", LCCN = "QA76.76.W56 X215 1990", bibdate = "Fri Dec 10 13:42:12 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Nye:1990:XRM, author = "Adrian Nye", title = "{Xlib} Reference Manual: for Version 11 of the {X Window System}", volume = "1", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xxiii + 765", month = jul, year = "1990", ISBN = "0-937175-12-9", ISBN-13 = "978-0-937175-12-5", LCCN = "QA76.76.W56 X52 1990", bibdate = "Tue Sep 13 11:59:48 MDT 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Nye:1990:XTIa, author = "Adrian Nye and Tim O'Reilly", title = "{X} Toolkit Intrinsics Programming Manual", volume = "4", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxxi + 543", year = "1990", ISBN = "0-937175-34-X", ISBN-13 = "978-0-937175-34-7", bibdate = "Thu Dec 16 09:46:22 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Nye:1990:XTIb, author = "Adrian Nye and Tim O'Reilly", title = "{X} Toolkit Intrinsics Reference Manual: {OSF}\slash {Motif} 1.1 Edition for {X11}, Release 4", volume = "4", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xxxi + 632", month = dec, year = "1990", ISBN = "0-937175-62-5 (vol. 4), 0-937175-66-8 (set)", ISBN-13 = "978-0-937175-62-0 (vol. 4), 978-0-937175-66-8 (set)", LCCN = "QA76.9.W56N94 1990", bibdate = "Mon Nov 20 10:48:16 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{OReilly:1990:BUN, author = "Tim O'Reilly", title = "{Das BSD-Unix-Nutshell-Buch}. ({German}) [{The} {BSD UNIX} Nutshell Book]", publisher = pub-AW, address = pub-AW:adr, pages = "xii + 318", year = "1990", ISBN = "3-89319-219-0", ISBN-13 = "978-3-89319-219-9", LCCN = "????", bibdate = "Tue Sep 17 06:48:29 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, language = "German", } @Book{OReilly:1990:XTI, author = "Tim O'Reilly", title = "{X} Toolkit Intrinsics Reference Manual", volume = "5", publisher = pub-ORA, address = pub-ORA:adr, pages = "xii + 543", year = "1990", ISBN = "0-937175-35-8", ISBN-13 = "978-0-937175-35-4", LCCN = "QA76.76.W56 D44 v.5 1990", bibdate = "Mon Oct 4 11:57:04 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Pugh:1990:LUF, author = "Kenneth Pugh", title = "Locking {UNIX} Files", journal = j-CUJ, volume = "8", type = "Questions and Answers", number = "9", pages = "109--??", month = sep, year = "1990", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Pugh:1990:RMF, author = "Kenneth Pugh", title = "Reading {MS-DOS} Files Into a {UNIX} System", journal = j-CUJ, volume = "8", type = "Questions and Answers", number = "6", pages = "75--??", month = jun, year = "1990", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Pugh:1990:TMP, author = "Kenneth Pugh", title = "{\tt malloc()} Problems Under {UNIX} Disappear on {PC}", journal = j-CUJ, volume = "8", type = "Questions and Answers", number = "2", pages = "69--??", month = feb, year = "1990", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Quercia:1990:XWS, author = "Valerie Quercia and Tim O'Reilly", title = "{X Window System} User's Guide", volume = "3", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "xxvi + 723", year = "1990", ISBN = "0-937175-14-5", ISBN-13 = "978-0-937175-14-9", LCCN = "QA76.76.W56 Q83 1990", bibdate = "Tue Sep 28 07:57:27 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Rabinowitz:1990:PC, author = "Henry Rabinowitz and Chaim Schaap", title = "Portable {C}", publisher = pub-PH, address = pub-PH:adr, pages = "xi + 269", year = "1990", ISBN = "0-13-685967-4", ISBN-13 = "978-0-13-685967-3", LCCN = "QA76.73 C15 R33 1990", bibdate = "Mon Oct 4 15:16:47 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @InProceedings{Richardson:1990:LCL, author = "C. Richardson", title = "{LispWorks}: {A} {Common Lisp} Programming Environment for {Unix} Workstations", crossref = "Steels:1990:EEC", pages = "127--134", year = "1990", bibdate = "Wed Aug 6 19:05:25 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Rodgers:1990:UDM, author = "Ulka Rodgers", title = "{UNIX} Database Management Systems", publisher = pub-YOURDON, address = pub-YOURDON:adr, pages = "xiv + 338", year = "1990", ISBN = "0-13-945593-0", ISBN-13 = "978-0-13-945593-3", LCCN = "QA76.9.D3 R65 1990", bibdate = "Mon Oct 4 11:57:34 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Rodgers:UDM90, author = "Ulka Rodgers", title = "{UNIX} Database Management Systems", publisher = pub-YOURDON, address = pub-YOURDON:adr, pages = "xiv + 338", year = "1990", ISBN = "0-13-945593-0", ISBN-13 = "978-0-13-945593-3", LCCN = "QA76.9.D3 R65 1990", bibdate = "Wed Dec 15 10:41:20 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", } @Book{Rosen:1990:USV, author = "Kenneth Rosen and Richard Rosinski and James Farber", title = "{UNIX} System {V} Release 4: An Introduction for New and Experienced Users", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xlix + 1211", year = "1990", ISBN = "0-07-881552-5", ISBN-13 = "978-0-07-881552-2", LCCN = "QA76.76.O63 R68 1990", bibdate = "Wed Sep 29 13:13:22 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A very comprehensive text targeted to novice users.", acknowledgement = ack-sk, } @Book{Rost:1990:XMQ, author = "Randi J. Rost", title = "{X} and {Motif}\emdash Quick Reference Guide", publisher = pub-DP, address = pub-DP:adr, pages = "369", year = "1990", ISBN = "1-55558-052-1", ISBN-13 = "978-1-55558-052-0", LCCN = "QA76.76.W56 R67 1990", bibdate = "Mon Oct 4 13:39:18 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Satyanarayanan:1990:SSH, author = "Mahadev Satyanarayanan", title = "Scalable, Secure, and Highly Available Distributed File Access", journal = j-COMPUTER, volume = "23", number = "5", pages = "9--18, 20--21", month = may, year = "1990", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Sat Feb 1 16:21:14 MST 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Andrew and Coda are distributed Unix file systems that embody many of the recent advances in solving the problem of data sharing in large, physically dispersed workstation environments.", acknowledgement = ack-nhfb, affiliation = "Carnegie Mellon Univ., Pittsburgh, PA, USA", classification = "723; C6150J (Operating systems)", journalabr = "Computer", keywords = "Andrew; Andrew File System; Coda; Coda File System; Computer Operating Systems; Computer Systems, Digital--Distributed; Data Processing; Data sharing; Distributed file access; Distributed File Systems; Distributed Unix file systems; File Organization; Physically dispersed workstation environments; Scalability; Security; Unix File Systems", thesaurus = "Distributed processing; Unix", } @Article{Scheifler:1990:XWSa, author = "Robert W. Scheifler and James Gettys", title = "The {X Window System}", journal = j-SPE, volume = "20", number = "S2", pages = "5--34", month = oct, year = "1990", CODEN = "SPEXBL", ISSN = "0038-0644 (print), 1097-024X (electronic)", bibdate = "Sat Feb 26 13:18:49 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Scheifler:1990:XWSb, author = "Robert W. Scheifler and James Gettys and Jim Flowers and David Rosenthal", title = "{X Window System}: The Complete Reference to {Xlib}, {X} Protocol, {ICCCCM}, {XLFD}", publisher = pub-DP, address = pub-DP:adr, edition = "Second", pages = "xxiv + 851", year = "1990", ISBN = "1-55558-050-5", ISBN-13 = "978-1-55558-050-6", LCCN = "QA76.76.W56 S34 1990", bibdate = "Fri Dec 10 13:51:34 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$44.95", acknowledgement = ack-nhfb, } @Book{Schreiner:1990:UCC, author = "Axel T. Schreiner", title = "Using {C} with curses, lex, and yacc: building a window shell for {UNIX System V}", publisher = pub-PH, address = pub-PH:adr, pages = "ix + 257", year = "1990", ISBN = "0-13-932864-5", ISBN-13 = "978-0-13-932864-0", LCCN = "QA76.76.O63 S39 1990", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Translation of original German edition: {C-Praxis mit curses, lex und yacc}.", price = "US\$44.95", acknowledgement = ack-nhfb, keywords = "C (computer program language); UNIX System V (computer file)", } @Book{Stevens:1990:UNP, author = "W. Richard Stevens", title = "{UNIX} Network Programming", publisher = pub-PH, address = pub-PH:adr, pages = "xi + 772", year = "1990", ISBN = "0-13-949876-1", ISBN-13 = "978-0-13-949876-3", LCCN = "QA76.76.O63 S755 1990", bibdate = "Mon Oct 4 11:58:01 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Stoll:1990:CET, author = "Cliff Stoll", title = "The Cuckoo's Egg\emdash Tracking a Spy through the Maze of Computer Espionage", publisher = pub-POCKET, address = pub-POCKET:adr, pages = "vi + 356", year = "1990", ISBN = "0-671-72688-9", ISBN-13 = "978-0-671-72688-1", LCCN = "UB 271 R92 H477 1990", bibdate = "Wed Jun 29 21:49:09 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A fascinating real story on computer espionage \ldots{}. A good alternative to this is \cite{Hafner:1991:COH}. Another non-fiction on computer security is \cite{Sterling:1992:HC}.", acknowledgement = ack-sk, } @Book{Topham:1990:PU, author = "Douglas Topham", title = "Portable {UNIX}", publisher = pub-WILEY-INTERSCIENCE, address = pub-WILEY-INTERSCIENCE:adr, pages = "xiii + 274", year = "1990", ISBN = "0-471-57926-2", ISBN-13 = "978-0-471-57926-7", LCCN = "QA76.76.O63 T666 1992", bibdate = "Wed Sep 29 13:19:34 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A pretty good task-oriented quick reference.", acknowledgement = ack-sk, } @Book{Topham:1990:SVG, author = "Douglas W. Topham", title = "A {System V} Guide to {Unix} and {Xenix}", publisher = pub-SV, address = pub-SV:adr, pages = "xxii + 733", year = "1990", ISBN = "0-387-97021-5", ISBN-13 = "978-0-387-97021-9", LCCN = "QA76.76.O63 T667 1990", bibdate = "Tue Jun 06 17:35:15 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$50.00", acknowledgement = ack-nhfb, } @Article{Tucker:1990:PPV, author = "Michael Jay Tucker", title = "Paradoxically {Posix}: Vendors catering to the federal market are eyeing {Posix} as the key to winning future contracts", journal = j-UNIX-WORLD, volume = "7", number = "3", pages = "85--??", day = "1", month = mar, year = "1990", ISSN = "0739-5922", bibdate = "Sat May 25 15:28:26 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", acknowledgement = ack-nhfb, } @Book{Waite:1990:WGN, author = "Mitchell Waite and Stephen Prata", title = "The Waite Group's New Primer {C} Plus", publisher = pub-HWS, address = pub-HWS:adr, pages = "xxiv + 731", year = "1990", ISBN = "0-672-22687-1", ISBN-13 = "978-0-672-22687-8", LCCN = "QA76.73.C15 W35 1990", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A really good introduction to C for beginners.", acknowledgement = ack-sk, } @Article{Wang:1990:UA, author = "Y. E. Gail Wang", title = "{UNIVERSAL\_FILE\_NAMES} For {Ada}", journal = j-SIGADA-LETTERS, volume = "10", number = "1", pages = "111--117", month = jan # "\slash " # feb, year = "1990", CODEN = "AALEE5", ISSN = "0736-721X", bibdate = "Thu Sep 28 07:33:23 MDT 2000", bibsource = "ftp://ftp.uu.net/library/bibliography; http://www.adahome.com/Resources/Bibliography/articles.ref; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classcodes = "C6150J (Operating systems); C6110 (Systems analysis and programming); C6150E (General utility programs)", keywords = "Ada; file name portability; MS-DOS; operating systems (computers); portability, operating system, files, Unix, VAX/VMS, MS-DOS; programs; software portability; UNIVERSAL FILE NAMES; Unix; utility; VMS", treatment = "P Practical", } @Article{Ward:1990:SUB, author = "Robert L. Ward", title = "Some {UNIX} Book Recommendations", journal = j-CUJ, volume = "8", type = "{Editor}'s note", number = "7", pages = "138--??", month = jul, year = "1990", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Weinstein:1990:CB, author = "Sydney S. Weinstein", title = "\path|comp.sources.unix| Is Back!", journal = j-CUJ, volume = "8", type = "On the Networks", number = "8", pages = "133--??", month = aug, year = "1990", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Widener:1990:XIC, author = "G. Widener", title = "The {X11 Inter-Client Communication Conventions Manual}", journal = j-SPE, volume = "20", number = "S2", pages = "109--118", month = oct, year = "1990", CODEN = "SPEXBL", ISSN = "0038-0644 (print), 1097-024X (electronic)", bibdate = "Sat Feb 26 13:27:39 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Wright:1990:IXW, author = "Rusty C. Wright", title = "An introduction to the {X Window System}", publisher = "University of California", address = "Berkeley, CA, USA", pages = "vii + 68", day = "12", month = apr, year = "1990", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Young:1990:OMR, author = "Douglas A. Young", title = "{OSF\slash Motif} Reference Guide", publisher = pub-PH, address = pub-PH:adr, pages = "155", year = "1990", ISBN = "0-13-642786-3", ISBN-13 = "978-0-13-642786-5", LCCN = "QA76.76.W56 Y679 1990", bibdate = "Mon Oct 4 14:33:32 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Young:1990:XWS, author = "Douglas A. Young", title = "{X Window Systems}\emdash Pro\-gram\-ming and Applications with {Xt\emdash OSF\slash Motif} Edition", publisher = pub-PH, address = pub-PH:adr, pages = "x + 533", year = "1990", ISBN = "0-13-497074-8", ISBN-13 = "978-0-13-497074-5", LCCN = "QA76.76.W56 Y67 1990", bibdate = "Mon Oct 4 11:58:31 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Aguirre:1991:EMD, author = "G. Aguirre and M. Errecalde and R. Guerrero and C. Kavka and G. Leguizamon and M. Printista and R. Gallard", title = "Experiencing {Minix} as a didactical aid for operating systems courses", journal = j-OPER-SYS-REV, volume = "25", number = "3", pages = "32--39", month = jul, year = "1991", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:48 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Amagai:1991:DLP, author = "Yoshiji Amagai", title = "Distributed {Lisp} programming workbench", journal = j-NTT-R-D, volume = "40", number = "5", pages = "679--686", year = "1991", CODEN = "NTTDEC", ISSN = "0915-2326", bibdate = "Tue Sep 28 07:51:05 MDT 1999", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliation = "NTT Software Lab", classification = "723", journalabr = "NTT R\&D", keywords = "Common Lisp; Computer Operating Systems --- UNIX; Computer Programming; Computer Programming Languages; Computer Software --- Software Engineering; Distributed Software; Lisp Systems; Programming Workbench", } @Book{Anderson:1991:WGU, author = "Bart Anderson and Barry Costales and Harry Henderson", title = "The Waite Group's {UNIX} Communications", publisher = pub-HWS, address = pub-HWS:adr, edition = "Second", pages = "xxiv + 736", year = "1991", ISBN = "0-672-22773-8", ISBN-13 = "978-0-672-22773-8", LCCN = "QA76.76.O63 A5 1991", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "{\em Highly recommended}. A really excellent book on {\tt elm}, {\tt rn} and {\tt nn}.", acknowledgement = ack-sk, } @Article{Anonymous:1991:DNO, author = "Anonymous", title = "{Digital} Nudges Open The Doors To {VMS}", journal = j-DATAMATION, volume = "37", number = "2", pages = "83--??", month = jan, year = "1991", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Digital's ULTRIX didn't satisfy users hungry for application portability and commercial power. So Digital is adding POSIX and XPG3 to VMS in order to cook up a robust solution.", acknowledgement = ack-nhfb, } @Article{Anonymous:1991:HAM, author = "Anonymous", title = "{HP} airs {MPE} with {POSIX} compatibility", journal = j-NETWORK-WORLD, volume = "8", number = "48", pages = "27--29", month = dec, year = "1991", ISSN = "0887-7661", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Barkakati:1991:UDG, author = "Nabajyoti Barkakati", title = "{UNIX} Desktop Guide to {X\slash Motif}", publisher = pub-HAYDEN, address = pub-HAYDEN:adr, pages = "xviii + 406", year = "1991", ISBN = "0-672-22836-X", ISBN-13 = "978-0-672-22836-0", LCCN = "QA76.76.W56 B357 1991", bibdate = "Mon Oct 4 14:17:03 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$27.95", acknowledgement = ack-nhfb, } @Book{Barkakati:1991:XWS, author = "Nabajyoti Barkakati", title = "{X Window System} Programming", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xxxii + 750", year = "1991", ISBN = "0-672-22750-9", ISBN-13 = "978-0-672-22750-9", LCCN = "QA76.76.W56 B36 1991", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95, CDN\$38.95", acknowledgement = ack-nhfb, keywords = "X Window System (computer system)", } @Article{Becker:1991:APB, author = "Jeffrey C. Becker and Arvin Park", title = "Analysis of the paging behavior of {UNIX}", journal = j-SIGMETRICS, volume = "19", number = "2", pages = "36--43", month = aug, year = "1991", CODEN = "????", DOI = "http://doi.acm.org/10.1145/122564.122568", ISSN = "0163-5999 (print), 1557-9484 (electronic)", ISSN-L = "0163-5999", bibdate = "Thu Jun 26 11:12:18 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "We analyze the paging behavior of several different versions of UNIX by recording traces of paging activity over time and writing programs to analyze the traces. We recorded periodic totals of paging events instead of individual paging events themselves. Our analysis shows that paging activity accounts for between 15\% and 21\% of all disk block accesses. Average paging system traffic is very low. The paging system is idle most of the time and paging activity occurs in large periodic bursts. Despite the fact that it is often overlooked, swap related paging accounts for a significant portion of all paging activity (between 24\% and 71\%). Furthermore, the behavior of swap-related paging differs greatly from the well-studied behavior of demand paging. The ratio of pages read to pages written (which varies between 0.85 and 1.9) is lower than typical read to write ratios for file system accesses. Paging activity is loosely correlated with load average or number of users.", acknowledgement = ack-nhfb, } @Book{Becker:1991:SAG, author = "George Becker and Kathy Slattery", title = "A Systems Administrator's Guide to {Sun} Workstations", publisher = pub-SV, address = pub-SV:adr, pages = "xiii + 288", year = "1991", ISBN = "0-387-97250-1 (New York), 3-540-97250-1 (Berlin)", ISBN-13 = "978-0-387-97250-3 (New York), 978-3-540-97250-1 (Berlin)", LCCN = "QA76.525 .B43 1991", bibdate = "Tue Jun 06 17:33:08 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$44.00", acknowledgement = ack-nhfb, } @Book{Berlage:1991:OMC, author = "Thomas Berlage", title = "{OSF\slash Motif}\emdash Concepts and Programming", publisher = pub-AW, address = pub-AW:adr, pages = "xiv + 487", year = "1991", ISBN = "0-201-55792-4", ISBN-13 = "978-0-201-55792-3", LCCN = "QA76.76.W56 B4613 1991", bibdate = "Mon Oct 4 14:31:13 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Brinsmead:1991:CLP, author = "Mark Brinsmead and Ken Gamble and Michael Pazzani and Glenn Silverstein", title = "{Common LISP} Product Roundup", journal = j-AI-EXPERT, volume = "6", number = "6", pages = "48--??", month = jun, year = "1991", ISSN = "0888-3785", bibdate = "Wed Aug 6 18:51:34 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This month we've reviewed and benchmarked five powerful Common LISP systems. For UNIX, there's Allegro Common LISP, Sun Common LISP, and Ibuki Common LISP. For the Mac, we've examined Macintosh Common LISP and Procyon Common LISP.", acknowledgement = ack-nhfb, } @Article{Bunker:1991:DNO, author = "Ted Bunker", title = "{Digital} Nudges Open the Doors to {VMS}", journal = j-DATAMATION, volume = "37", number = "2", pages = "83--??", day = "15", month = jan, year = "1991", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat May 25 15:28:26 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", abstract = "Digital's ULTRIX didn't satisfy users hungry for application portability and commercial power. So Digital is adding POSIX and XPG3 to VMS in order to cook up a robust solution.", acknowledgement = ack-nhfb, } @Book{Cameron:1991:LGE, author = "Debra Cameron and Bill Rosenblatt", title = "Learning {GNU} Emacs", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxvii + 411", year = "1991", ISBN = "0-937175-84-6", ISBN-13 = "978-0-937175-84-2", LCCN = "QA76.76.T49 C35 1991", bibdate = "Mon Oct 4 11:54:25 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$27.95", acknowledgement = ack-nhfb, } @Book{Catanzaro:1991:STP, editor = "Ben J. Catanzaro", title = "The {SPARC} Technical Papers", publisher = pub-SV, address = pub-SV:adr, pages = "xvi + 501", year = "1991", ISBN = "0-387-97634-5 (New York), 3-540-97634-5 (Berlin)", ISBN-13 = "978-0-387-97634-1 (New York), 978-3-540-97634-9 (Berlin)", LCCN = "QA76.9.A73 S65 1991", bibdate = "Tue Jun 06 17:34:04 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$43.00", acknowledgement = ack-nhfb, } @Book{Comer:1991:ITIa, author = "Douglas Comer and David Stevens", title = "Internetworking with {TCP\slash IP}: Principles, Protocols and Architecture", publisher = pub-PH, address = pub-PH:adr, year = "1991", ISBN = "0-13-468505-9", ISBN-13 = "978-0-13-468505-2", LCCN = "TK5105.5 .C59 1991", bibdate = "Wed Jun 29 20:48:56 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-sk, } @Book{Comer:1991:ITIb, author = "Douglas Comer and David Stevens", title = "Internetworking with {TCP\slash IP}: Design, Implementation and Internals", publisher = pub-PH, address = pub-PH:adr, year = "1991", ISBN = "0-13-472242-6", ISBN-13 = "978-0-13-472242-9", LCCN = "TK5105.5 .C59 1991", bibdate = "Wed Jun 29 20:48:56 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-sk, } @Book{Comer:1991:ITIc, author = "Douglas Comer and David Stevens", title = "Internetworking with {TCP\slash IP}: Client-Server Computing", publisher = pub-PH, address = pub-PH:adr, year = "1991", ISBN = "0-13-474222-2", ISBN-13 = "978-0-13-474222-9", LCCN = "TK5105.5 .C59 1991", bibdate = "Wed Jun 29 20:48:56 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-sk, } @Article{Dannenberg:1991:FFL, author = "Roger B. Dannenberg and Christopher Lee Fraley and Peter Velikonja", title = "{Fugue}: {A} Functional Language for Sound Synthesis", journal = j-COMPUTER, volume = "24", number = "7", pages = "36--42", month = jul, year = "1991", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Tue Feb 04 06:58:18 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib; Misc/IMMD_IV.bib", abstract = "Fugue provides functions to create and manipulate sounds as abstract, immutable objects. The interactive language supports behavioral abstraction, so composers can manage complex musical structures.", acknowledgement = ack-nhfb, affiliation = "Sch. of Comput. Sci., Carnegie Mellon Univ., Pittsburgh, PA, USA", classification = "715; 723; 752; C6140D (High level languages); C7820 (Humanities)", journalabr = "Computer", keywords = "Behavioral abstraction; Behavioral Abstraction; C; Complex musical structures; Computer Programming Languages; Fugue; Functional language; Functional Language Fugue; Interactive language; Lazy evaluation; Lazy Evaluation; Musical Instruments, Electronic; Musical scores; Signal processing algorithms; Sound synthesis; Sound Synthesis; Unix workstations; XLisp", thesaurus = "Acoustic signal processing; Functional programming; High level languages; Music", } @Book{Dougherty:1991:SA, author = "Dale Dougherty", title = "sed {\&} awk", publisher = pub-ORA, address = pub-ORA:adr, pages = "xvii + 394", year = "1991", ISBN = "0-937175-59-5", ISBN-13 = "978-0-937175-59-0", LCCN = "QA76.76.O63 D6 1991", bibdate = "Mon Oct 4 11:54:47 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$27.95", acknowledgement = ack-nhfb, } @Book{Dougherty:1991:SAO, author = "Dale Dougherty and Toshihiro Fukuzaki", title = "Sedo ando oku puroguramingu: {UNIX} power tools ({Japanese}) [{sed} and {awk} programming: {UNIX} power tools", publisher = "Asuki", address = "Tokyo, Japan", pages = "508", year = "1991", ISBN = "4-7561-0091-0", ISBN-13 = "978-4-7561-0091-7", LCCN = "????", bibdate = "Fri Jul 01 14:43:24 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Dunphy:1991:UIE, author = "Ed Dunphy", title = "The {UNIX} Industry\emdash Evolution, Concepts, Architecture, Applications, and Standards", publisher = pub-QED, address = pub-QED:adr, pages = "xxii + 338", year = "1991", ISBN = "0-89435-390-X", ISBN-13 = "978-0-89435-390-1", LCCN = "QA76.76.O63 D8598 1991", bibdate = "Wed Sep 29 13:21:38 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Covering UNIX technology and the structure of the UNIX marketplace.", acknowledgement = ack-sk, } @Book{Dunphy:1991:UIO, author = "Ed Dunphy", title = "The {UNIX} Industry and Open Systems in Transition: {A} Guidebook for Managing Change", publisher = pub-WILEY-INTERSCIENCE, address = pub-WILEY-INTERSCIENCE:adr, edition = "Second", pages = "xxx + 616", year = "1991", ISBN = "0-471-60608-1", ISBN-13 = "978-0-471-60608-6", LCCN = "QA76.76.O63 D8599 1994", bibdate = "Wed Jun 29 20:37:59 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Covering UNIX technology and the structure of the UNIX marketplace.", acknowledgement = ack-sk, } @InProceedings{Eck:1991:SRS, author = "Christoph Eck", title = "Standardization of realtime software {POSIX} 1003.4", crossref = "IEEE:1991:RTS", pages = "149--152", year = "1991", bibdate = "Fri May 24 09:57:50 MDT 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "IEEE catalog number 92TH0404-4.", abstract = "The acronym POSIX is known as the label for the most widely accepted standard, or more precisely group of standards, in the traditional UNIX environment. The POSIX 1003.4 Working Group has been preparing the document ``Realtime Extension for Portable Operating Systems'' for several years. This paper describes the results of the effort to create a standard operating system interface for portable realtime application software as they present themselves after the last two POSIX meetings of January and April 1991. Realtime POSIX addresses the full extent of realtime systems, from full scale UNIX down to small embedded kernels with the highest demands on hard realtime performance. After an introduction into realtime software standardization and the POSIX.4 group a short report is given on all draft standards produced by this group so far.", acknowledgement = ack-nhfb, affiliation = "CERN", affiliationaddress = "Geneva, Switz", classification = "722.4; 723; 723.5; 902.2", conference = "IEEE Seventh Conference Real Time '91 on Computer Applications in Nuclear, Particle and Plasma Physics", conferenceyear = "1992", keywords = "Computer operating systems; Computer software; Computer software portability; Interfaces (computer); Portable operating system interface (POSIX); Real time systems; Standardization; UNIX", meetingabr = "IEEE Seventh Conf Real Time 91 Computer Appl Nucl Part Plasma Phys", meetingaddress = "Juelich, Ger", meetingdate = "Jun 24--28 1991", meetingdate2 = "06/24--28/91", publisherinfo = "IEEE Service Center", sponsor = "IEEE Nuclear \& Plasma Physics Soc", } @Book{Fiedler:1991:USV, author = "David Fiedler and Bruce Hunter and Ben Smith", title = "{UNIX System V Release V} Administration", publisher = pub-HAYDEN, address = pub-HAYDEN:adr, edition = "Second", pages = "436", year = "1991", ISBN = "0-672-22810-6", ISBN-13 = "978-0-672-22810-0", LCCN = "QA76.76.O63 F54 1991", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "{\em Highly recommended}. A must for any intermediate\slash advanced users of {UNIX}.", price = "US\$29.95", acknowledgement = ack-sk, } @Book{Finseth:1991:CTE, author = "Craig A. Finseth", title = "The Craft of Text Editing\emdash Emacs for the Modern World", publisher = pub-SV, address = pub-SV:adr, pages = "xii + 220", year = "1991", ISBN = "0-387-97616-7, 3-540-97616-7", ISBN-13 = "978-0-387-97616-7, 978-3-540-97616-5", LCCN = "QA76.76.T49 F56 1991", bibdate = "Mon Oct 4 11:54:52 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Contains extensive discussion of design issues for text editors, with examples from Emacs. Appendix B gives sources of numerous Emacs implementations. Appendix D summarizes the TECO command set.", acknowledgement = ack-nhfb, } @Book{Flanagan:1991:PSR, author = "David Flanagan", title = "Programmer's Supplement for Release 5 of the {X Window System}, Version 11", publisher = pub-ORA, address = pub-ORA:adr, pages = "xx + 367", year = "1991", ISBN = "0-937175-86-2", ISBN-13 = "978-0-937175-86-6", LCCN = "QA76.76.W56 F5 1991", bibdate = "Tue Dec 14 22:48:47 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/master.bib; http://www.math.utah.edu/pub/tex/bib/unix.bib", } @Book{Frisch:1991:ESA, author = "{\AE}leen Frisch", title = "Essential System Administration", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxiii + 440", year = "1991", ISBN = "0-937175-80-3", ISBN-13 = "978-0-937175-80-4", LCCN = "QA76.76.O63 F78 1992", bibdate = "Mon Oct 4 11:54:59 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @Article{Furht:1991:RSH, author = "B. Furht and D. Gluch and J. Parker and P. Matthews and D. Joseph", title = "{Real\slash star 2000}. {A} high performance multiprocessor computer for telemetry applications", journal = j-INT-TELEMETERING-CONFERENCE, volume = "27", pages = "365--373 (of 932)", year = "1991", CODEN = "ITCOD6", ISBN = "1-55617-329-6", ISBN-13 = "978-1-55617-329-5", ISSN = "0884-5123", LCCN = "TK 399 I61p 1991", bibdate = "Fri May 24 09:57:50 MDT 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "In this paper we describe the design of the REAL\slash STAR 2000 system, a high-performance real-time computer for telemetry applications. The REAL\slash STAR 2000 is a symmetric, tightly-coupled multiprocessor, optimized for real-time processing. The system provides a high level of scalability and flexibility by supporting three configurations: single, dual, and quad processor configurations, based on Motorola 88100 RISC processors. The system runs the multiprocessor REAL\slash IX operating system, a real-time implementation of the AT\&T UNIX System V. It compiles with BCS and OCS standards, meets the POSIX 1003.1 standard, and has the current functionality of the emerging POSIX 1003.4 real-time standard. The REAL\slash STAR 2000 promotes an open system approach to real-time computing by supporting major industry standards. Benchmark results are also presented in the paper.", acknowledgement = ack-nhfb, affiliation = "Modular Computer Systems, Inc", affiliationaddress = "Fort Lauderdale, FL, USA", classification = "718; 722; 723", conference = "27th International Telemetric Conference --- ITC\slash USA '91", conferenceyear = "1991", journalabr = "Int Telem Conf Proc", keywords = "Computer Applications; Computer Architecture--Reduced Instruction Set Computing; Computer Operating Systems; Computer Systems, Digital--Multiprocessing; High Performance Multiprocessor Computer; POSIX 1003.1 Standard; Real-Time Processing; REAL/IX Operating System; Real/Star 2000; Single/Dual/Quad Processor; Telemetering Systems", meetingaddress = "Las Vegas, NV, USA", meetingdate = "Nov 4--7 1991", meetingdate2 = "11/04--07/91", sponsor = "Int Foundation for Telemetering", } @Article{Gallmeister:1991:EEP, author = "Bill O. Gallmeister and Chris Lanier", title = "Early experience with {POSIX} 1003.4 and {POSIX} 1003.4 {A}", journal = j-PROC-REAL-TIME-SYS-SYMP, pages = "190--198 (of ix + 307)", year = "1991", CODEN = "PRSYEA", ISBN = "0-8186-2450-7", ISBN-13 = "978-0-8186-2450-6", LCCN = "QA 76.54 R43 1991", bibdate = "Mon Dec 22 09:06:02 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "IEEE catalog number 91CH3090-8.", abstract = "Two proposed IEEE standards for real-time operating systems support, POSIX.4 and POSIX.4a, are proceeding towards IEEE approval and will eventually become international standards. The authors provide a brief overview of the facilities of POSIX.4 and POSIX.4a. They concentrate on a few of the critical features that POSIX.4 and POSIX.4a provide and describe the POSIX.4 scheduling interface. The POSIX.4a support for multiple threads of control is also described. The features found in POSIX.4 and POSIX.4a for synchronization of multiple threads, are discussed, and the POSIX.4 interprocess communication facility is presented. The performance numbers are given to allow comparisons of the facilities of traditional UNIX systems, the facilities of a representative hard real-time system (LynxOS), and the facilities of POSIX.4 and POSIX.4a.", acknowledgement = ack-nhfb, classification = "722; 723; 902", conference = "Proceedings of the 12th Real-Time Systems Symposium", conferenceyear = "1991", journalabr = "Proc Real Time Syst Symp", keywords = "Computer Operating Systems--Standards; Computer Systems, Digital; POSIX.4a Standards; Real Time Operation; Real-Time Operating Systems", meetingaddress = "San Antonio, TX, USA", meetingdate = "Dec 4--6 1991", meetingdate2 = "12/04--06/91", publisherinfo = "IEEE Service Center", sponsor = "IEEE Computer Soc", } @Article{Gallmeister:1991:PPR, author = "Bill Gallmeister", title = "Portable {POSIX} in Real Time", journal = j-UNIX-REVIEW, volume = "9", number = "4", pages = "32--??", month = apr, year = "1991", CODEN = "UNRED5", ISSN = "0742-3136", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "POSIX.4 provides a variety of services, including binary semaphores, process memory locking, shared memory, priority scheduling, asynchronous event notification, high-resolution tim interprocess communication and message passing, asynchronous I/O, synchronized I/O, and pre-allocated contiguous real-time files. When the final version of the POSIX.4 real-time standard is approved (probably by mid-1991) it will provide, for the first time, an opportunity for the development of portable real-time applications that can run on systems from multiple vendors.", acknowledgement = ack-nhfb, } @Book{Gaman:1991:PE, author = "William A. Gaman and W. A. Giovinazzo", title = "{PHIGS} by Example", publisher = pub-SV, address = pub-SV:adr, pages = "viii + 218", year = "1991", ISBN = "0-387-97555-1, 3-540-97555-1", ISBN-13 = "978-0-387-97555-9, 978-3-540-97555-7", LCCN = "T385 .G35 1991", bibdate = "Wed Dec 15 08:35:44 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Gardner:1991:LU, author = "James Gardner", title = "Learning {UNIX}", publisher = pub-HWS, address = pub-HWS:adr, pages = "xxii + 595", year = "1991", ISBN = "0-672-30001-X", ISBN-13 = "978-0-672-30001-1", LCCN = "QA76.76.O63G37 1991", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "With disks containing {MSDOS} stimulation of {UNIX} ({MSK} Tools) \ldots{}. A good tutorial\slash reference book for those without constant access to {UNIX} \ldots{}.", price = "US\$39.95", acknowledgement = ack-sk, } @Book{Garfinkel:1991:PUS, author = "Simson Garfinkel and Gene Spafford", title = "Practical {UNIX} Security", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxvii + 483", year = "1991", ISBN = "0-937175-72-2", ISBN-13 = "978-0-937175-72-9", LCCN = "QA76.76.O63 G38 1992", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "{\em Highly recommended}. Simply the best book in this field.", price = "US\$29.95", acknowledgement = ack-sk, } @Misc{Gettys:1991:XWS, author = "James Gettys", title = "{X Windows System} design principles", publisher = "University Video Communications", address = "Stanford, CA, USA", year = "1991", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "VHS format. Title on container: X window system design principles. Recorded on February 11, 1991. The X Window System has become widely accepted by many manufacturers and users of computer systems. X provides network transparent access to display servers, allowing local and remote client programs to access a user's display. X is used on high-performance workstation displays as well as X terminals, and client programs run on everything from micro- to supercomputers. This talk emphasizes system design principles, using X as an example.", series = "Leaders in computer science and electrical engineering", acknowledgement = ack-nhfb, keywords = "X Window System (computer system)", } @Book{Hafner:1991:COH, author = "Katie Hafner and John Markoff", title = "Cyberpunk\emdash Outlaws and Hackers on the Computer Frontier", publisher = pub-SS, address = pub-SS:adr, pages = "368", year = "1991", ISBN = "0-671-68322-5", ISBN-13 = "978-0-671-68322-1", LCCN = "QA76.9.A25 H34 1991", bibdate = "Wed Sep 29 11:08:53 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "See also \cite{Stoll:1989:CET,Stoll:1990:CET}.", price = "US\$22.95", acknowledgement = ack-sk, } @Book{Harbison:1991:CRM, author = "Samuel P. Harbison and Guy L. {Steele Jr.}", title = "{C}\emdash {A} Reference Manual", publisher = pub-PH, address = pub-PH:adr, edition = "Third", pages = "viii + 392", year = "1991", ISBN = "0-13-110933-2", ISBN-13 = "978-0-13-110933-9", LCCN = "QA76.73.C15 H38 1991", bibdate = "Tue May 21 09:29:43 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "An authoritative reference to the {C} programming language, and a good companion to Kernighan and Ritchie.", acknowledgement = ack-sk, } @Book{Heller:1991:MPM, author = "Dan Heller", title = "{Motif} Programming Manual", volume = "7", publisher = pub-ORA, address = pub-ORA:adr, pages = "xix + 557", year = "1991", ISBN = "0-937175-70-6", ISBN-13 = "978-0-937175-70-5", LCCN = "QA76.76.W56 H465", bibdate = "Mon Oct 4 11:55:26 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.95", acknowledgement = ack-nhfb, } @Book{Heller:1991:XPM, author = "Dan Heller", title = "{XV}iew Programming Manual", volume = "7A", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "779", month = sep, year = "1991", ISBN = "0-937175-87-0", ISBN-13 = "978-0-937175-87-3", LCCN = "QA76.76.W56 H447 1990", bibdate = "Mon Jan 3 17:55:53 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Unpublished{Holbrook:1991:SSH, author = "Paul Holbrook and Joyce Reynolds", title = "Site Security Handbook", year = "1991", bibdate = "Wed Jun 29 21:46:57 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A guide to setting computer security policies and procedures for sites that have systems on the Internet \ldots{}. This is \path=rfc1244.txt= which is available by anonymous ftp from \path=nic.ddn.mil= (in \path=rfc= directory). Also, \path=rfc1281.txt=\emdash Guidelines for the Secure Operation of the Internet \ldots{}.", acknowledgement = ack-sk, } @Book{Howard:1991:PIP, author = "T. L. J. Howard and W. T. Hewitt and R. J. Hubbold and K. M. Wyrwas", title = "A Practical Introduction to {PHIGS} and {PHIGS} Plus", publisher = pub-AW, address = pub-AW:adr, pages = "xv + 339", year = "1991", ISBN = "0-201-41641-7", ISBN-13 = "978-0-201-41641-1", LCCN = "T385.P72 1991", bibdate = "Wed Aug 10 11:14:32 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$37.95", acknowledgement = ack-nhfb, } @Book{Hunter:1991:USA, author = "Bruce Hunter and Karen Hunter", title = "{UNIX} System\emdash Advanced Administration and Management Handbook", publisher = pub-MACMILLAN, address = pub-MACMILLAN:adr, pages = "xxiv + 422", year = "1991", ISBN = "0-02-358950-7", ISBN-13 = "978-0-02-358950-8", LCCN = "QA76.76.O63 H86 1991", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Another good book on system administration.", acknowledgement = ack-sk, } @Periodical{IBM:1991:AIM, key = "AIXtra", title = "{/AIXtra}: {IBM}'s Magazine for {AIX} Professionals", publisher = pub-IBM, address = "MS 01-04-60, 5 West Kirkwood Blvd, Roanoke, TX 76299, USA", year = "1991", bibdate = "Tue Nov 5 07:41:45 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{IEEE:1991:ISI, author = "{IEEE Standards Board}", title = "{IEEE} standard for information technology: test methods for measuring conformance to {POSIX}", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "x + 47", year = "1991", ISBN = "1-55937-104-8", ISBN-13 = "978-1-55937-104-9", LCCN = "QA76.76.O63I57 1991", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "IEEE Std 1003.3-1991. Approved March 21, 1991, IEEE Standards Board.", acknowledgement = ack-nhfb, keywords = "application software -- testing -- standards -- United States; operating systems (computers) -- standards -- United States", } @Article{Isaak:1991:PIW, author = "Jim Isaak", title = "{POSIX}: An Introduction to the World of {VMS}", journal = j-VAX-PROF, volume = "13", number = "3", pages = "24--??", month = jun, year = "1991", CODEN = "VAXPEN", ISSN = "8750-9628", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "A Look at What POSIX Will and Won't Do for Applications.", acknowledgement = ack-nhfb, } @Article{Jackson:1991:GGM, author = "Alan Jackson", title = "The Growing Government Market", journal = j-UNIX-WORLD, volume = "8", number = "2", pages = "73--??", day = "1", month = feb, year = "1991", ISSN = "0739-5922", bibdate = "Sat May 25 15:28:26 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", abstract = "With an estimated \$5.7 billion on the block for six computer purchases by the federal government, vendors are offering Posix-compliant systems to win contracts.", acknowledgement = ack-nhfb, } @Book{Jaeschke:1991:DSC, author = "Rex Jaeschke", title = "The Dictionary of Standard {C}", publisher = pub-PPB, address = pub-PPB:adr, pages = "x + 165", year = "1991", ISBN = "1-878956-07-8", ISBN-13 = "978-1-878956-07-1", LCCN = "QA76.73.C15 J335 1991", bibdate = "Mon Oct 4 13:25:38 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @TechReport{Kempe:1991:CTA, author = "Johann Kempe", title = "{CL\slash TB}: an {Allegro Common Lisp} programming interface for TransBase", type = "Technical report", number = "TUM-I9106", institution = "Mathematisches Institut und Institut f{\"u}r Informatik der Technischen Universit{\~a}t M{\"u}nchen", address = "Munich, Germany", pages = "56", month = apr, year = "1991", bibdate = "Mon Nov 18 14:18:28 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This paper presents the 'CL/TB' programming interface for Allegro CL (an implementation of Common Lisp) and the relational database management system TransBase. The interface and its components are presently running on SUN UNIX workstations but can easily be installed on all major UNIX workstations. CL/TB supports data manipulation, data definition, and data control. The database system is called by sending SQL- statements as strings from Allegro CL. Basically, CL/TB offers the prominent services of the underlying TransBase programming interface (TBX). The services are successfully integrated into the functional environment of Lisp and enhanced by many additional features to improve ease of use, programming security, and error support. Thus operating on a database system via CL/TB is easy even for unexperienced users. Furthermore CL/TB is compatible with the relational algebra R-Lisp. The first part of this paper is concerned with aspects of structure, design, implementation, and with performance evaluation. The second part gives a defining description of the interface's functions and is intended to be a user guide.", acknowledgement = ack-nhfb, annote = "Supported in part by the Deutsche Forschungsgemeinschaft.", keywords = "Common LISP (Computer program language); Relational data bases.", } @Book{Kobara:1991:VDO, author = "Shiz Kobara", title = "Visual Design with {OSF\slash Motif}", publisher = pub-AW, address = pub-AW:adr, pages = "xxv + 260", year = "1991", ISBN = "0-201-56320-7", ISBN-13 = "978-0-201-56320-7", LCCN = "QA76.76.W56 K63 1991", bibdate = "Mon Oct 4 14:25:23 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Krieger:1991:NTU, author = "Zander Krieger", title = "{N{\o}glen} til {UNIX}: {System V} og {BSD 4.3}. ({Danish}) [{Key} to {UNIX}: {System V} and {BSD 4.3}]", publisher = "Teknisk forlag", address = "Copenhagen, Denmark", pages = "167", year = "1991", ISBN = "87-571-1265-7", ISBN-13 = "978-87-571-1265-8", LCCN = "????", bibdate = "Tue Sep 17 06:29:30 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Translated and extended by J{\o}rgen Floes.", acknowledgement = ack-nhfb, language = "Danish", } @Article{Kuhn:1991:IPM, author = "D. Richard Kuhn", title = "{IEEE's Posix}: making progress", journal = j-IEEE-SPECTRUM, volume = "28", number = "12", pages = "36--39", month = dec, year = "1991", CODEN = "IEESAM", DOI = "http://dx.doi.org/10.1109/6.106103", ISSN = "0018-9235 (print), 1939-9340 (electronic)", ISSN-L = "0018-9235", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Researchers with the National Institute of Standards and Technology, Gaithersburg, Md., here review an application of open system software. Standards for such open systems are being developed within the IEEE portable operating system interface--Posix, for short.", acknowledgement = ack-nhfb, } @Book{Lewine:1991:PPG, author = "Donald A. Lewine", title = "{POSIX} programmer's guide: writing portable {UNIX} programs with the {POSIX.1} standard", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxvii + 597", year = "1991", ISBN = "0-937175-73-0", ISBN-13 = "978-0-937175-73-6", LCCN = "QA76.76.O63 L487 1991b", bibdate = "Wed Nov 13 14:58:22 1996", bibsource = "ftp://ftp.ora.com/pub/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "March 1994 printing with corrections, updates, and December 1991 Appendix G.", price = "US\$34.95", acknowledgement = ack-nhfb, } @Book{Lippman:1991:CP, author = "Stanley B. Lippman", title = "{C++} Primer", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xvi + 614", year = "1991", ISBN = "0-201-54848-8", ISBN-13 = "978-0-201-54848-8", LCCN = "QA76.73.C15 L57 1991", bibdate = "Mon Oct 4 15:21:16 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Liskov:1991:RUF, author = "Barbara Liskov and Robert Gruber and Paul Johnson and Liuba Shrira", title = "A replicated {Unix} file system (extended abstract)", journal = j-OPER-SYS-REV, volume = "25", number = "1", pages = "60--64", month = jan, year = "1991", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:35 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @TechReport{MacLachlan:1991:CCL, author = "Rob MacLachlan", title = "{CMU Common Lisp} user's manual", type = "Research paper", number = "CMU-CS-91-108", institution = "School of Computer Science, Carnegie Mellon University", address = "Pittsburgh, PA, USA", pages = "vi + 168", month = feb, year = "1991", bibdate = "Mon Nov 18 14:18:28 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "This is a revised version of Technical Report CMU-CS-87-156.", abstract = "CMU Common Lisp is an implementation of Common Lisp that currently runs under Mach, a Berkeley Unix 4.3 binary compatible operating system. CMU Common Lisp is currently supported on MIPS-processor DECstations, SPARC-based workstations from Sun and the IBM RT PC, and other ports are planned. The largest single part of this document describes the Python compiler and the programming styles and techniques that the compiler encourages. The rest of the document describes extensions and the implementation dependent choices made in developing this implementation of Common Lisp. We have added several extensions, including the proposed error system, a source level debugger, an interface to Mach system calls, a foreign function call interface, support for interprocess communication and remote procedure call, and other features that provide a good environment for developing Lisp code.", acknowledgement = ack-nhfb, annote = "Sponsored by the Defense Advanced Research Projects Agency, Information Science and Technology Office.", keywords = "LISP (Computer program language)", } @Book{Mansfield:1991:XWS, author = "Niall Mansfield", title = "The {X Window System}: a user's guide", publisher = pub-AW, address = pub-AW:adr, pages = "xviii + 344", year = "1991", ISBN = "0-201-56344-4", ISBN-13 = "978-0-201-56344-3", LCCN = "QA76.76.W56 .M35 1991", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "X Window System (computer system)", } @Manual{McKusick:1991:BUK, author = "Marshall Kirk McKusick", title = "{4.3 BSD UNIX} kernel internals: implementation, tuning, and networking: {October 28--November 1, 1991, Engineering 819.188}, lecture notes", publisher = "University of California, Los Angeles, University Extension, Dept. of Business, Engineering and Management, Short Course Program", address = "Los Angeles, CA, USA", pages = "various", year = "1991", LCCN = "QA76.76.O63 F68 1991", bibdate = "Tue Sep 17 05:44:14 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "UNIX (computer file)", } @Article{Mudge:1991:DM, author = "Trevor N. Mudge and Richard B. Brown and William P. Birmingham and Jeffrey A. Dykstra and Ayman I. Kayssi and Ronald J. Lomax and Oyekunle A. Olukotun and Karem A. Sakallah and Raymond A. Milano", title = "The Design of a Microsupercomputer", journal = j-COMPUTER, volume = "24", number = "1", pages = "57--64", month = jan, year = "1991", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Tue Feb 04 06:55:47 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", abstract = "Using advanced GaAs technology and a multichip module package, this prototype next-generation machine takes advantage of the best of both the microprocessor and supercomputer traditions.", acknowledgement = ack-nhfb, affiliation = "Michigan Univ., Ann Arbor, MI, USA", classification = "721; 722; 723; C5220 (Computer architecture); C5430 (Microcomputers); C5440 (Multiprocessor systems and techniques)", journalabr = "Computer", keywords = "Application software; Cache Architecture; Computer Aided Design; Computers, Microcomputer; Computers, Supercomputer; Design; Enhancement/Depletion Direct-Coupled fet Logic; GaAs MESFET enhancement/depletion direct-coupled FET logic; Hardware implementations; Logic Design; Microprocessor; Microsupercomputer; Microsupercomputer Design; MIPS Computer Systems instruction set; Networking protocols; Packaging; Prototype microcomputer; Semiconductor Devices, MESFET; Supercomputer; Unix environment", thesaurus = "Field effect integrated circuits; Instruction sets; Integrated logic circuits; Microcomputers; Parallel processing; Protocols", } @Book{Norton:1991:PNG, author = "Peter Norton and Harley Hahn", title = "{Peter Norton}'s Guide to {UNIX}", publisher = pub-BANTAM, address = pub-BANTAM:adr, pages = "xxiv + 560", year = "1991", ISBN = "0-553-35260-1", ISBN-13 = "978-0-553-35260-3", LCCN = "QA76.76.O63 N6817 1991", bibdate = "Tue Sep 28 12:17:10 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "One of the many books by Peter Norton.", price = "US\$26.95", acknowledgement = ack-sk, } @Book{Olczak:1991:KSQ, author = "Anatole Olczak", title = "The {Korn} Shell Quick Reference Guide", publisher = "ASP", address = "San Jose, CA, USA", pages = "52", year = "1991", ISBN = "0-935739-21-1", ISBN-13 = "978-0-935739-21-3", LCCN = "QA76.73.K67 O42 1991", bibdate = "Mon May 06 05:49:52 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Oram:1991:MPM, author = "Andrew Oram and Steve Talbott", title = "Managing Projects with make", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xiv + 136", year = "1991", ISBN = "0-937175-90-0", ISBN-13 = "978-0-937175-90-3", LCCN = "QA76.76.O63 T35 1991", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A unique text on using {\tt make} for software development.", price = "US\$17.95", acknowledgement = ack-sk, } @Book{OReilly:1991:GO, author = "{The Staff of O'Reilly and Associates}", title = "Guide to {OSF\slash 1}", publisher = pub-ORA, address = pub-ORA:adr, pages = "304", month = jun, year = "1991", ISBN = "0-937175-78-1", ISBN-13 = "978-0-937175-78-1", LCCN = "QA76.755.G85 1991", bibdate = "Mon Jan 3 18:22:06 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$21.95", acknowledgement = ack-nhfb, } @Book{OSF:1991:OMPa, author = "{Open Software Foundation}", title = "{OSF\slash Motif} Programmer's Guide, Revision 1.1", publisher = pub-PH, address = pub-PH:adr, pages = "xii + 1212", year = "1991", ISBN = "0-13-640673-4", ISBN-13 = "978-0-13-640673-0", LCCN = "QA76.76.W56 O69 1991", bibdate = "Mon Oct 4 11:57:07 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{OSF:1991:OMPb, author = "{Open Software Foundation}", title = "{OSF\slash Motif} Programmer's Reference, Revision 1.1", publisher = pub-PH, address = pub-PH:adr, pages = "xii + 1212", year = "1991", ISBN = "0-13-640681-5", ISBN-13 = "978-0-13-640681-5", LCCN = "QA76.76.W56 O7 1991", bibdate = "Mon Oct 4 11:57:08 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{OSF:1991:OMS, author = "{Open Software Foundation}", title = "{OSF\slash Motif} Style Guide", publisher = pub-PH, address = pub-PH:adr, year = "1991", ISBN = "0-13-640616-5", ISBN-13 = "978-0-13-640616-7", LCCN = "QA76.76.W56 O833 1991", bibdate = "Mon Oct 4 11:57:10 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Oualline:1991:PCP, author = "Steve Oualline", title = "Practical {C} Programming", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxii + 396", year = "1991", ISBN = "0-937175-65-X", ISBN-13 = "978-0-937175-65-1", LCCN = "QA76.73.C15 O84 1991", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Yet another good C book describing how to create programs that are easy to read, maintain and debug.", price = "US\$24.95", acknowledgement = ack-sk, } @Article{Park:1991:MPB, author = "Arvin Park and Jeffrey C. Becker", title = "Measurements of the paging behavior of {UNIX}", journal = j-SIGMETRICS, volume = "19", number = "1", pages = "216--217", month = may, year = "1991", CODEN = "????", DOI = "http://doi.acm.org/10.1145/107972.107997", ISSN = "0163-5999 (print), 1557-9484 (electronic)", ISSN-L = "0163-5999", bibdate = "Thu Jun 26 11:11:17 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This paper analyzes measurements of paging activity from several different versions of UNIX. We set out to characterize paging activity by first taking measurements of it, and then writing programs to analyze it. In doing so, we were interested in answering several questions:\par 1. What is the magnitude of paging traffic and how much of I/O system activity is paging related?\par 2. What are the characteristics of paging activity, and how can paging system implementations be tuned to match them?\par 3. How does paging activity vary across different machines, operating systems, and job mixes?\par 4. How well does paging activity correlate with system load average and number of users?", acknowledgement = ack-nhfb, } @Article{PeytonJones:1991:FIS, author = "Simon L. {Peyton Jones} and Mark S. Hardie", title = "A {Futurebus} interface from off-the-shelf parts", journal = j-IEEE-MICRO, volume = "11", number = "1", pages = "38--41, 84--93", month = feb, year = "1991", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/40.67745", ISSN = "0272-1732 (print), 1937-4143 (electronic)", bibdate = "Mon Apr 7 14:32:46 MDT 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib; Misc/Functional.bib", abstract = "As part of the GRIP project we have designed a Futurebus interface using off-the-shelf parts. We describe our implementation, which is unusual in its use of fully asynchronous finite-state machines. Based on this experience we draw some lessons for future designs.", acknowledgement = ack-nhfb, affiliation = "Comput Sci Dept, Univ of Glasgow, UK", classcodes = "C5610S (System buses); C5220 (Computer architecture)", classification = "718; 721; 722; 723", corpsource = "Dept. of Comput. Sci., Glasgow Univ., UK", journalabr = "IEEE Micro", keywords = "Computational Models; computer interfaces; Computer Interfaces--Modular Construction; Computers, Microcomputer; Data Communication Systems; diagnostics board; finite-state machines; fully synchronous; Futurebus; Futurebus interface design; Graph Reduction in; GRIP; IEEE P896 Futurebus standard; Parallel; parallel machines; protocols; Unix host computer", treatment = "P Practical", } @Book{Quercia:1991:XWS, author = "Valerie Quercia and Tom O'Reilly", title = "{X Window System} User's Guide: {OSF}\slash {Motif} edition", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxvi + 709", year = "1991", ISBN = "0-937175-61-7", ISBN-13 = "978-0-937175-61-3", LCCN = "QA76.76.W56 Q4 1991", bibdate = "Wed Sep 14 14:21:40 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Quong:1991:LPI, author = "Russell W. Quong and Mark A. Linton", title = "Linking Programs Incrementally", journal = j-TOPLAS, volume = "13", number = "1", pages = "1--20", month = jan, year = "1991", CODEN = "ATPSDT", ISSN = "0164-0925 (print), 1558-4593 (electronic)", bibdate = "Fri Jan 5 07:58:42 MST 1996", bibsource = "Compiler/Compiler.Lins.bib; Compiler/TOPLAS.bib; http://www.math.utah.edu/pub/tex/bib/unix.bib; Misc/IMMD_IV.bib", URL = "http://www.acm.org/pubs/toc/Abstracts/0164-0925/102804.html", abstract = "Linking is traditionally a batch process that resolves cross-references between object modules and run-time libraries to produce a stand-alone executable image. Because most program changes only involve a small part of the program, we have implemented an incremental linker, named Inclink, that processes only the changed modules. Inclink generates a new executable in time proportional to the size of change; in contrast, a batch linker generates an executable in time proportional to the size of the program. To minimize updates to the executable, Inclink allocates extra space for every module. By allocating 24 percent more space in the executable for overflows, Inclink can update a module in place over 97 percent of the time. Measurements show that Inclink is more than an order of magnitude faster than the UNIX [2] batch linker and that 88 percent of all links will take less than 2~s of CPU time on a MicroVAX-2, independent of program size.", acknowledgement = ack-nhfb # " and " # ack-pb, keywords = "algorithms; measurement; performance", subject = "{\bf D.4.9}: Software, OPERATING SYSTEMS, Systems Programs and Utilities, Linkers. {\bf D.3.4}: Software, PROGRAMMING LANGUAGES, Processors, Run-time environments. {\bf D.3.3}: Software, PROGRAMMING LANGUAGES, Language Constructs and Features, Modules, packages.", } @Book{Raymond:1991:NHD, author = "Eric Raymond", title = "The New Hacker's Dictionary", publisher = pub-MIT, address = pub-MIT:adr, pages = "xx + 433", year = "1991", ISBN = "0-262-68069-6", ISBN-13 = "978-0-262-68069-1", LCCN = "PN6231.E4 H3 1991", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "This book corresponds to version 2.9.6 of the on-line jargon file. The latest (at the time of writing) is version 2.9.12 (\path|jargon2912.txt.z|) which is available by anonymous {\tt ftp} from \path|prep.ai.mit.edu| (in \path|/pub/gnu|) or \path|wuarchive.wustl.edu| (in \path|mirrors/gnu|). Changes since the publication of this book can be found in the file \path|jargon-upd.z|. (\path|*.z| are files compressed by GNU {\tt zip} ({\tt gzip})).", acknowledgement = ack-sk, } @Book{Rosenberg:1991:KSP, author = "Barry Rosenberg", title = "{Korn} Shell Programming Tutorial", publisher = pub-AW, address = pub-AW:adr, pages = "xxi + 324", year = "1991", ISBN = "0-201-56324-X", ISBN-13 = "978-0-201-56324-5", LCCN = "QA76.73.K67 R67 1991", bibdate = "Wed Sep 29 11:00:59 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A good tutorial on creating Korn shell scripts.", acknowledgement = ack-sk, } @Book{Russell:1991:CSB, author = "Deborah Russell and G. T. {Gangemi Sr.}", title = "Computer Security Basics", publisher = pub-ORA, address = pub-ORA:adr, pages = "xx + 441", year = "1991", ISBN = "0-937175-71-4", ISBN-13 = "978-0-937175-71-2", LCCN = "QA76.9.A25 R8 1991", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A clear overview on many different security issues.", price = "US\$29.95", acknowledgement = ack-sk, } @Book{Russo:1991:NUG, author = "Michael Russo", title = "The New User's Guide to the {Sun} Workstation", publisher = pub-SV, address = pub-SV:adr, pages = "203", year = "1991", ISBN = "0-387-97249-8", ISBN-13 = "978-0-387-97249-7", LCCN = "QA76.8.S86 R87 1991", bibdate = "Tue Jun 06 17:31:22 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$40.00", acknowledgement = ack-nhfb, } @Book{Sasaki:1991:NEP, author = "Shinsuke Sasaki", title = "Nihongo eidaburyukei puroguramingu tekunikku. ({Japanese}) []", publisher = "Mainichi Komyunikeshonzu", address = "Tokyo, Japan", pages = "255", year = "1991", ISBN = "4-89563-165-6", ISBN-13 = "978-4-89563-165-5", LCCN = "????", bibdate = "Fri Jul 01 14:55:38 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, language = "Japanese", } @Book{Schildt:1991:CCRa, author = "Herbert Schildt", title = "{C}: The Complete Reference", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xv + 823", year = "1991", ISBN = "0-07-881538-X", ISBN-13 = "978-0-07-881538-6", LCCN = "QA76.73.C15 S34 1990", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Another classic on the C language.", acknowledgement = ack-sk, } @Book{Schildt:1991:CCRb, author = "Herbert Schildt", title = "{C++}: The Complete Reference", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xxi + 594", year = "1991", ISBN = "0-07-881654-8", ISBN-13 = "978-0-07-881654-3", LCCN = "QA76.73.C15 S36 1991", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Another good text on C++.", acknowledgement = ack-sk, } @Article{Schmitt:1991:RUT, author = "David A. Schmitt", title = "Reviving the {UNIX} {\tt sbrk} Function", journal = j-CUJ, volume = "9", number = "2", pages = "97--??", month = feb, year = "1991", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Smith:1991:OPX, author = "Jerry D. Smith", title = "Object-oriented programming with the {X Window System} toolkits", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xiv + 576", year = "1991", ISBN = "0-471-53260-6, 0-471-53259-2 (paperback)", ISBN-13 = "978-0-471-53260-6, 978-0-471-53259-0 (paperback)", LCCN = "QA76.64 .S58 1991", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "object-oriented programming (computer science); X Window System (computer system)", } @Book{Sobell:1991:PGU, author = "Mark Sobell", title = "A Practical Guide to the {UNIX System V Release} 4", publisher = pub-BENCUM, address = pub-BENCUM:adr, edition = "Second", pages = "xxvii + 700", year = "1991", ISBN = "0-8053-7560-0", ISBN-13 = "978-0-8053-7560-2", LCCN = "QA76.76.O63 S6 1991", bibdate = "Wed Sep 29 13:05:45 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A very good tutorial\slash reference book.", acknowledgement = ack-sk, } @Book{Stern:1991:MNN, author = "Hal Stern", title = "Managing {NFS} and {NIS}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxiv + 410", year = "1991", ISBN = "0-937175-75-7", ISBN-13 = "978-0-937175-75-0", LCCN = "TK5105.5 .S74 1991", bibdate = "Mon Oct 4 11:57:57 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$27.95", acknowledgement = ack-nhfb, } @Book{Stroustrup:1991:CPL, author = "Bjarne Stroustrup", title = "The {C++} Programming Language", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xi + 669", year = "1991", ISBN = "0-201-53992-6", ISBN-13 = "978-0-201-53992-9", LCCN = "QA76.73.C15 S79 1991", bibdate = "Mon Oct 4 11:58:08 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, email = "\path|bs@alice.uucp|", } @Manual{Swick:1991:XSF, author = "Ralph R. Swick", title = "The {X Window System}: fundamentals and applications development: {April 15--18, 1991, Engineering 819.209}: lecture notes", publisher = "University of California", address = "Los Angeles, University Extension, Dept. of Business, Engineering and Management, Short Course Program", pages = "various", year = "1991", LCCN = "QA 76.76 W56 X85 1991", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "X Window System (computer system)", } @Book{Todino:1991:UUU, author = "Grace Todino and Dale Dougherty", title = "Using {UUCP} and Usenet", publisher = pub-ORA, address = pub-ORA:adr, pages = "xv + 194", year = "1991", ISBN = "0-937175-10-2", ISBN-13 = "978-0-937175-10-1", LCCN = "QA76.76 O63 T63 1991", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Well written on how to use {\tt uucp} and Netnews.", price = "US\$21.95", acknowledgement = ack-sk, } @Book{VanRaalte:1991:XRM, author = "Thomas Van Raalte", title = "{XV}iew Reference Manual", publisher = pub-ORA, address = pub-ORA:adr, pages = "291", month = sep, year = "1991", ISBN = "0-937175-88-9", ISBN-13 = "978-0-937175-88-0", LCCN = "QA76.76.W56 X85 1991", bibdate = "Mon Jan 3 17:56:24 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$24.95", acknowledgement = ack-nhfb, } @InProceedings{Wesenberg:1991:LCK, author = "David P. Wesenberg and C. Mark Turner", title = "A low cost knowledge based software assistant", crossref = "IEEE:1991:PIN", volume = "2", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "640--646", year = "1991", bibdate = "Tue Sep 28 07:51:05 MDT 1999", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "722; 723", journalabr = "IEEE Proc Natl Aerosp Electron Conf", keywords = "Common Lisp; Computer Operating systems--UNIX; Computer Software; Computer Workstations; Database Systems--Relational; Expert Systems--Knowledge Bases; Knowledge-based software; Software assistant", } @Book{Yager:1991:UPD, author = "Thomas Yager", title = "{UNIX} program development for {IBM PC}s\emdash Including {OSF\slash Motif}", publisher = pub-AW, address = pub-AW:adr, pages = "xv + 283", year = "1991", ISBN = "0-201-57727-5", ISBN-13 = "978-0-201-57727-3", LCCN = "QA76.8.I1015 Y34 1991", bibdate = "Mon Oct 4 14:21:12 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Zlotnick:1991:PSP, author = "Fred Zlotnick", title = "The {POSIX.1} standard: a programmer's guide", publisher = pub-BENCUM, address = pub-BENCUM:adr, pages = "xx + 379", year = "1991", ISBN = "0-8053-9605-5", ISBN-13 = "978-0-8053-9605-8", LCCN = "QA76.76.O63 Z57 1991", bibdate = "Sat Nov 12 21:55:23 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Abrahams:1992:UI, author = "Paul W. Abrahams and Bruce R. Larson", title = "{UNIX} for the Impatient", publisher = pub-AW, address = pub-AW:adr, pages = "xxvii + 559", year = "1992", ISBN = "0-201-55703-7", ISBN-13 = "978-0-201-55703-9", LCCN = "QA76.76.O63 A27 1992", bibdate = "Mon Oct 4 11:54:00 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Excellent, and thorough, coverage of {UNIX}, with chapters on the file system, utilities, shells, editors, Emacs, data manipulation, mail, network communications and resources, the X Window System, and a comparison of {MS-DOS} and {UNIX}.", acknowledgement = ack-nhfb, } @Book{Abrahams:UI92, author = "Paul W. Abrahams and Bruce R. Larson", title = "{UNIX} for the Impatient", publisher = pub-AW, address = pub-AW:adr, pages = "xxvii + 559", year = "1992", ISBN = "0-201-55703-7", ISBN-13 = "978-0-201-55703-9", LCCN = "QA76.76.O63 A27 1992", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Excellent, and thorough, coverage of {UNIX}, with chapters on the file system, utilities, shells, editors, Emacs, data manipulation, mail, network communications and resources, the X Window System, and a comparison of {MS-DOS} and {UNIX}.", } @TechReport{Akin:1992:APO, author = "Allen Akin", title = "Analysis of {PEX} 5.1 and {OpenGL} 1.0", institution = "Silicon Graphics Computer Systems", address = "Mountain View, CA, USA", month = aug # " 3", year = "1992", bibdate = "Sat May 21 16:02:36 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "The manual pages for the OpenGL API, its Utility Library (GLU), and the X server extension API (GLX) and a PostScript version of the OpenGL specification are available via anonymous ftp to \path=sgigate.sgi.com= from \path=/pub/opengl/doc=.", URL = "ftp://sgigate.sgi.com/pub/opengl/doc/analysis.Z", acknowledgement = ack-jc, } @Article{Albinson:1992:ULC, author = "Lawrence Albinson and Dominique Grabas and Pascal Piovesan and Michel Tombroff and Christian Tricot and Hossein Yassaie", title = "{UNIX} on a loosely coupled architecture: {The} {CHORUS\slash MiX} approach", journal = j-FUT-GEN-COMP-SYS, volume = "8", number = "1--3", pages = "67--81", month = jul, year = "1992", CODEN = "FGSEVI", ISSN = "0167-739X (print), 1872-7115 (electronic)", ISSN-L = "0167-739X", bibdate = "Fri Jul 15 09:06:02 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sciencedirect.com/science/journal/0167739X", acknowledgement = ack-nhfb, } @Book{Albitz:1992:DBN, author = "Paul Albitz and Cricket Liu", title = "{DNS} and {BIND} in a Nutshell", publisher = pub-ORA, address = pub-ORA:adr, pages = "xviii + 381", year = "1992", ISBN = "1-56592-010-4", ISBN-13 = "978-1-56592-010-1", LCCN = "TK5105.875.I57 A43 1992", bibdate = "Fri Apr 2 14:40:45 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", acknowledgement = ack-nhfb # " and " # ack-woh, walts-review = "An excellent introduction and tutorial for anyone managing a part of the Internet's Domain Name Service. The reader is assumed to have some basic knowledge of UNIX system administration, the TCP/IP protocol family and programming in C and the UNIX shell script languages. Table of Contents 1 Background 2 How does DNS work? 3 Where Do I Start? 4 Setting Up BIND 5 DNS and Electronic Mail 6 Configuring Hosts 7 Maintaining BIND 8 Growing Your Domain 9 Parenting 10 nslookup 11 Reading BIND Debugging Output 12 Troubleshooting DNS and BIND 13 Programming with the Resolver Library Routines 14 Miscellaneous A DNS Message Format and Resource Records B Compiling and Installing BIND on a Sun C Top-level Domains D Domain Registration Form E IN-ADDR.ARPA Registration", } @Article{Anonymous:1992:OIG, author = "Anonymous", title = "{Open Interface} get Vendor Boost", journal = j-INFORMATION-WEEK, volume = "358", pages = "40--??", day = "3", month = feb, year = "1992", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Sat May 25 15:28:26 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", abstract = "Recent vendor announcements support Posix compatibility for non-Unix operating environments.", acknowledgement = ack-nhfb, } @Article{Anonymous:1992:PAP, author = "Anonymous", title = "{POSIX} Access Platforms", journal = j-SECURITY, volume = "29", number = "7", pages = "18--??", month = jul, year = "1992", CODEN = "SECUEU", ISSN = "0890-8826", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Anonymous:1992:PLS, author = "Anonymous", title = "{POSIX} Loopholes = Soft Realtime", journal = j-COMP-TECH-REV, volume = "XII", number = "8", pages = "4--??", month = jul, year = "1992", ISSN = "0278-9647", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Anonymous:1992:RP, author = "Anonymous", title = "Real-Time {Posix}", journal = j-BYTE, volume = "17", number = "8", pages = "177--186", month = aug, year = "1992", CODEN = "BYTEDJ", ISSN = "0360-5280", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", abstract = "Portability and openness finally come to real-time applications through Posix.", acknowledgement = ack-nhfb, } @Article{Anonymous:1992:RWG, author = "Anonymous", title = "Real-Time Will Get Real Standards", journal = j-DATAMATION, volume = "38", number = "21", pages = "97--??", day = "15", month = oct, year = "1992", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", abstract = "Forthcoming extensions to POSIX promise to discipline the unruly real-time marketplace and may push real-time systems into commercial IS.", acknowledgement = ack-nhfb, } @Book{Arick:1992:UCS, author = "Martin Arick", title = "{UNIX C} Shell\emdash Desk Reference", publisher = pub-QED, address = pub-QED:adr, pages = "xiv + 204", year = "1992", ISBN = "0-89435-328-4", ISBN-13 = "978-0-89435-328-4", LCCN = "QA76.76.O63 A75 1992", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A more recent text on C-shell.", price = "US\$34.95", acknowledgement = ack-sk, } @Book{Berry:1992:WGC, author = "John Berry", title = "The Waite Group's {C++} Programming", publisher = pub-HWS, address = pub-HWS:adr, edition = "Second", pages = "xvii + 408", year = "1992", ISBN = "0-672-22771-1", ISBN-13 = "978-0-672-22771-4", LCCN = "QA76.73.C153B47 1992", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A fine book on {OOP} with {C++} (for {UNIX} and {DOS}).", acknowledgement = ack-sk, } @Book{Bloomer:1992:PPR, author = "John Bloomer", title = "Power programming with {RPC}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxxii + 459", month = feb, year = "1992", ISBN = "0-937175-77-3", ISBN-13 = "978-0-937175-77-4", LCCN = "QA76.9.D5 B55 1991", bibdate = "Mon Jan 3 18:08:07 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @Book{Brain:1992:MPE, author = "Marshall Brain", title = "{Motif} programming\emdash The Essentials --- and More", publisher = pub-DP, address = pub-DP:adr, pages = "xviii + 601", year = "1992", ISBN = "1-55558-089-0", ISBN-13 = "978-1-55558-089-6", LCCN = "QA76.76.W56 B73 1992", bibdate = "Thu Jan 04 18:34:48 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Bulterman:1992:MSU, author = "D. C. A. Bulterman and R. {van Liere}", title = "Multimedia Synchronization and {UNIX}", journal = j-LECT-NOTES-COMP-SCI, volume = "614", pages = "108--??", year = "1992", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", bibdate = "Mon May 13 11:46:24 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Burgard:1992:XDC, author = "Michael Burgard and Mike Moore", title = "{X}.desktop Cookbook\emdash An Easy Way to Configure your Desktop", publisher = pub-PH, address = pub-PH:adr, pages = "x + 377", year = "1992", ISBN = "0-13-978537-X", ISBN-13 = "978-0-13-978537-5", LCCN = "QA76.76.O63 B858 1992", bibdate = "Tue Oct 12 17:57:14 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$46.00", acknowledgement = ack-nhfb, } @Article{Collura:1992:ESL, author = "Thomas F. Collura and Ernest C. Jacobs and Richard C. Burgess and John P. Turnbull", title = "The {Epilog} system --- automated long-term {EEG} monitoring for epilepsy", journal = j-COMPUTER, volume = "25", number = "9", pages = "5--14", month = sep, year = "1992", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Fri Sep 13 18:26:01 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "A Unix-based system continuously monitors EEG for diagnosis and surgical planning in a large epilepsy program. It is integrated with audio/video monitoring and seizure alarms.", acknowledgement = ack-nhfb, affiliation = "Cleveland Clinic Found., OH, USA", classification = "A8728 (Bioelectricity); A8730C (Electrical activity); A8770 (Biomedical engineering); B7210B (Automatic test and measurement systems); B7510D (Bioelectric signals); C7330 (Biology and medicine); C7410H (Instrumentation)", keywords = "Computerised EEG monitoring; Data flow; Data structures; Epilepsy program; Epilog system; Real-time operational support system; Unix; Waveform acquisition", thesaurus = "Biomedical equipment; Computerised monitoring; Electroencephalography; Medical computing; Patient monitoring; Real-time systems", } @Manual{Colon:1992:VTV, author = "Robert {Colon (Tutor)} and others and Maarten {Litmaati (Reference)}", title = "{\tt vi} Tutor and {\tt vi} Reference", edition = "2.1 (Tutor), 8 (Reference)", year = "1992", bibdate = "Wed Nov 01 08:30:40 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "The latest interactive tutorial (\path|vitutor2.1.shar(.Z)|) can be obtained by anonymous {\tt ftp} from \path|ftp.mines.colorado.edu| (in \path|/pub/tutorials|) \ldots{}. The reference and other {\tt vi} stuff are obtainable by anonymous {\tt ftp} from \path|ftp.uwp.edu| (in \path|/pub/vi|).", acknowledgement = ack-sk, } @Book{Coplien:1992:ACP, author = "James Coplien", title = "Advanced {C++} Programming Styles and Idioms", publisher = pub-AW, address = pub-AW:adr, pages = "xxiv + 520", year = "1992", ISBN = "0-201-54855-0", ISBN-13 = "978-0-201-54855-6", LCCN = "QA76.73.C153 C67 1992", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "An advanced book for any C++ expert-wanna-be.", acknowledgement = ack-sk, } @Book{Curry:1992:USS, author = "David Curry", title = "{UNIX} System Security\emdash {A} Guide for Users and System Administrators", publisher = pub-AW, address = pub-AW:adr, pages = "xiii + 279", year = "1992", ISBN = "0-201-56327-4", ISBN-13 = "978-0-201-56327-6", LCCN = "QA76.9.A25 C87 1992", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Comprehensive coverage \ldots{} with pointers to further information.", acknowledgement = ack-sk, } @Article{Custer:1992:GTW, author = "Helen Custer", title = "A Grand Tour of {Windows NT}: Portable 32-bit Multiprocessing Comes to {Windows}", journal = j-MICROSOFT-SYS-J, volume = "7", number = "4", pages = "17--31", month = jul, year = "1992", CODEN = "MSJOED", ISSN = "0889-9932", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Windows NT is an advanced operating system consisting of a privileged Executive and nonprivileged protected subsystems. These subsystems use a client-server model to support programs written for 16-bit and 32-bit Windows, MS-DOS, POSIX, and OS/2. The multiple-model design of Windows NT and the system's components are discussed in detail.", acknowledgement = ack-nhfb, } @Book{Cutler:1992:XWS, editor = "Ellie Cutler and Daniel Gilly and Tim O'Reilly", title = "The {X Window System} in a Nutshell", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "424", year = "1992", ISBN = "1-56592-017-1", ISBN-13 = "978-1-56592-017-0", LCCN = "QA76.76.W56 X2 1992", bibdate = "Sat Nov 13 11:19:26 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$9.95", acknowledgement = ack-nhfb, } @Book{Egan:1992:WUD, author = "Janet I. Egan and Thomas J. Teixeira", title = "Writing a {UNIX} Device Driver", publisher = pub-WILEY, address = pub-WILEY:adr, edition = "Second", pages = "ix + 358", year = "1992", ISBN = "0-471-53575-3 (cloth), 0-471-53574-5 (paper)", ISBN-13 = "978-0-471-53575-1 (cloth), 978-0-471-53574-4 (paper)", LCCN = "QA76.76.D49 E42 1992", bibdate = "Sat Aug 31 09:15:22 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A classic book on writing programs to control hardware devices. See book review \cite{Weinstein:1993:TWU}.", acknowledgement = ack-nhfb # " and " # ack-sk, keywords = "UNIX device drivers (computer programs)", } @Article{Gallmeister:1992:RP, author = "Bill O. Gallmeister", title = "Real-Time {POSIX}", journal = j-EMBED-SYS-PROG, volume = "5", number = "10", pages = "28--??", month = oct, year = "1992", CODEN = "EYPRE4", ISSN = "1040-3272", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Although the portable operating-system interface (POSIX) has been around for years as an applications interface, the real- time extensions to POSIX have been the subject of seemingly endless discussion and lobbying. As IEEE 1003.4 approaches the hoped-for final ballot and industry and government contracts start begin specifying POSIX compliance, it becomes more important for developers to know what the standard does and doesn't cover. This overview will help you get started.", acknowledgement = ack-nhfb, } @Book{Gaskins:1992:PPMa, author = "Tom Gaskins", title = "{PHIGS} Programming Manual", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxxix + 908", year = "1992", ISBN = "0-937175-85-4 (softcover), 0-937175-92-7 (hardcover)", ISBN-13 = "978-0-937175-85-9 (softcover), 978-0-937175-92-7 (hardcover)", LCCN = "QA76.76.W56 G37 1992", bibdate = "Tue Dec 7 09:56:13 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$42.95 (softcover), US\$52.95 (hardcover)", acknowledgement = ack-nhfb, } @Book{Gaskins:1992:PPMb, author = "Tom Gaskins", title = "{PEX}lib Programming Manual", publisher = pub-ORA, address = pub-ORA:adr, pages = "xlv + 1105", year = "1992", ISBN = "1-56592-028-7", ISBN-13 = "978-1-56592-028-6", LCCN = "QA76.76.W56 G37 1992", bibdate = "Tue Dec 7 09:54:08 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$44.95", acknowledgement = ack-nhfb, } @Book{German:1992:CLC, author = "Hallett German", title = "Command language cookbook for mainframes, minicomputers, and {PC}'s: {DOS\slash OS/2} batch language, {Clist}, {DCL}, {Perl}, and {REXX}", publisher = pub-VNR, address = pub-VNR:adr, pages = "xiv + 352", year = "1992", ISBN = "0-442-00801-5", ISBN-13 = "978-0-442-00801-7", LCCN = "QA 76.7 G45 1992", bibdate = "Thu May 18 09:03:21 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Gilly:1992:UN, author = "Daniel Gilly and {the staff of O'Reilly \& Associates, Inc.}", title = "{UNIX} in a Nutshell", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xv + 400", year = "1992", ISBN = "1-56592-001-5", ISBN-13 = "978-1-56592-001-9", LCCN = "QA76.76.O63 G55 1992", bibdate = "Mon Oct 4 11:55:11 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$9.95", acknowledgement = ack-nhfb, } @Book{Gilly:1992:UNB, author = "Daniel Gilly and {the staff of O'Reilly \& Associates, Inc.}", title = "{UNIX} in a Nutshell. Berkeley edition\emdash a Desktop Quick Reference", publisher = pub-ORA, address = pub-ORA:adr, pages = "272", year = "1992", ISBN = "0-937175-20-X", ISBN-13 = "978-0-937175-20-0", LCCN = "QA76.76.O63 U544 1989", bibdate = "Wed Sep 29 13:32:24 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$19.50", acknowledgement = ack-sk, } @Book{Gilly:1992:UNS, author = "Daniel Gilly and {The staff of O'Reilly and Associates}", title = "{UNIX} in a Nutshell: System {V} Edition", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "444", month = jun, year = "1992", ISBN = "1-56592-001-5", ISBN-13 = "978-1-56592-001-9", LCCN = "QA76.76.O63 G55 1992", bibdate = "Mon Sep 30 16:07:33 1996", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$9.95", URL = "http://www.oreilly.com/catalog/unutv", acknowledgement = ack-nhfb, } @Book{Gilly:UN92, author = "Daniel Gilly and {the staff of O'Reilly \& Associates, Inc.}", title = "{UNIX} in a Nutshell", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", year = "1992", ISBN = "1-56592-001-5", ISBN-13 = "978-1-56592-001-9", LCCN = "QA76.76.O63 G55 1992", bibdate = "Tue Dec 14 22:53:27 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", } @Article{Glazier:1992:BPW, author = "Bill Glazier", title = "The ``Best Principle'': Why {OpenGL} is emerging as the {3D} graphics standard", journal = j-CGW, volume = "15", number = "4", pages = "116", month = apr, year = "1992", bibdate = "Sat May 21 15:39:12 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-jc, } @Book{Glines:1992:DU, author = "Steven Glines", title = "Downsizing to {UNIX}", publisher = pub-NEW-RIDERS, address = pub-NEW-RIDERS:adr, pages = "xix + 506", year = "1992", ISBN = "1-56205-074-5", ISBN-13 = "978-1-56205-074-0", LCCN = "QA76.76.O63 G588 1992", bibdate = "Wed Sep 29 13:48:24 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A book for people involved or interested in downsizing mainframe data-processing to a distributed {UNIX} network.", acknowledgement = ack-sk, } @Book{Gregory:1992:PM, author = "Keith D. Gregory", title = "Programming with {Motif}", publisher = pub-SV, address = pub-SV:adr, pages = "xxii + 664", year = "1992", ISBN = "0-387-97877-1 (New York), 3-540-97877-1 (Berlin)", ISBN-13 = "978-0-387-97877-2 (New York), 978-3-540-97877-0 (Berlin)", LCCN = "QA76.76.W56 G84 1992", bibdate = "Mon Oct 4 14:12:37 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @InProceedings{Hennessey:1992:WDE, author = "Wade Hennessey", title = "{WCL}: Delivering efficient {Common Lisp} applications under {Unix}", crossref = "ACM:1992:PAC", pages = "260--269", year = "1992", bibdate = "Wed Aug 6 19:54:46 MDT 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliation = "Stanford Univ", affiliationaddress = "Stanford, CA, USA", classification = "722.1; 723.1; 723.1.1", keywords = "C (programming language); Common Lisp; Computer operating systems; Computer programming; Data processing; Distributed computer systems; Full development library; Lisp (programming language); Mixed language debugging; Program debugging; Shared library; Storage allocation (computer); UNIX; WCL programs", sponsor = "ACM; SIGPLAN; SIGACT; SIGART", } @Book{Holsberg:1992:UDG, author = "Pete Holsberg", title = "{UNIX} Desktop Guide to Tools", publisher = pub-HWS, address = pub-HWS:adr, pages = "xvii + 476", year = "1992", ISBN = "0-672-30202-0", ISBN-13 = "978-0-672-30202-2", LCCN = "QA76.76.O63 H649 1992", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A new and comprehensive guide to numerous {UNIX} utilities.", price = "US\$27.95", acknowledgement = ack-sk, } @Book{Horspool:1992:BUE, author = "Nigel Horspool", title = "The {Berkeley UNIX} Environment", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "xii + 379", year = "1992", ISBN = "0-13-089368-4", ISBN-13 = "978-0-13-089368-0", LCCN = "QA76.73.C15H67 1992", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "{\em Highly recommended}. An excellent book on C programming for Berkeley {UNIX} system \ldots A companion text intended for use in college and university courses concerned with Compiler Construction, Software Engineering and Operating Systems", acknowledgement = ack-sk, } @Book{Hunt:1992:TIN, author = "Craig Hunt", title = "{TCP/IP} Network Administration", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxii + 471", year = "1992", ISBN = "0-937175-82-X", ISBN-13 = "978-0-937175-82-8", LCCN = "TK5105.9 .H86", bibdate = "Wed Dec 15 10:34:47 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Husemann:1992:ICL, author = "D. Husemann", title = "{ISO CONS} in {LANs} --- making it all work. {A} {European} contribution to {4.4 BSD Unix}", journal = j-COMP-NET-ISDN, volume = "25", number = "4--5", pages = "411--??", month = nov, year = "1992", CODEN = "CNISE9", ISSN = "0169-7552", bibdate = "Wed Sep 22 18:15:30 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{IEEE:1992:ISIa, author = "{IEEE Standards Board}", title = "{IEEE} standard for information technology: {POSIX Ada} language interfaces --- Part 1: Binding for system application program interface {(API)}", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xii + 305", day = "18", month = jun, year = "1992", LCCN = "QA76.76.O63I445 1992", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Std 1003.5-1992", acknowledgement = ack-nhfb, keywords = "Ada (computer program language); application software -- testing -- standards -- United States; operating systems (computers) -- standards -- United States", } @Book{IEEE:1992:ISIb, author = "{IEEE Standards Board}", title = "{IEEE} standard for information technology: {POSIX FORTRAN} 77 language interfaces --- Part 1: Binding for system application program interface {(API)}", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xiii + 181", day = "18", month = jun, year = "1992", ISBN = "1-55937-230-3", ISBN-13 = "978-1-55937-230-5", LCCN = "QA76.76.O63I454 1992", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Std 1003.9-1992", acknowledgement = ack-nhfb, keywords = "application software -- testing -- standards -- United States; operating systems (computers) -- standards -- United States", } @Book{Israel:1992:XWS, author = "Elias Israel and Erik Fortune", title = "The {X}-Window System Server\emdash {X} version 11, Release 5", publisher = pub-DP, address = pub-DP:adr, pages = "xv + 534", year = "1992", ISBN = "1-55558-096-3", ISBN-13 = "978-1-55558-096-4", LCCN = "QA76.76.W56 I75 1992", bibdate = "Fri Dec 10 13:30:59 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$44.95", acknowledgement = ack-nhfb, } @Article{Johnson:1992:UWS, author = "Jim Johnson and Jerry Cashin", title = "Users Will Seal Fate Of {Posix} Plan", journal = j-SOFTWARE-MAG, volume = "12", number = "3", pages = "82--??", day = "1", month = mar, year = "1992", CODEN = "SMWMEQ", ISSN = "0897-8085", bibdate = "Sat May 25 15:28:26 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", abstract = "Some see Posix critical to open systems.", acknowledgement = ack-nhfb, } @Book{Johnson:1992:XWA, author = "Eric F. Johnson and Kevin Reichard", title = "{X Window} Applications Programming", publisher = pub-MIS, address = pub-MIS:adr, edition = "Second", pages = "xxxi + 564", year = "1992", ISBN = "1-55828-178-9 (book), 1-55828-180-9 (book/disk: wrong ISBN in book)", ISBN-13 = "978-1-55828-178-3 (book), 978-1-55828-180-6", LCCN = "QA76.76.W56 J64 1992", bibdate = "Mon Jun 6 17:02:15 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @Book{Johson:1992:UXT, author = "Eric F. Johson", title = "Using {X}\emdash Troubleshooting the {X Window System}, {Motif}, and {Open Look}", publisher = pub-MIS, address = pub-MIS:adr, pages = "xx + 351", year = "1992", ISBN = "1-55828-212-2", ISBN-13 = "978-1-55828-212-4", LCCN = "QA76.76.W56 J639 1992", bibdate = "Mon Oct 4 13:46:23 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @Article{Karlton:1992:IXE, author = "Phil Karlton", title = "Integrating the {GL} into the {X} Environment: {A} High Performance Rendering Extension Working With and Not Against {X}", journal = j-XR, volume = "1", number = "1", pages = "27--32", month = jan, year = "1992", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "OpenGL", } @Article{Kataoka:1992:MIO, author = "Yutaka Kataoka and Masato Morisaki and Hiroshi Kuribayashi and Hiroyoshi Ohara", title = "A Model for Input and Output of Multilingual Text in a Windowing Environment", journal = j-TOIS, volume = "10", number = "4", pages = "438--451", month = oct, year = "1992", CODEN = "ATISET", ISSN = "1046-8188", ISSN-L = "0734-2047", bibdate = "Sat Jan 16 19:04:41 MST 1999", bibsource = "Compendex database; http://www.acm.org/pubs/tois/toc.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80", abstract = "The layered multilingual input\slash output (I/O) system we designed, based on typological studies of major-language writing conventions, unifies common features of such conventions to enable international and local utilization. The internationalization layer input module converts keystroke sequences to phonograms and ideograms. The corresponding output module displays position-independent and dependent characters. The localization layer positions language-specific functions outside the structure, integrating them as tables used by finite automaton interpreters and servers to add new languages and code sets without recompilation. The I/O system generates and displays stateful and stateless code sets, enabling interactive language switching. Going beyond POSIX locale model bounds, the system generates ISO 2022, ISO\slash DIS 10646 (1990), and Compound Text, defined for the interchange encoding format in X11 protocols, for basic polyglot text communication and processing. Able to generate multilingual code sets, the I/O system clearly demonstrates that code sets should be selected by applications which have purposes beyond selecting one element from a localization set. Functionality and functions related to text manipulation in an operating system (OS) must also be determined by such applications. A subset of this I/O system was implemented in the X window system as a basic use of X11R5 I/O by supplying basic code set generation and string manipulation to eliminate OS interference. To ensure polyglot string manipulation, the I/O system must clearly be implemented separately from an OS and its limitations.", acknowledgement = ack-nhfb, affiliation = "Waseda Univ", affiliationaddress = "Tokyo, Jpn", classification = "722.4; 723.1; 723.1.1; 723.2; 902.2", journalabr = "ACM Trans Inf Syst", keywords = "Codes (symbols); Computer operating systems; Computer programming languages; Data processing; Data structures; Encoding (symbols); Input output programs; Interactive computer systems; Internationalization; iso 2022 standard; iso/dis 10646 (1990) standard; Linguistics; Localization; Multilingual; Multiwindow; Network protocols; Polyglot text; POSIX locale code; Program interpreters; Standardization; X window systems; X11 protocols", } @Book{Kitalong:1992:ISS, author = "Karla Saari Kitalong and Steven R. Lee and Paul Marzin", title = "Inside {Solaris}: {SunOS} and {OpenWindows}", publisher = pub-NEW-RIDERS, address = pub-NEW-RIDERS:adr, pages = "xviii + 715", year = "1992", ISBN = "1-56205-032-X", ISBN-13 = "978-1-56205-032-0", LCCN = "QA76.8.S86 K57 1992", bibdate = "Thu Jan 04 18:34:01 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95, CDN\$37.95", acknowledgement = ack-nhfb, } @Book{Kosko:1992:PRM, author = "Linda Kosko", title = "{PHIGS} Reference Manual", publisher = pub-ORA, address = pub-ORA:adr, pages = "xv + 1099", year = "1992", ISBN = "0-937175-91-9", ISBN-13 = "978-0-937175-91-0", LCCN = "T385 .P487 1992", bibdate = "Tue Dec 7 10:00:09 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.95", acknowledgement = ack-nhfb, } @Book{Krol:1992:WIU, author = "Ed Krol", title = "The Whole Internet User's Guide \& Catalog", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxiv + 376", year = "1992", ISBN = "1-56592-025-2", ISBN-13 = "978-1-56592-025-5", LCCN = "TK5105.875.I57 K86 1992", bibdate = "Wed Mar 31 17:22:11 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Perhaps the most ambitious of the new crop of books, this one is both a user's guide and a catalog of resources in one. It is aimed at graduate students who want to use the Internet for research.", price = "US\$24.95", acknowledgement = ack-jsq, bookreview = "Link Letter, 5(3):3, Nov.~1992. Matrix News, 2(11), Nov.~1992. MicroTimes, 102:3, Nov.~23, 1992.", } @Manual{Lee:1992:XTB, author = "Ken Lee", key = "Lee", title = "{X} Technical Bibliography", month = nov # " 4", year = "1992", bibdate = "Tue Sep 28 15:39:16 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A good collection of publicly available X window system technical materials. The bibliography is posted periodically on \path|comp.windows.x| and can be obtained by anonymous {\tt ftp} from \path|gatekeeper.dec.com| (in \path|/pub/X11/contrib|) or \path|export.lcs.mit.edu| (in \path|/contrib|)\emdash look for the file \path|Xbibliography|.", acknowledgement = ack-sk, } @Book{Levine:1992:TLT, author = "John R. Levine and Tony Mason and Doug Brown", title = "{\tt lex} \& {\tt yacc}", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xxii + 366", year = "1992", ISBN = "1-56592-000-7", ISBN-13 = "978-1-56592-000-2", LCCN = "QA76.76.U84M37 1992", bibdate = "Tue Jan 12 08:12:11 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @TechReport{MacLachlan:1992:CCL, author = "Rob MacLachlan", title = "{CMU Common Lisp} user's manual", type = "Research paper", number = "CMU-CS-92-161", institution = "School of Computer Science, Carnegie Mellon University", address = "Pittsburgh, PA, USA", pages = "v + 142", month = jul, year = "1992", bibdate = "Mon Nov 18 14:18:28 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Supersedes Technical Reports CMU-CS-87-156 and CMU-CS-91-108.", abstract = "CMU Common Lisp is an implementation of that Common Lisp is [sic] currently supported on MIPS-processor DECstations, SPARC-based workstations from Sun and the IBM RT PC, and other ports are planned. All architectures are supported under Mach, a Berkeley Unix 4.3 binary compatible operating system. The SPARC is also supported under SunOS. The largest single part of this document describes the Python compiler and the programming styles and techniques that the compiler encourages. The rest of the document describes extensions and the implementation dependent choices made in developing this implementation of Common Lisp. We have added several extensions, including a source level debugger, an interface to Unix system calls, a foreign function call interface, support for interprocess communication and remote procedure call, and other features that provide a good environment for developing Lisp code.", acknowledgement = ack-nhfb, annote = "Supported in part by the Defense Advanced Research Projects Agency, Information Science and Technology Office, issued by DARPA/CMO.", keywords = "COMMON LISP (Computer program language); Compilers (Computer programs)", } @Article{Mann:1992:UAM, author = "Daniel Mann", title = "{Unix} and the {Am29000} Microprocessor", journal = j-IEEE-MICRO, volume = "12", number = "1", pages = "23--31", month = feb, year = "1992", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/40.124377", ISSN = "0272-1732 (print), 1937-4143 (electronic)", bibdate = "Mon Apr 7 14:39:59 MDT 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Assessing the performance of AMD's RISC processor in a Unix system", acknowledgement = ack-nhfb, affiliation = "Advanced Micro Devices, Austin, TX, USA", classcodes = "C5220 (Computer architecture); C6150J (Operating systems); C5130 (Microprocessor chips)", classification = "721; 722; 723", corpsource = "Adv. Micro Devices, Austin, TX, USA", journalabr = "IEEE Micro", keywords = "AM29000; Am29000 Microprocessor; C calling sequence; cache support; calls; computer architecture; Computer Operating Systems; Computers, Microcomputer; context switching; Evaluation; floating-point support; interrupt handling; memory access; microprocessor chips; multiprocessor Unix; system; UNIX", treatment = "P Practical", } @MastersThesis{McClaughry:1992:PPT, author = "Patrick E. McClaughry", title = "{PTOPP}: a practical toolset for the optimization of parallel programs", type = "Thesis (M.S.)", number = "CSRD 1225; UILU-ENG-92-8049", school = inst-UIUC-CSRD, address = inst-UIUC-CSRD:adr, pages = "vii + 22", month = may, year = "1992", bibdate = "Fri Aug 30 08:01:51 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "PTOPP is a set of tools that help [sic] a programmer to efficiently optimize scientific programs for a parallel computer. The design of these tools emerged from experiences gained during a successful optimization effort on a set of representative supercomputer applications. The tools which make up PTOPP compliment available UNIX utilities. PTOPP's tools make use of the EMACS editor environment for its help and customization facilities. PTOPP focuses on the two main development phases that were identified as the most time-consuming in the optimization process: the creation of a consistent set of experimental program variants and the interpretation of compilation and performance result.", acknowledgement = ack-nhfb, annote = "Supported in part by the U.S. Department of Energy.", keywords = "Parallel programming (Computer science)", } @Manual{McKusick:1992:BUK, author = "Marshall Kirk McKusick", title = "{4.3 BSD UNIX} kernel internals: implementation, tuning, and networking: {April 6--10, 1992, Engineering 819.188}: lecture notes", publisher = "University of California, Los Angeles, University Extension, Dept. of Business, Engineering and Management, Short Course Program", address = "Los Angeles, CA, USA", pages = "various", year = "1992", LCCN = "QA76.76.O63 F68 1992", bibdate = "Tue Sep 17 05:44:14 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "UNIX (computer file)", } @Manual{McKusick:1992:PBU, author = "Marshall Kirk McKusick", title = "A Preview of {4.4 BSD UNIX} kernel intervals: implementation, tuning, and networking : {October 26--30, 1992, Engineering 819.235}: lecture notes", publisher = "University of California, Los Angeles, University Extension, Dept. of Business, Engineering, and Management, Short Course Program", address = "Los Angeles, CA, USA", pages = "various", year = "1992", bibdate = "Tue Sep 17 05:44:14 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{McMinds:1992:MOM, author = "Donald L. McMinds", title = "Mastering {OSF\slash Motif} Widgets", publisher = pub-AW, address = pub-AW:adr, pages = "xxxii + 731", year = "1992", ISBN = "0-201-56342-8", ISBN-13 = "978-0-201-56342-9", LCCN = "QA76.76.W56 M52 1992", bibdate = "Mon Oct 4 14:06:35 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{McNutt:1992:SAP, author = "Dinah McNutt", title = "System Administration: {POSIX} 1003.7", journal = j-UNIX-REVIEW, volume = "10", number = "9", pages = "34--??", month = sep, year = "1992", CODEN = "UNRED5", ISSN = "0742-3136", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", abstract = "Some standards are likely to succeed because they address pressing issues, offer practical solutions, and are supported by a wide variety of groups Here are three that may soon affect your site.", acknowledgement = ack-nhfb, } @Book{Mikes:1992:XWS, author = "Steven Mikes", title = "{X Window System} Program Design and Development", publisher = pub-AW, address = pub-AW:adr, pages = "viii + 296", year = "1992", ISBN = "0-201-55077-6", ISBN-13 = "978-0-201-55077-1", LCCN = "QA76.76.W56 M56 1992", bibdate = "Mon Oct 4 13:03:32 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$26.95", acknowledgement = ack-nhfb, } @TechReport{Miller:1992:AFMa, author = "Ethan L. Miller and Randy H. Katz", title = "An analysis of file migration in a {Unix} supercomputing environment", type = "Technical Report", number = "UCB/CSD 92/712", institution = "University of California, Berkeley, Computer Science Division", address = "Berkeley, CA, USA", pages = "12", month = nov, year = "1992", LCCN = "TK7885.A1 R46 no.92:712", bibdate = "Fri Aug 30 08:01:51 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; University of California MELVYL catalog.", note = "Supported in part by University Corporation for Atmospheric Research. S9128 Supported in part by NSF", abstract = "The supercomputer center at the National Center for Atmospheric Research (NCAR) migrates large numbers of files to and from its mass storage system (MSS) because there is insufficient space to store them on the Cray supercomputer's local disks. This paper presents an analysis of file migration data collected over two years. The analysis shows that requests to the MSS are periodic, with one day and one week periods. Read requests to the MSS account for the majority of the periodicity; as write requests are relatively constant over the course of a week. Additionally, reads show a far greater fluctuation than writes over a day and week since reads are driven by human users while writes are machine-driven.", acknowledgement = ack-nhfb, annote = "Supported in part by University Corporation for Atmospheric Research. Supported in part by NSF.", keywords = "Supercomputers; UNIX (Computer operating system)", } @TechReport{Miller:1992:AFMb, author = "Ethan L. Miller and Randy H. Katz", title = "An analysis of file migration in a {Unix} supercomputing environment", type = "NASA contractor report", number = "NASA CR-192908", institution = "Computer Science Division (EECS), University of California Berkeley", address = "Berkeley, CA, USA", pages = "??", year = "1992", LCCN = "NAS 1.26:192908 Govt Pubs", bibdate = "Fri Aug 30 08:01:51 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; University of California MELVYL catalog.", note = "Distributed to depository libraries in microfiche. Shipping list no.:93-1028-M. Microfiche. [Washington, DC: National Aeronautics and Space Administration, 1993] 1 microfiche.", series = "NASA contractor report; NASA CR-192908 4004345069", acknowledgement = ack-nhfb, govtdocnumber = "NAS 1.26:192908 0830-H-14 (MF)", keywords = "Computer programs; Supercomputers", } @Book{Mui:1992:XWS, author = "Linda Mui and Eric Pearce", title = "{X Window System} Administrator's Guide for {X11} Release 4 and Release 5", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxiv + 346", year = "1992", ISBN = "0-937175-83-8, 1-56592-052-X (with CD ROM)", ISBN-13 = "978-0-937175-83-5, 978-1-56592-052-1 (with CD ROM)", LCCN = "QA76.76.W56 D44 v.8 1992", bibdate = "Sat Nov 13 11:49:33 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Contains CD ROM with X11R4 and X11R5 source code, plus compiled versions for Sun 3 SunOS 4.1.1, Sun 4 SunOS 4.1.1, DECstation ULTRIX 4.2, and IBM RS/6000 AIX 3.2.", price = "US\$29.95 (without CD ROM), US\$59.95 (with CD ROM)", acknowledgement = ack-nhfb, } @InProceedings{Nagasaka:1992:TCL, author = "Atsushi Nagasaka and Yoshihiro Shintani and Tanji Ito and Hiroshi Gomi and Junichi Takahashi", title = "{Tachyon Common Lisp}: An efficient and portable implementation of {CLtL2}", crossref = "ACM:1992:PAC", pages = "270--277", year = "1992", bibdate = "Wed Aug 6 19:54:46 MDT 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliation = "Oki Electric Industry Co, Ltd", affiliationaddress = "Tokyo, Jpn", classification = "722.4; 723.1; 723.1.1", keywords = "Computer software portability; Gabriel benchmark suit; Interfaces (computer); Lisp (programming language); Lisp optimization techniques; Machine oriented languages; Program compilers; Program processors; Reduced instruction set computing; Tachyon Common Lisp; Testing; UNIX", sponsor = "ACM; SIGPLAN; SIGACT; SIGART", } @Book{Negus:1992:GUD, author = "Chris Negus and Larry Schumer", title = "Guide to the {UNIX} Desktop", publisher = pub-UNIX, address = pub-UNIX:adr, pages = "xxiv + 709", year = "1992", ISBN = "1-56205-114-8", ISBN-13 = "978-1-56205-114-3", LCCN = "QA76.76.O63 N42 1992", bibdate = "Wed Sep 29 13:17:27 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A fine tutorial\slash reference text on SVR4.2.", acknowledgement = ack-sk, } @Book{Newmarch:1992:XWS, author = "Jan Newmarch", title = "The {X Window System} and {Motif}\emdash a Fast Track Approach", publisher = pub-AW, address = pub-AW:adr, pages = "xiv + 221", year = "1992", ISBN = "0-201-53931-4", ISBN-13 = "978-0-201-53931-8", LCCN = "QA76.76.W56 N59 1992", bibdate = "Mon Oct 4 14:08:21 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Nye:1992:XPM, author = "Adrian Nye", title = "{Xlib} Programming Manual", volume = "1", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "824", month = jul, year = "1992", ISBN = "1-56592-002-3", ISBN-13 = "978-1-56592-002-6", LCCN = "QA76.76.W56N93 1990", bibdate = "Mon Nov 20 10:48:26 1995", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$34.95", URL = "http://www.oreilly.com/catalog/v1", acknowledgement = ack-nhfb, } @Book{Nye:1992:XPR, author = "Adrian Nye", title = "{X} Protocol Reference Manual", volume = "0", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", year = "1992", ISBN = "1-56592-008-2", ISBN-13 = "978-1-56592-008-8", LCCN = "QA76.76.W56 X215 1990", bibdate = "Fri Dec 10 13:42:12 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Nye:1992:XTI, author = "Adrian Nye and Tim O'Reilly", title = "{X} Toolkit Intrinsics Programming Manual: {Motif} Edition", volume = "4M", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "674", month = aug, year = "1992", ISBN = "1-56592-013-9", ISBN-13 = "978-1-56592-013-2", bibdate = "Thu Dec 16 09:46:22 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Olczak:1992:KSU, author = "Anatole Olczak", title = "The {Korn} Shell User and Programming Manual", publisher = pub-AW, address = pub-AW:adr, pages = "xiv + 384", year = "1992", ISBN = "0-201-56548-X", ISBN-13 = "978-0-201-56548-5", LCCN = "QA76.73 K67 O43 1992", bibdate = "Wed Sep 29 10:59:10 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "An everything-you-want-to-know-about-Korn-Shell book.", acknowledgement = ack-sk, } @Book{Pajari:1992:WUD, author = "George Pajari", title = "Writing {UNIX} Device Drivers", publisher = pub-AW, address = pub-AW:adr, pages = "xii + 323", year = "1992", ISBN = "0-201-52374-4", ISBN-13 = "978-0-201-52374-4", LCCN = "QA76.76.D49 P35 1992", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "An easy-to-understand book covering character, block, terminal, and stream drivers.", acknowledgement = ack-sk, } @Article{Pausch:1992:LLS, author = "Randy Pausch and Matthew Conway and Robert DeLine", title = "Lessons Learned from {SUIT}, the {Simple User Interface Toolkit}", journal = j-TOIS, volume = "10", number = "4", pages = "320--344", month = oct, year = "1992", CODEN = "ATISET", ISSN = "1046-8188", ISSN-L = "0734-2047", bibdate = "Sat Jan 16 19:04:41 MST 1999", bibsource = "Compendex database; http://www.acm.org/pubs/tois/toc.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80", abstract = "In recent years, the computer science community has realized the advantages of GUIs (Graphical User Interfaces). Because high-quality GUIs are difficult to build, support tools such as UIMSs, UI Toolkits, and Interface Builders have been developed. Although these tools are powerful, they typically make two assumptions: first, that the programmer has some familiarity with the GUI model, and second, that he is willing to invest several weeks becoming proficient with the tool. These tools typically operate only on specific platforms, such as DOS, the Macintosh, or UNIX/X-windows. The existing tools are beyond the reach of most undergraduate computer science majors, or professional programmers who wish to quickly build GUIs without investing the time to become specialists in GUI design. For this class of users, we developed SUIT, the Simple User Interface Toolkit. SUIT is an attempt to distill the fundamental components of an interface builder and GUI toolkit, and to explain those concepts with the tool itself, all in a short period of time. We have measured that college juniors with no previous GUI programming experience can use SUIT productively after less than three hours. SUIT is a C subroutine library which provides an external control UIMS, an interactive layout editor, and a set of standard `widgets,' such as sliders, buttons, and check boxes. SUIT-based applications run transparently across the Macintosh, DOS, and UNIX/X platforms. SUIT has been exported to hundreds of external sites on the Internet. This paper describes SUIT's architecture, the design decisions we made during its development, and the lessons we learned from extensive observations of over 120 users.", acknowledgement = ack-nhfb, affiliation = "Univ of Virginia", affiliationaddress = "Charlottesville, VA, USA", classification = "461.4; 722.4; 723.1; 723.1.1; 723.2; 723.5", journalabr = "ACM Trans Inf Syst", keywords = "C (programming language); Computer graphics; Computer operating systems; Computer programming; Computer science; Computer software; Computer software portability; Graphical user interfaces; Human engineering; Interactive computer systems; Learnability; Learning systems; Pedagogy; Rapid prototyping; Simple user interface toolkit (suit); Software engineering; Software tools; User interface toolkit; User interfaces", wwwauthor = "R. Pausch and M. Conway and R. Deline", } @Book{Plauger:1992:SCL, author = "P. J. Plauger", title = "The {Standard C} Library", publisher = pub-PH, address = pub-PH:adr, pages = "xiv + 498", year = "1992", ISBN = "0-13-838012-0", ISBN-13 = "978-0-13-838012-0", LCCN = "QA76.73.C15 P563 1991", bibdate = "Mon Oct 4 15:22:04 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Plauger:1992:UVM, author = "P. J. Plauger and Marty Leisner and Tim Berens and Andy Levinson", title = "{UNIX} Versus {MS-DOS} --- Some Letters", journal = j-CUJ, volume = "10", type = "Letter", number = "6", pages = "130--??", month = jun, year = "1992", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "See additional comments, November 1992, p.~140; April 1993, p.~126.", acknowledgement = ack-nhfb, } @Article{Pugh:1992:SFS, author = "Kenneth Pugh", title = "Setting File Sizes Under {UNIX}", journal = j-CUJ, volume = "10", type = "Questions and Answers", number = "2", pages = "109--??", month = feb, year = "1992", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Reiss:1992:XWI, author = "Levi Reiss and Joseph Radin", title = "{X Window} Inside \& Out", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xxv + 698", year = "1992", ISBN = "0-07-881796-X", ISBN-13 = "978-0-07-881796-0", LCCN = "QA76.76.W56 R45 1992", bibdate = "Mon Oct 4 12:03:39 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A recent text on using and programming X Windows.", acknowledgement = ack-sk, } @Book{Riekan:1992:AUN, author = "Bill Riekan and Lyle Weiman", title = "Adventures in {UNIX} Network Applications Programming", publisher = pub-WILEY-INTERSCIENCE, address = pub-WILEY-INTERSCIENCE:adr, pages = "xv + 448", year = "1992", ISBN = "0-471-52858-7", ISBN-13 = "978-0-471-52858-6", LCCN = "QA76.76.O63 R546 1992", bibdate = "Wed Sep 29 16:33:53 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A fine book on network programming.", acknowledgement = ack-sk, } @Book{Roberts:1992:UDG, author = "Ralph Roberts and Mark Boyd", title = "{UNIX} Desktop Guide to {Emacs}", publisher = pub-HAYDEN, address = pub-HAYDEN:adr, pages = "xxiii + 504", year = "1992", ISBN = "0-672-30171-7", ISBN-13 = "978-0-672-30171-1", LCCN = "QA76.76.T49 R62 1992", bibdate = "Sun Mar 6 17:32:25 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$27.95", acknowledgement = ack-nhfb, } @Book{Roberts:UDG92, author = "Ralph Roberts and Mark Boyd", title = "{UNIX} Desktop Guide to {Emacs}", publisher = pub-HAYDEN, address = pub-HAYDEN:adr, pages = "xxiii + 504", year = "1992", ISBN = "0-672-30171-7", ISBN-13 = "978-0-672-30171-1", LCCN = "QA76.76.T49 R62 1992", bibdate = "Sun Mar 6 17:32:25 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$27.95", acknowledgement = ack-nhfb, } @Book{Rosenberry:1992:UD, author = "Ward Rosenberry", title = "Understanding {DCE}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxv + 233", month = oct, year = "1992", ISBN = "1-56592-005-8", ISBN-13 = "978-1-56592-005-7", LCCN = "QA76.9.D5 R67 1992", bibdate = "Mon Jan 3 18:11:50 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$24.95", acknowledgement = ack-nhfb, } @Article{Rosenblum:1992:DIL, author = "Mendel Rosenblum and John K. Ousterhout", title = "The Design and Implementation of a Log-Structured File System", journal = j-TOCS, volume = "10", number = "1", pages = "26--52", month = feb, year = "1992", CODEN = "ACSYEC", ISSN = "0734-2071", bibdate = "Wed Jan 13 18:36:53 MST 1999", bibsource = "http://www.acm.org/pubs/contents/journals/tocs/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80/pubs/citations/journals/tocs/1992-10-1/p26-rosenblum/", abstract = "This paper presents a new technique for disk storage management called a {\em log-structured file system}. A log-structured file system writes all modifications to disk sequentially in a log-like structure, thereby speeding up both file writing and crash recovery. The log is the only structure on disk; it contains indexing information so that files can be read back from the log efficiently. In order to maintain large free areas on disk for fast writing, we divide the log into{\em segments\/}and use a {\em segment cleaner\/} to compress the live information from heavily fragmented segments. We present a series of simulations that demonstrate the efficiency of a simple cleaning policy based on cost and benefit. We have implemented a prototype log-structured file system called Sprite LFS; it outperforms current Unix file systems by an order of magnitude for small-file writes while matching or exceeding Unix performance for reads and large writes. Even when the overhead for cleaning is included, Sprite LFS can use 70\% of the disk bandwidth for writing, whereas Unix file systems typically can use only 5-10\%.", acknowledgement = ack-nhfb, keywords = "algorithms; design; measurement; performance", subject = "{\bf D.4.2} Software, OPERATING SYSTEMS, Storage Management, Secondary storage. {\bf D.4.2} Software, OPERATING SYSTEMS, Storage Management, Allocation/deallocation strategies. {\bf D.4.5} Software, OPERATING SYSTEMS, Reliability, Checkpoint/restart. {\bf D.4.8} Software, OPERATING SYSTEMS, Performance, Measurements. {\bf D.4.8} Software, OPERATING SYSTEMS, Performance, Simulation. {\bf D.4.8} Software, OPERATING SYSTEMS, Performance, Operational analysis. {\bf H.2.2} Information Systems, DATABASE MANAGEMENT, Physical Design, Recovery and restart. {\bf H.3.2} Information Systems, INFORMATION STORAGE AND RETRIEVAL, Information Storage, File organization.", } @Book{Scheifler:1992:XWS, author = "Robert W. Scheifler and James Gettys and Jim Flowers and David Rosenthal", title = "{X Window System}: The Complete Reference to {Xlib}, {X} Protocol, {ICCCCM}, {XLFD}, {X} Version 11, Release 5", publisher = pub-DP # " and " # pub-PH, address = pub-DP:adr # " and " # pub-PH:adr, edition = "Third", pages = "xxviii + 1000", year = "1992", ISBN = "1-55558-088-2 (DP), 0-13-971201-1 (PH)", ISBN-13 = "978-1-55558-088-9 (DP), 978-0-13-971201-2 (PH)", LCCN = "QA76.76.W56 S34 1992", bibdate = "Mon Oct 4 11:57:43 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.95", acknowledgement = ack-nhfb, } @Book{Schoonover:1992:GEU, author = "Michael A. Schoonover and John S. Bowie and William R. Arnold", title = "{GNU} Emacs: {UNIX} Text Editing and Programming", publisher = pub-AW, address = pub-AW:adr, pages = "xxvii + 610", year = "1992", ISBN = "0-201-56345-2", ISBN-13 = "978-0-201-56345-0", LCCN = "QA76.76.T49S36", bibdate = "Mon Oct 4 11:57:48 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Schoonover:GEU92, author = "Michael A. Schoonover and John S. Bowie and William R. Arnold", title = "{GNU} Emacs: {UNIX} Text Editing and Programming", publisher = pub-AW, address = pub-AW:adr, pages = "610", year = "1992", ISBN = "0-201-56345-2", ISBN-13 = "978-0-201-56345-0", LCCN = "QA76.76.T49S36", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", } @Book{Shirley:1992:GWD, author = "John Shirley", title = "Guide to Writing {DCE} Applications", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxv + 251", month = jul, year = "1992", ISBN = "1-56592-004-X", ISBN-13 = "978-1-56592-004-0", LCCN = "QA76.9.D5 S5 1992", bibdate = "Mon Jan 3 18:16:54 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @Book{Smith:1992:DXC, author = "Jerry D. Smith", title = "Designing {X} clients with {Xt\slash Motif}", publisher = pub-MORGAN-KAUFMANN, address = pub-MORGAN-KAUFMANN:adr, pages = "xvi + 341", year = "1992", ISBN = "1-55860-255-0", ISBN-13 = "978-1-55860-255-7", LCCN = "QA76.76.W56 S56 1992", bibdate = "Sun Jul 10 01:21:30 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Soto:1992:TCC, author = "Antoni Soto and Sebastia Vila and Alvar Vinacua", title = "A toolkit for constructing command driven graphics programs", journal = j-COMPUTERS-AND-GRAPHICS, volume = "16", number = "4", pages = "375--382", month = "Winter", year = "1992", CODEN = "COGRD2", ISSN = "0097-8493", bibdate = "Wed Feb 5 07:22:58 MST 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliation = "Universitat Politecnica de Catalunya", affiliationaddress = "Barcelona, Spain", classification = "723.1", journalabr = "Comput Graphics (Pergamon)", keywords = "Command driven graphics applications; Computer programming; Computer software; Demonstrations; Design aids; Interactive computer graphics; Program interpreters; Software toolkit; UNIX; User interfaces", } @Book{Southerton:1992:MU, author = "Alan Southerton", title = "Modern {UNIX}", publisher = pub-WILEY-INTERSCIENCE, address = pub-WILEY-INTERSCIENCE:adr, pages = "xvii + 308", year = "1992", ISBN = "0-471-54916-9", ISBN-13 = "978-0-471-54916-1", LCCN = "QA76.76.O63 S65497 1993", bibdate = "Wed Sep 29 13:30:18 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Covering selected topics like shells, X Windows, networking.", acknowledgement = ack-sk, } @Article{Sovereign:1992:PPT, author = "John Sovereign", title = "The Power of {Posix} Thinking", journal = j-UNIX-WORLD, volume = "9", number = "7", pages = "93--??", day = "1", month = jul, year = "1992", ISSN = "0739-5922", bibdate = "Sat May 25 15:28:26 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", abstract = "The purpose of Posix, the portable operating system interface for computer environments, is to support application portability. This tutorial will show you how to make porting to Posix simple.", acknowledgement = ack-nhfb, } @Manual{Spurgeon:1992:NRL, author = "Charles Spurgeon", key = "Spurgeon", title = "Network Reading List: {TCP}\slash{IP}, {UNIX} and Ethernet", month = feb, year = "1992", bibdate = "Tue Sep 28 15:44:01 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "This annotated list describes those items that cover the subject areas well. It is obtainable by anonymous {\tt ftp} from \path|ftp.uu.net| (in \path|/inet/doc|).", acknowledgement = ack-sk, } @Book{Sterling:1992:HC, author = "Bruce Sterling", title = "Hacker Crackdown", publisher = pub-BANTAM, address = pub-BANTAM:adr, pages = "xiv + 328", year = "1992", ISBN = "0-553-56370-X", ISBN-13 = "978-0-553-56370-2", LCCN = "HV6773.2 .S74 1992", bibdate = "Fri Apr 30 10:45:46 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Also available by anonymous ftp from \path=mrcnext.cso.uiuc.edu= (as \path=/etext/etext94/hack11.zip)=. See also \cite{Stoll:1990:CET}.", price = "US\$23.00", acknowledgement = ack-sk, } @Book{Stevens:1992:APU, author = "Richard Stevens", title = "Advanced Programming in the {UNIX} Environment", publisher = pub-AW, address = pub-AW:adr, pages = "xviii + 744", year = "1992", ISBN = "0-201-56317-7", ISBN-13 = "978-0-201-56317-7", LCCN = "QA76.76.O63 S754 1992", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "{\em Highly recommended}. A going-to-be classic on how programs work under {UNIX} \ldots{} The source codes and errata list are obtainable by anonymous {\tt ftp} from \path|ftp.uu.net| (in \path|/published/books|).", price = "US\$52.25", acknowledgement = ack-sk, } @Book{Stevens:APU92, author = "W. Richard Stevens", title = "Advanced Programming in the {UNIX} Environment", publisher = pub-AW, address = pub-AW:adr, pages = "xviii + 744", year = "1992", ISBN = "0-201-56317-7", ISBN-13 = "978-0-201-56317-7", LCCN = "QA76.76.O63 S754 1992", bibdate = "Sat Apr 27 07:12:16 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "The source codes and errata list are obtainable by anonymous {\tt ftp} from \path|ftp.uu.net| (in \path|/published/books|).", price = "US\$52.25", } @Book{Talbott:1992:PRM, author = "Steve Talbott", title = "{PEX}lib Reference Manual", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxv + 551", year = "1992", ISBN = "1-56592-029-5", ISBN-13 = "978-1-56592-029-3", LCCN = "QA76.76.W56 P4 1992", bibdate = "Tue Dec 7 10:02:58 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$34.95", acknowledgement = ack-nhfb, } @Article{Thirion:1992:EUC, author = "Bernard Thirion", title = "{Edison}, a {Unix} and {C} friendly {Rete} based production system", journal = j-SIGPLAN, volume = "27", number = "1", pages = "75--84", month = jan, year = "1992", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:16:16 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Thomborson:1992:VSD, author = "Clark Thomborson", title = "The {V.42bis} Standard for Data-Compressing Modems", journal = j-IEEE-MICRO, volume = "12", number = "5", pages = "41--53", month = oct, year = "1992", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/40.166712", ISSN = "0272-1732 (print), 1937-4143 (electronic)", bibdate = "Mon Apr 7 14:39:59 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Examining practical, algorithmic, and marketing aspects of this standard uncovers no serious flaws in its specification", acknowledgement = ack-nhfb, classcodes = "B6220W (Other stations); B6140 (Signal processing and detection); C5630 (Networking equipment); C6130 (Data handling techniques)", corpsource = "Minnesota Univ., Duluth, MN, USA", keywords = "Berkeley Unix Compress; CCITT V.42bis standard; data compression; data-compressing; Lempel--Ziv--Welch algorithm; modems; standards; text compression; utility", treatment = "P Practical; X Experimental", } @Article{Tipton:1992:RPC, author = "Bob Tipton", title = "{RS\slash 6000}: {POSIX-tively} Confusing", journal = j-NEWS-3X-400, volume = "????", number = "????", pages = "177--180", month = jun, year = "1992", ISSN = "1040-6093", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "POSIX is driving computing into the next decade and beyond. Discover what it's all about and how it can and will affect you.", acknowledgement = ack-nhfb, } @Book{Todino:1992:MUU, author = "Grace Todino and Tim O'Reilly", title = "Managing {UUCP} and Usenet", publisher = pub-ORA, address = pub-ORA:adr, edition = "Tenth", pages = "368", month = jan, year = "1992", ISBN = "0-937175-93-5", ISBN-13 = "978-0-937175-93-4", LCCN = "QA76.76 O63 T63", bibdate = "Mon Oct 4 11:58:15 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Well written on the setting-up and the maintenance of UUCP and Netnews.", price = "US\$27.95", acknowledgement = ack-sk, } @Book{Tondo:1992:MMG, author = "Clovis L. Tondo and Andrew Nathanson and Eden Yount", title = "Mastering {MAKE}\emdash {A} Guide to Building Programs on {DOS} and {UNIX} Systems", publisher = pub-PH, address = pub-PH:adr, pages = "x + 143", year = "1992", ISBN = "0-13-554619-2", ISBN-13 = "978-0-13-554619-2", LCCN = "QA76.76.U84 T66 1992", bibdate = "Fri Jul 22 10:34:17 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Valley:1992:CPU, author = "John Valley", title = "{C} Programming for {UNIX}", publisher = pub-HWS, address = pub-HWS:adr, pages = "xxvii + 644", year = "1992", ISBN = "0-672-48518-4", ISBN-13 = "978-0-672-48518-3", LCCN = "QA76.73.C15 V35 1992", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A comprehensive book on C programming on {UNIX} systems.", acknowledgement = ack-sk, } @Book{Valley:1992:UDG, author = "John Valley", title = "{UNIX} Desktop Guide to the {Korn} Shell", publisher = pub-HWS, address = pub-HWS:adr, pages = "xxxii + 455", year = "1992", ISBN = "0-672-48513-3", ISBN-13 = "978-0-672-48513-8", LCCN = "QA76.73.K67V35 1992", bibdate = "Fri Apr 30 10:42:51 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "This one is, in my humble opinion, even better and easier to read than the authoritative work by Korn and Bolsky \cite{Bolsky:1989:KSC}.", acknowledgement = ack-sk, } @Book{Waite:1992:WGU, author = "Mitchell Waite and Donald Martin and Stephen Prata", title = "The Waite Group's {UNIX} System {V} Primer", publisher = pub-HAYDEN, address = pub-HAYDEN:adr, edition = "Second", pages = "xxv + 564", year = "1992", ISBN = "0-672-30194-6", ISBN-13 = "978-0-672-30194-0", LCCN = "QA76.76.O63 W35 1992", bibdate = "Wed Jun 29 20:31:01 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "{\em Highly recommended}. A very very good hand-holding tutorial-type book for {UNIX}\slash {SVR4}.", price = "US\$29.95", acknowledgement = ack-sk, } @Book{Wall:1992:PP, author = "Larry Wall and Randal L. Schwartz", title = "Programming Perl", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxv + 454", year = "1992", ISBN = "0-937175-64-1", ISBN-13 = "978-0-937175-64-4", LCCN = "QA76.73.P43 W35 1990", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "The authoritative guide to {\tt perl}\emdash the programming language for any serious {UNIX} users.", price = "US\$29.95", acknowledgement = ack-sk, } @Article{Walls:1992:PVT, author = "Keith Walls", title = "{POSIX} and {VMS}: {A} Technical View", journal = j-VAX-PROF, volume = "14", number = "5", pages = "27--29", month = sep, year = "1992", CODEN = "VAXPEN", ISSN = "8750-9628", bibdate = "Sat Oct 28 08:41:58 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Analyzing The Differences And The Compromises.", acknowledgement = ack-nhfb, } @Article{Wang:1992:UT, author = "H. Wang and A. Kushniruk", title = "The {UNIX} Tutor", journal = j-LECT-NOTES-COMP-SCI, volume = "608", pages = "317--??", year = "1992", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", bibdate = "Mon May 13 11:46:24 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Weerawarana:1992:PCG, author = "Sanjiva Weerawarana and Paul S. Wang", title = "A Portable Code Generator for {CRAY FORTRAN}", journal = j-TOMS, volume = "18", number = "3", pages = "241--255", month = sep, year = "1992", CODEN = "ACMSCU", ISSN = "0098-3500 (print), 1557-7295 (electronic)", bibdate = "Mon Aug 26 10:51:12 MDT 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://doi.acm.org/10.1145/131766.131767; http://www.acm.org/pubs/citations/journals/toms/1992-18-3/p241-weerawarana/", abstract = "One way to combine the powers of symbolic computing with numeric computing is to automatically derive and produce numeric code. This approach has important applications in science and engineering. Once the desired formulas and procedures are derived in a symbolic manipulation system, they can be translated into a target numeric language by a {\em code generator}. GENCRAY is a code generator written in the C language for portability. GENCRAY defines a LISP-style input language that is translated into either FORTRAN 77 or CRAY FORTRAN. By defining its own input syntax, GENCRAY becomes a free-standing code translator that can be made to work with any symbolic manipulation system. GENCRAY is portable to any computer system with a standard C compiler. Input to GENCRAY can come from a file or directly from a symbolic system through a pipe. On UNIX systems with Berkeley networking, GENCRAY also runs as a network server. The input syntax is customizable to allow both Common and Franz LISP input styles. In addition to generating easily vectorizable CRAY FORTRAN code, GENCRAY also provides high-level, easy-to-use parallel programming macros to produce parallel code for the multiprocessor CRAY systems. The features, applications, usage, and implementation of GENCRAY are described. Techniques for producing parallel codes are discussed and illustrated by a substantial example contained in the Appendix.", acknowledgement = ack-nhfb, affiliation = "Kent State Univ", affiliationaddress = "Kent, OH, USA", classification = "723.1; 723.1.1", journalabr = "ACM Trans Math Software", keywords = "algorithms; Automatic code generation; C (programming language); Codes (symbols); Computational methods; Computer programming; Computer programming languages; Computer software portability; design; FORTRAN (programming language); Macros; Parallel code generation; Parallel processing systems; Program processors; Program translators; Software package GENCRAY; Supercomputers; Symbolic computation; theory", subject = "{\bf D.3.4}: Software, PROGRAMMING LANGUAGES, Processors, Code generation. {\bf D.1.2}: Software, PROGRAMMING TECHNIQUES, Automatic Programming. {\bf D.1.3}: Software, PROGRAMMING TECHNIQUES, Concurrent Programming. {\bf G.1.0}: Mathematics of Computing, NUMERICAL ANALYSIS, General. {\bf I.1.4}: Computing Methodologies, ALGEBRAIC MANIPULATION, Applications. {\bf D.3.2}: Software, PROGRAMMING LANGUAGES, Language Classifications, FORTRAN. {\bf C.1.2}: Computer Systems Organization, PROCESSOR ARCHITECTURES, Multiple Data Stream Architectures (Multiprocessors), Array and vector processors. {\bf D.3.2}: Software, PROGRAMMING LANGUAGES, Language Classifications, C.", } @InProceedings{Willcox:1992:TCS, author = "D. A. Willcox and S. R. Bunch", title = "A Tool for Covert Storage Channel Analysis of the {UNIX} Kernel", crossref = "NIST:1992:NCS", pages = "697--706", year = "1992", bibdate = "Sat Dec 26 17:01:46 1998", bibsource = "http://www.cl.cam.ac.uk/~fapp2/steganography/bibliography; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.cl.cam.ac.uk/~fapp2/steganography/bibliography/021148.html", acknowledgement = ack-nhfb, keywords = "information hiding; steganography", } @Article{Yang:1992:PIA, author = "Wuu Yang and Susan Horwitz and Thomas Reps", title = "A program integration algorithm that accommodates semantics-preserving transformations", journal = j-TOSEM, volume = "1", number = "3", pages = "310--354", month = jul, year = "1992", CODEN = "ATSMER", ISSN = "1049-331X (print), 1557-7392 (electronic)", bibdate = "Fri Apr 20 08:21:35 MDT 2001", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org/pubs/articles/journals/tosem/1992-1-3/p310-yang/p310-yang.pdf; http://www.acm.org/pubs/citations/journals/tosem/1992-1-3/p310-yang/", abstract = "Given a program {\em Base\/} and two variants, {\em A\/} and {\em B}, each created by modifying separate copies of {\em Base}, the goal of program integration is to determine whether the modifications interfere, and if they do not, to create an integrated program that includes both sets of changes as well as the portions of {\em Base\/} preserved in both variants. Text-based integration techniques, such as the one used by the Unix {\em diff 3\/} utility, are obviously unsatisfactory because one has no guarantees about how the execution behavior of the integrated program relates to the behaviors of {\em Base}, {\em A}, and {\em B}. The first program-integration algorithm to provide such guarantees was developed by Horwitz et al.[13]. However, a limitation of that algorithm is that it incorporates no notion of semantics-preserving transformations. This limitation causes the algorithm to be overly conservative in its definition of interference. For example, if one variant changes the {\em way\/} a computation is performed (without changing the values computed) while the other variant adds code that uses the result of the computation, the algorithm would classify those changes as interfering. This paper describes a new integration algorithm that is able to accommodate semantics-preserving transformations.", acknowledgement = ack-nhfb, generalterms = "Algorithms; Design", keywords = "coarsest partition; control dependence; data dependence; data-flow analysis; flow dependence; program dependence graph; program integration; program representation graph; static-single-assignment form", subject = "Software --- Software Engineering --- Design Tools and Techniques (D.2.2): {\bf Programmer workbench**}; Software --- Software Engineering --- Coding Tools and Techniques (D.2.3): {\bf Program editors}; Software --- Software Engineering --- Programming Environments (D.2.6); Software --- Software Engineering --- Distribution, Maintenance, and Enhancement (D.2.7): {\bf Enhancement**}; Software --- Software Engineering --- Distribution, Maintenance, and Enhancement (D.2.7): {\bf Restructuring, reverse engineering, and reengineering}; Software --- Software Engineering --- Distribution, Maintenance, and Enhancement (D.2.7): {\bf Version control}; Software --- Software Engineering --- Management (D.2.9): {\bf Software configuration management}; Software --- Programming Languages --- Processors (D.3.4): {\bf Optimization}; Software --- Programming Languages --- Processors (D.3.4): {\bf Compilers}; Software --- Programming Languages --- Processors (D.3.4): {\bf Interpreters}", } @Book{Young:1992:OOP, author = "Douglas A. Young", title = "Object-oriented programming with {C++} and {OSF\slash Motif}", publisher = pub-PH, address = pub-PH:adr, pages = "xi + 434", year = "1992", ISBN = "0-13-630252-1", ISBN-13 = "978-0-13-630252-0", LCCN = "QA76.64 .Y68 1992", bibdate = "Mon Oct 4 13:58:17 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Young:1992:XWS, author = "Douglas A. Young and John A. Pew", title = "The {X Window System}\emdash Pro\-gram\-ming and Applications with {Xt}\emdash {OPEN LOOK} Edition", publisher = pub-PH, address = pub-PH:adr, pages = "x + 589", year = "1992", ISBN = "0-13-982992-X", ISBN-13 = "978-0-13-982992-5", LCCN = "QA76.76.W56 Y67 1992", bibdate = "Mon Oct 4 11:58:32 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Yourdon:1992:DFA, author = "Edward Yourdon", title = "Decline and Fall of the American Programmer", publisher = pub-YOURDON, address = pub-YOURDON:adr, pages = "xvi + 352", year = "1992", ISBN = "0-13-203670-3", ISBN-13 = "978-0-13-203670-2", LCCN = "QA76.6 .Y64 1992", bibdate = "Wed Jun 29 22:03:25 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Despite the title, this is a very good book on the technical and management aspects of software development \ldots{}.", acknowledgement = ack-sk, } @Book{Adobe:1993:PDP, author = "{Adobe Systems Incorporated}", title = "Programming the {Display PostScript} System with {X}", publisher = pub-AW, address = pub-AW:adr, year = "1993", ISBN = "0-201-62203-3", ISBN-13 = "978-0-201-62203-4", LCCN = "QA76.73.P67 D57 1993", bibdate = "Sat Aug 27 11:21:42 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @Book{Andreasson:1993:GSU, author = "Torbj{\"o}rn Andr{\'e}asson and Jan Skansholm", title = "Getting started with {UNIX} and {X}", publisher = pub-AW, address = pub-AW:adr, pages = "xi + 271", year = "1993", ISBN = "0-201-63170-9", ISBN-13 = "978-0-201-63170-8", LCCN = "QA76.76.O63 A5347 1993", bibdate = "Wed Oct 20 19:06:24 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Anonymous:1993:HEB, author = "Anonymous", title = "{HP}'s early bid to open its venerable {MPE} operating system with {Posix} hooks is off to a rough start", journal = j-COMPUTERWORLD, volume = "27", number = "15", pages = "10--??", month = apr, year = "1993", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Periodical{Anonymous:1993:HU, key = "{HP-UX}", title = "{HP-UX}", publisher = "Interex (the International Association of Hewlett--Packard Computer Users)", address = "Sunnyvale, CA, USA", year = "1993", ISSN = "1075-0703", LCCN = "QA76.8.H48 H63", bibdate = "Wed Oct 5 06:18:05 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, remark = "Interex went bankrupt in Fall 2005.", subject = "Hewlett--Packard computers; Periodicals", } @Article{Anonymous:1993:HUG, author = "Anonymous", title = "{HP\slash UX} Gains Super Powers", journal = j-INFORMATION-WEEK, volume = "??", number = "423", pages = "14--??", month = may, year = "1993", CODEN = "INFWE4", ISSN = "8750-6874", ISSN-L = "1938-3371", bibdate = "Fri Aug 23 10:08:37 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "HP's deal with Convex could bring its Unix applications to supercomputers.", acknowledgement = ack-nhfb, } @Article{Anonymous:1993:MR, author = "Anonymous", title = "Media Reviews", journal = j-COMPUTER, volume = "26", number = "6", pages = "134--??", month = jun, year = "1993", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Tue May 14 16:20:44 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Unix publications", acknowledgement = ack-nhfb, } @Article{Anonymous:1993:NB, author = "Anonymous", title = "News Briefs", journal = j-COMP-DESIGN, volume = "32", number = "4", pages = "10--??", month = apr, year = "1993", CODEN = "CMPDAM", ISSN = "0010-4566", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Viewlogic acquires Quad Design \ldots{} DEC refocuses framework strategy \ldots{} Committee to standardize 32-bit PC tools \ldots{} POSIX pulling more realtime OS vendors into the fold \ldots{} PREP Corp releases first suite of FPGA and complex-PLD benchmarks \ldots{} Electronic documentation used to support language based design \ldots{} New association to back PowerOpen.", acknowledgement = ack-nhfb, } @Article{Anonymous:1993:PCL, author = "Anonymous", title = "{POSIX} Cracks The Lock On {MVS}", journal = j-DATAMATION, volume = "39", number = "7", pages = "47--??", month = apr, year = "1993", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", abstract = "The POSIX version of MVS will open up the ability to write a single application that runs on IBM mainframes, UNIX, VMS and other POSIX platforms. However, pure POSIX apps will have limited functionally and will be less interoperable than DCE apps.", acknowledgement = ack-nhfb, } @Article{Anonymous:1993:PRM, author = "Anonymous", title = "{POSIX} realtime may be long time coming", journal = j-COMP-DESIGN, volume = "32", number = "7", pages = "38--??", month = jul, year = "1993", CODEN = "CMPDAM", ISSN = "0010-4566", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", acknowledgement = ack-nhfb, } @Article{Anonymous:1993:RKP, author = "Anonymous", title = "Real-time {OS} keeps up with {POSIX} standard", journal = j-EDN, volume = "38", number = "8", pages = "110--??", month = apr, year = "1993", CODEN = "EDNSBH", ISSN = "0012-7515, 0364-6637", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Anonymous:1993:S, author = "Anonymous", title = "Standards", journal = j-COMPUTER, volume = "26", number = "11", pages = "81--??", month = nov, year = "1993", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Posix.", acknowledgement = ack-nhfb, } @Article{Anonymous:1993:SA, author = "Anonymous", title = "State of the Art", journal = j-EMBED-SYS-PROG, volume = "6", number = "3", pages = "73--??", month = mar, year = "1993", CODEN = "EYPRE4", ISSN = "1040-3272", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Real-Time POSIX.", acknowledgement = ack-nhfb, } @Article{Anonymous:1993:WNS, author = "Anonymous", title = "{Windows NT} Supports {Posix}, but Does It Matter?", journal = j-BYTE, volume = "18", number = "12", pages = "142--??", month = nov, year = "1993", CODEN = "BYTEDJ", ISSN = "0360-5280", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{ANSI:1993:ISI, author = "{American National Standards Institute}", title = "{IEEE} standard for information technology: {Portable Operating System Interface (POSIX)} : part 2, shell and utilities", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xvii + 1195", day = "17", month = sep, year = "1993", ISBN = "1-55937-255-9", ISBN-13 = "978-1-55937-255-8", LCCN = "QA76.76.O63I58 1993", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Two volumes. IEEE Std 1003.2-1992 (includes IEEE Std 1003.2a-1992). Approved September 17, 1992, IEEE Standards Board. Approved April 5, 1993, American National Standards Institute. The primary purpose of this standard is to define a standard interface and environment for application programs that require the services of a `shell' command language interpreter and a set of common utility programs.", acknowledgement = ack-nhfb, keywords = "operating systems (computers) -- standards -- United States; software compatibility -- standards -- United States; utilities (computer programs) -- standards -- United States", } @InProceedings{Archer:1993:TPS, author = "B. Archer", title = "Towards a {POSIX} Standard for Software Administration", crossref = "Anonymous:1993:SAC", pages = "67--79", year = "1993", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Arnold:1993:USP, author = "Derek Arnold", title = "{UNIX} Security\emdash {A} Practical Tutorial", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xix + 386", year = "1993", ISBN = "0-07-002560-6", ISBN-13 = "978-0-07-002560-8", LCCN = "QA76.76.O63 A758", bibdate = "Wed Sep 29 13:50:38 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Covering the tools and techniques for managing and controlling security.", acknowledgement = ack-sk, } @Book{Barak:1993:MDO, author = "Amnon Barak and Shai Guday and Richard G. Wheeler", title = "The {MOSIX} distributed operating system: load balancing for {UNIX}", volume = "672", publisher = pub-SV, address = pub-SV:adr, pages = "x + 221", year = "1993", CODEN = "LNCSD9", ISBN = "3-540-56663-5 (Berlin), 0-387-56663-5 (New York)", ISBN-13 = "978-3-540-56663-2 (Berlin), 978-0-387-56663-4 (New York)", ISSN = "0302-9743 (print), 1611-3349 (electronic)", LCCN = "QA76.76.O63 B363 1993", bibdate = "Wed Feb 14 06:00:56 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = ser-LNCS, abstract = "Introduction 1; Overview of MOSIX 5; The UNIX File System 19; Distributed UNIX File Systems 37; The UNIX Process 77; The MOSIX Process 99; The MOSIX Linker 115; Load Balancing 135; Scaling Considerations 169; System Performance 179; Distributed Applications 189; Bibliography 213; Index 217.", acknowledgement = ack-nhfb, keywords = "distributed operating systems (computers); mosix", } @Book{Bean:1993:BIO, author = "Gary M. C. Bean", title = "{Bean}'s Index to {OSF\slash Motif} Documentation for Application Programmers", publisher = pub-QED, address = pub-QED:adr, year = "1993", ISBN = "0-89435-438-8", ISBN-13 = "978-0-89435-438-0", LCCN = "QA76.76.W56 B4 1993", bibdate = "Mon Oct 4 14:00:27 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @Manual{Beebe:1993:BBA, author = "Nelson H. F. Beebe", key = "Beebe", title = "A Bibliography of Books about the Internet and Networking", year = "1993", bibdate = "Tue Sep 28 15:47:16 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "This bibliography in \BibTeX{} format includes the Quarterman list \cite{Quarterman:1993:RIB}, and many others. It, and many others maintained by the same author, are updated frequently, and available for anonymous {\tt ftp} on \path|ftp.math.utah.edu| in \path|/pub/tex/bib|. Via e-mail, send mail to \path|tuglib@math.utah.edu| with the text {\tt help} and {\tt send index from tex/bib}.", acknowledgement = ack-nhfb, } @Article{Bentley:1993:TDI, author = "Jon L. Bentley and Mary F. Fernandez and Brian W. Kernighan and Norman L. Schryer", title = "Template-Driven Interfaces for Numerical Subroutines", journal = j-TOMS, volume = "19", number = "3", pages = "265--287", month = sep, year = "1993", CODEN = "ACMSCU", ISSN = "0098-3500 (print), 1557-7295 (electronic)", bibdate = "Fri Sep 16 19:17:34 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://doi.acm.org/10.1145/155743.155757; http://www.acm.org/pubs/citations/journals/toms/1993-19-3/p265-bentley/", abstract = "This paper describes a set of interfaces for numerical subroutines. Typing a short (often one-line) description allows one to solve problems in application domains including least-squares data fitting, differential equations, minimization, root finding, and integration. Our approach of ``template-driven programming'' makes it easy to build such an interface: a simple one takes a few hours to construct, while a few days suffice to build the most complex program we describe.", acknowledgement = ack-nhfb, keywords = "awk; design; experimentation; Fortran; languages; Maple; UNIX shell", subject = "{\bf G.4}: Mathematics of Computing, MATHEMATICAL SOFTWARE. {\bf D.2.2}: Software, SOFTWARE ENGINEERING, Tools and Techniques, User interfaces. {\bf D.2.2}: Software, SOFTWARE ENGINEERING, Tools and Techniques, Software libraries. {\bf D.3.4}: Software, PROGRAMMING LANGUAGES, Processors, Preprocessors. {\bf G.1.0}: Mathematics of Computing, NUMERICAL ANALYSIS, General, Numerical algorithms. {\bf D.2.m}: Software, SOFTWARE ENGINEERING, Miscellaneous, Reusable software.", } @Book{Boykin:1993:PUM, author = "Joseph Boykin and David Kirschan and Alan Langerman and Susan LoVerso", title = "Programming under {Mach}", publisher = pub-AW, address = pub-AW:adr, pages = "xvii + 490", year = "1993", ISBN = "0-201-52739-1", ISBN-13 = "978-0-201-52739-1", LCCN = "QA76.8.N49 P76 1993", bibdate = "Wed Aug 10 12:28:59 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Bregman:1993:USV, author = "Phyllis Bregman and Sally Browning", title = "{UNIX System V} Performance Management", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xvi + 360", year = "1993", ISBN = "0-13-016429-1", ISBN-13 = "978-0-13-016429-2", LCCN = "QA76.76.O63 B74 1993", bibdate = "Wed Jun 29 21:38:40 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Incorporating the material in the official SVR4 manuals, this book offers tips on tuning your system for better performance \ldots{}. This is one title in the P. H. Open Systems Library, others covers subjects like NFS administration, print services \ldots{}.", acknowledgement = ack-sk, } @Article{Broadbent:1993:ES, author = "Craig Broadbent and Hal Jespersen", title = "Emerging Standards", journal = j-UNIX-REVIEW, volume = "11", number = "3", pages = "30--??", month = mar, year = "1993", CODEN = "UNRED5", ISSN = "0742-3136", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", abstract = "XPG from X/Open and POSIX from IEEE are among the most comprehensive standards for UNIX. This year, they have expanded their scope. How will this affect you?", acknowledgement = ack-nhfb, } @Article{Bukhres:1993:IMP, author = "Omran A. Bukhres and Jiansan Chen and Ahmed K. Elmagarmid and Xiangning Liu and James G. Mullen", title = "{InterBase}: a multidatabase prototype systems", journal = j-SIGMOD, volume = "22", number = "2", pages = "534--539", month = jun, year = "1993", CODEN = "SRECD8", ISBN = "0-89791-592-5", ISBN-13 = "978-0-89791-592-2", ISSN = "0163-5808 (print), 1943-5835 (electronic)", bibdate = "Mon Jan 12 08:45:44 MST 2004", bibsource = "Compendex database; http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "The InterBase multidatabase system which supports global applications in an environment consisting of distributed, heterogeneous and autonomous software systems is described. An overview of the architecture of InterBase, consisting of Distributed Flex Transaction Manager (DFTM) and Remote System Interface (RSI), its transaction specification language IPL, and its graphical user interface InterBaseView are presented. A trial implementation at Bell Northern Research Inc. has demonstrated its effectivity as an innovative solution to the problems of heterogeneous application program integration.", acknowledgement = ack-nhfb, affiliation = "Dept. of Comput. Sci., Purdue Univ.", affiliationaddress = "West Lafayette, IN, USA", classification = "722.3; 723.1; 723.1.1; 723.2; 723.3; C6160B (Distributed DBMS)", conference = "Proceedings of the 1993 ACM SIGMOD International Conference on Management of Data", conferenceyear = "1993", keywords = "Computer architecture; Computer graphics; Computer hardware description languages; Data handling; Data reduction; Database systems; Distributed computer systems; Distributed flex transaction manager; Flexible transaction model; Global applications; Global transactions; Graphical user interface; Heterogeneous database; InterBase; InterBase parallel language; InterBaseView, Multidatabase prototype system; Multidatabase prototype system; Object oriented programming; Query languages; Remote system interface; Transaction management; Transaction specification language; UNIX; User interfaces", meetingaddress = "Washington, DC, USA", meetingdate = "May 26--28 1993", meetingdate2 = "05/26--28/93", publisherinfo = "Fort Collins Computer Center", sponsor = "ACM, SIGMOD; Minerals, Metals \& Materials Society", thesaurus = "Distributed databases; Transaction processing", xxcrossref = "Anonymous:1993:SAS", } @Article{Bukhres:1993:ISB, author = "Omran Bukhres and Jiansan Chen and Rob Pezzoli", title = "An {InterBase} system at {BNR}", journal = j-SIGMOD, volume = "22", number = "2", pages = "426--429", month = jun, year = "1993", CODEN = "SRECD8", ISBN = "0-89791-592-5", ISBN-13 = "978-0-89791-592-2", ISSN = "0163-5808 (print), 1943-5835 (electronic)", bibdate = "Mon Jan 12 08:45:44 MST 2004", bibsource = "Compendex database; http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "The Bell Northern Research (BNR) Inc's computing environment is a collection of heterogeneous software packages and hardware platforms. Its network consists of IBM mainframes and workstations that are scattered to different countries leading to the subsequent rise in self-controlled or autonomous computing services. However, problems still exist in such environments. In response, the Purdue University's InterBase Lab designed an environment for global application. They call it InterBase (BCD + 92), which maintains a toll-based interface that facilitates application development in a distributed environment of heterogeneous software. BNR has foreseen the realization of two major benefits. These are: cost reduction and convenience. Its success led BNR to pursue a better and broader development of the project.", acknowledgement = ack-nhfb, affiliation = "Dept. of Comput. Sci., Purdue Univ.", affiliationaddress = "West Lafayette, IN, USA", classification = "722.2; 722.4; 723.2; 723.3; 911.1; C6115 (Programming support); C6160B (Distributed DBMS)", conference = "Proceedings of the 1993 ACM SIGMOD International Conference on Management of Data", conferenceyear = "1993", keywords = "Application development; Application programs; Bell Northern Research; Computer architecture; Computer workstations; Cost reduction; Costs; Data processing; Data reduction; Data transfer; Database systems; Databases; Disk space; Distributed computer systems; Distributed flex transaction manager; Hardware platforms; Heterogeneous software packages; InterBase; InterBase parallel language; InterBase system; Parallel processing systems; Query languages; Remote system interfaces; Tool libraries; Tool-based interface; UNIX; User interfaces; X window interfaces, BNR", meetingaddress = "Washington, DC, USA", meetingdate = "May 26--28 1993", meetingdate2 = "05/26--28/93", publisherinfo = "Fort Collins Computer Center", sponsor = "ACM, SIGMOD; Minerals, Metals \& Materials Society", thesaurus = "Distributed databases; Software tools", xxcrossref = "Anonymous:1993:SAS", } @Article{Ciancarini:1993:LMM, author = "P. Ciancarini and N. Guerrini", title = "{Linda} meets {Minix}", journal = j-OPER-SYS-REV, volume = "27", number = "4", pages = "76--92", month = oct, year = "1993", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:51 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Comer:1993:CSP, author = "Douglas E. Comer and David L. Stevens", title = "3: Client-server programming and applications: {BSD} socket version", publisher = pub-PH, address = pub-PH:adr, pages = "xxiv + 498", year = "1993", ISBN = "0-13-020272-X", ISBN-13 = "978-0-13-020272-7", LCCN = "????", bibdate = "Tue Sep 17 07:05:44 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Corrigan:1993:OPT, author = "Peter Corrigan and Mark Gurry", title = "{ORACLE} Performance Tuning", publisher = pub-ORA, address = pub-ORA:adr, pages = "650", month = sep, year = "1993", ISBN = "1-56592-048-1", ISBN-13 = "978-1-56592-048-4", LCCN = "QA76.9.D3 C67 1993", bibdate = "Wed Jul 6 13:20:37 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$34.95", acknowledgement = ack-nhfb, } @Book{Costales:1993:TS, author = "Bryan Costales and Eric Allman and Neil Rickert", title = "{\tt sendmail}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxxvi + 792", year = "1993", ISBN = "1-56592-056-2", ISBN-13 = "978-1-56592-056-9", bibdate = "Wed Jun 29 20:57:07 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "From Samuel Ko: {\em Highly recommended.} This is really an encyclopedia on {\tt sendmail}. The authors did a great job in de-mysterifying this complex email routing and delivering program \ldots{}. The book is divided into four parts. Part One is a tutorial on understanding sendmail from the ground up \ldots{}. Part Two deals with practical topics in sendmail administration \ldots{}. Part Three is a comprehensive reference section \ldots{}. Part Four consists of appendices with details \ldots{}.", price = "US\$32.95", acknowledgement = ack-nhfb, } @Article{Costilla:1993:SDI, author = "C. R. Costilla and M. J. Bas and J. Villamor", title = "{SIRIO}: {A} Distributed Information System over a Heterogeneous Computer Network", journal = j-SIGMOD, volume = "22", number = "1", pages = "28--33", month = mar, year = "1993", CODEN = "SRECD8", ISSN = "0163-5808 (print), 1943-5835 (electronic)", bibdate = "Mon Jan 12 08:45:43 MST 2004", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliation = "Tech. Univ., Madrid, Spain", classification = "C6160B (Distributed DBMS); C6160D (Relational DBMS)", keywords = "C; Client-server architecture; Distributed information system; Ethernet TOOLKIT; Heterogeneous local area network; MS-DOS; Oracle; Relational database; SIRIO project; TCP/IP; Unix server", thesaurus = "Distributed databases; Local area networks; Relational databases", } @Book{Crabb:1993:RUI, author = "Don Crabb", title = "Running {UNIX} so it doesn't run you", publisher = pub-ZIFF-DAVIS, address = pub-ZIFF-DAVIS:adr, pages = "xix + 268", year = "1993", ISBN = "1-56276-061-0", ISBN-13 = "978-1-56276-061-8", LCCN = "QA76.76.O63 C724 1993", bibdate = "Mon Jan 8 06:35:48 MST 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", price = "US\$29.95", acknowledgement = ack-nhfb, subject = "UNIX device drivers (Computer programs); Computer programs; UNIX Shells", } @Book{Cruz:1993:UCK, author = "Frank da Cruz and Christine M. Gianone", title = "Using {C-Kermit}", publisher = pub-DP # " and " # pub-PH, address = pub-DP:adr # " and " # pub-PH:adr, pages = "xxi + 514", year = "1993", ISBN = "1-55558-108-0 (DP), 0-13-037490-3 (PH)", ISBN-13 = "978-1-55558-108-4 (DP), 978-0-13-037490-5 (PH)", LCCN = "TK5105.9.D33 1993", bibdate = "Fri Dec 10 13:35:01 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$34.95", acknowledgement = ack-nhfb, } @Article{Curewitz:1993:PPD, author = "Kenneth M. Curewitz and P. Krishnan and Jeffrey Scott Vitter", title = "Practical prefetching via data compression", journal = j-SIGMOD, volume = "22", number = "2", pages = "257--266", month = jun, year = "1993", CODEN = "SRECD8", ISBN = "0-89791-592-5", ISBN-13 = "978-0-89791-592-2", ISSN = "0163-5808 (print), 1943-5835 (electronic)", bibdate = "Mon Jan 12 08:45:44 MST 2004", bibsource = "Compendex database; http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "An important issue that affects response time performance in current OODB and hypertext systems is the I/O involved in moving objects from slow memory to cache. A promising way to tackle this problem is to use prefetching, in which we predict the user's next page requests and get those pages into cache in the background. Current databases perform limited prefetching using techniques derived from older virtual memory systems. A novel idea of using data compression techniques for prefetching was recently advocated in [KrV, ViK], in which prefetchers based on the Lempel--Ziv data compressor (the UNIX compress command) were shown theoretically to be optimal in the limit. In this paper we analyze the practical aspects of using data compression techniques for prefetching. We adapt three well-known data compressors to get three simple, deterministic, and universal prefetchers. We simulate our prefetchers on sequences of page accesses derived from the OO1 and OO7 benchmarks and from CAD applications, and demonstrate significant reductions in fault-rate. We examine the important issues of cache replacement, size of the data structure used by the prefetcher, and problems arising from bursts of `fast' page requests (that leave virtually no time between adjacent requests for prefetching and book keeping). We conclude that prediction for prefetching based on data compression techniques holds great promise.", acknowledgement = ack-nhfb, affiliation = "Digital Equipment Corp", affiliationaddress = "Maynard, MA, USA", classification = "722.1; 722.4; 723.1; 723.2; 723.3; 723.5; C6120 (File organisation); C6130 (Data handling techniques); C6160J (Object-oriented databases)", conference = "Proceedings of the 1993 ACM SIGMOD International Conference on Management of Data", conferenceyear = "1993", keywords = "Algorithms; Benchmarks; Cache replacement; Cache replacement, Object-oriented databases; CAD; Computer aided design; Computer simulation; Data compression; Data compressor; Data storage equipment; Data structure; Data structures; Database systems; Fault rate; Hypertext; Memory system; OODB; Page accesses; Performance; Prefetching; Response time (computer systems); Response time performance; Virtual storage", meetingaddress = "Washington, DC, USA", meetingdate = "May 26--28 1993", meetingdate2 = "05/26--28/93", publisherinfo = "Fort Collins Computer Center", sponsor = "ACM, SIGMOD; Minerals, Metals \& Materials Society", thesaurus = "Buffer storage; Data compression; Data structures; Object-oriented databases", xxcrossref = "Anonymous:1993:SAS", } @Book{Custer:1993:IWN, author = "Helen Custer", title = "Inside {Windows NT}", publisher = pub-MICROSOFT, address = pub-MICROSOFT:adr, pages = "xxiv + 385", year = "1993", ISBN = "1-55615-481-X", ISBN-13 = "978-1-55615-481-2", LCCN = "QA76.76.O63 C89 1993", bibdate = "Wed Jun 29 22:00:14 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "The authoritative technical reference on Windows NT (the ultimate challenge to UNIX?) \ldots{}.", acknowledgement = ack-sk, } @Article{Davis:1993:MO, author = "Tom Davis", title = "Moving to {OpenGL}", journal = j-IRIS, volume = "25", pages = "76", year = "1993", bibdate = "Sat May 21 15:35:33 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-jc, } @Article{deBakker:1993:CSL, author = "J. W. {de Bakker} and F. {Van Breugel} and A. {de Bruin}", title = "Comparative semantics for linear arrays of communicating processes, a study of the {UNIX} fork and pipe commands", journal = j-LECT-NOTES-COMP-SCI, volume = "711", pages = "252--??", year = "1993", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", bibdate = "Mon May 13 11:49:00 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{DeBenedictis:1993:EUS, author = "Erik P. DeBenedictis and Stephen C. Johnson", title = "Extending {Unix} for Scalable Computing", journal = j-COMPUTER, volume = "26", number = "11", pages = "43--53", month = nov, year = "1993", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Mon Feb 3 07:28:57 MST 1997", bibsource = "Compendex database; Database/Graefe.bib; http://www.math.utah.edu/pub/tex/bib/unix.bib; Parallel/Parallel.io.bib", abstract = "Will tomorrow's parallel computer function like today's workstation, only faster? Applying the Unix operating system to a parallel environment may be the answer.", acknowledgement = ack-nhfb, affiliation = "Scalable Computing, Redwood City, CA, USA", classification = "723.4; 901; C5440 (Multiprocessor systems and techniques); C6150J (Operating systems)", comment = "A more polished version of his other papers with del Rosario. The mapping-based mechanism is released in nCUBE software 3.0. It does support shared file pointers for self-scheduled I/O, as well as support for variable-length records, and asynchronous I/O (although the primary mechanism is for synchronous, i.e., SPMD, I/O). The basic idea of scalable pipes (between programs, devices, {\em etc.}) with mappings that determine routings to units seems like a good idea.", journalabr = "Computer", keyword = "parallel I/O, Unix, pario bib", keywords = "Computer programming; Multicomputer architecture; Ncube-2; Neumann computer architecture; Parallel programming; Scalable computing; Scalable computing Unix extension; System software; Technology; Tflops parallel computer; Unix; Unix operating system", thesaurus = "Multiprocessing systems; Unix", } @Article{DeDecker:1993:USK, author = "B. {De Decker}", title = "{Unix} Security and {Kerberos}", journal = j-LECT-NOTES-COMP-SCI, volume = "741", pages = "257--274", year = "1993", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", bibdate = "Wed Sep 15 10:01:31 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/lncs1993.bib; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "computer security; ESAT; industrial cryptography", } @Article{Dittmer:1993:EUC, author = "Ingo Dittmer", title = "Error in {Unix} commands {\tt dc} and {\tt bc} for multiple-precision-arithmetic", journal = j-SIGNUM, volume = "28", number = "2", pages = "8--11", month = apr, year = "1993", CODEN = "SNEWD6", ISSN = "0163-5778 (print), 1558-0237 (electronic)", bibdate = "Tue Apr 12 07:50:23 MDT 2005", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Dowd:1993:HPC, author = "Kevin Dowd", title = "High Performance Computing", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxv + 371", year = "1993", ISBN = "1-56592-032-5", ISBN-13 = "978-1-56592-032-3", LCCN = "QA76.88 .D6 1993", bibdate = "Mon Jan 3 18:00:37 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$25.95", acknowledgement = ack-nhfb, } @Book{DuBois:1993:SPT, author = "Paul DuBois", title = "Software Portability with {\tt imake}", publisher = pub-ORA, address = pub-ORA:adr, pages = "390", year = "1993", ISBN = "1-56592-055-4", ISBN-13 = "978-1-56592-055-2", bibdate = "Mon Jan 3 18:02:51 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$27.95", acknowledgement = ack-nhfb, } @Book{Eckel:1993:CI, author = "Bruce Eckel", title = "{C++} Inside \& Out", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xxviii + 754", year = "1993", ISBN = "0-07-881809-5", ISBN-13 = "978-0-07-881809-7", LCCN = "QA76.73.C153 E24 1993", bibdate = "Wed Jun 29 21:56:14 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-sk, } @Book{Ferguson:1993:MRM, author = "Paula Ferguson and David Brennan", title = "{Motif} Reference Manual", volume = "6B", publisher = pub-ORA, address = pub-ORA:adr, pages = "920", month = jun, year = "1993", ISBN = "1-56592-038-4", ISBN-13 = "978-1-56592-038-5", LCCN = "QA76.76.W56F47 1993", bibdate = "Mon Jan 3 17:51:39 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$34.95", acknowledgement = ack-nhfb, } @InProceedings{Gallmeister:1993:UP, author = "B. Gallmeister", title = "Understanding {POSIX} 4 and 4.a", crossref = "Anonymous:1993:PFA", pages = "211--222", year = "1993", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Gayley:1993:TSX, author = "Todd Gayley", title = "Tech Support: The {X} Front End and {UNIX} Installation", journal = j-MATHEMATICA-J, volume = "3", number = "4", pages = "??--??", month = "Fall", year = "1993", CODEN = "????", ISSN = "1047-5974", bibdate = "Sat Nov 6 13:33:50 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.mathematica-journal.com/issue/v3i4/", URL = "http://www.mathematica-journal.com/issue/v3i4/columns/techsupport/index.html; http://www.mathematica-journal.com/issue/v4i2/columns/techsupport/54-61_gayley42.mj.pdf", acknowledgement = ack-nhfb, } @InProceedings{Giering:1993:IAF, author = "E. W. Giering and F. Mueller and T. P. Baker", title = "Implementing {Ada 9X} Features using {POSIX} Threads: Design Issues", crossref = "ACM:1993:TCS", pages = "214--228", year = "1993", bibdate = "Sat Jul 05 17:12:34 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Gilster:1993:INE, author = "Paul Gilster", title = "The Internet Navigator\emdash The Essential Guide to Network Exploration for the Individual Dial-up User", publisher = pub-WILEY-INTERSCIENCE, address = pub-WILEY-INTERSCIENCE:adr, pages = "xxiv + 470", year = "1993", ISBN = "0-471-59782-1", ISBN-13 = "978-0-471-59782-7", LCCN = "TK5105.875.I57 G55 1993", bibdate = "Mon Oct 11 08:39:42 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$24.95", acknowledgement = ack-nhfb, } @Book{Goodman:1993:SPG, author = "Michele Ann Goodman and Manoj Goyal and Robert A. Massoudi", title = "{Solaris} porting guide", publisher = pub-SUNSOFT, address = pub-SUNSOFT:adr, pages = "lxxiv + 790", year = "1993", ISBN = "0-13-030396-8", ISBN-13 = "978-0-13-030396-7", LCCN = "QA76.76.O63 G66347 1993", bibdate = "Tue May 23 11:21:01 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "????", acknowledgement = ack-nhfb, } @Book{Grottola:1993:UAU, author = "Michael G. Grottola", title = "The {UNIX} audit: using {UNIX} to audit {UNIX}", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xii + 174", year = "1993", ISBN = "0-07-025127-4", ISBN-13 = "978-0-07-025127-4", LCCN = "QA76.76.O63 G77 1993", bibdate = "Wed Jun 29 21:41:43 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-sk, } @Article{Guerrero:1993:IEA, author = "R. Guerrero and L. Leguizamon and R. Gallard", title = "Implementation and evaluation of alternative process schedulers in {MINIX}", journal = j-OPER-SYS-REV, volume = "27", number = "1", pages = "79--100", month = jan, year = "1993", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:36 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Hahn:1993:SGU, author = "Harley Hahn", title = "A Student's Guide to {UNIX}", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xxxi + 633", year = "1993", ISBN = "0-07-025511-3", ISBN-13 = "978-0-07-025511-1", LCCN = "QA76.76.O63 H34 1993", bibdate = "Wed Sep 29 13:08:30 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "{\em Highly recommended}. A superb introduction to UNIX \ldots{} In a clear and lively language, the author tells the novice users everything they want to know about UNIX and the Internet\emdash covering UNIX commands, utilities, shells, {\tt vi}, X-Window, e-mail, netnews, {\tt ftp}, {\tt gopher}, etc \ldots{}. It should be an excellent textbook for any UNIX introductory course \ldots{} ``No experience necessary!'' ``UNIX is fun.''", acknowledgement = ack-sk, } @Book{Heslop:1993:MS, author = "Brent D. Heslop and David F. Angell", title = "Mastering {Solaris} 2", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xl + 899", year = "1993", ISBN = "0-7821-1072-X", ISBN-13 = "978-0-7821-1072-2", LCCN = "QA76.76.O63 H478 1993", bibdate = "Wed Jun 29 20:31:56 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-sk, } @Manual{Hewlett--Packard:1993:GPG, title = "{GL} to {PEX}lib Porting Guide", organization = "Hewlett--Packard Company", edition = "Part number B3176-90040", year = "1993", bibdate = "Tue Dec 7 10:14:10 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "OpenGL", } @Book{IEC:1993:ITP, author = "{International Electrotechnical Commission}", title = "Information technology: {Portable Operating System Interface (POSIX)}: Part 2, Shell and utilities", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xix + 1198", day = "17", month = sep, year = "1993", ISBN = "1-55937-406-3", ISBN-13 = "978-1-55937-406-4", LCCN = "QA76.76.O63 I56 1993", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Two volumes. Approved September 17, 1992, IEEE Standards Board; approved April 5, 1993, American National Standards Institute; approved 1993 by the International Organization for Standardization, and by the International Electrotechnical Commission. This standard ... defines the applications interface to a shell command language and a set of utility programs for complex data manipulation. When the User Portability Utilities Option is included, the standard also defines a common environment for general-purpose time-sharing users on character-oriented display terminals. International Standard ISO/IEC 9945-2: 1993. IEEE Std 1003.2-1992 (includes IEEE Std 1003.2a-1992).", acknowledgement = ack-nhfb, keywords = "operating systems (computers) -- standards -- United States; software compatibility -- standards -- United States; utilities (computer programs) -- standards -- United States", } @Book{Jaeschke:1993:CIE, author = "Rex Jaeschke", title = "{C++}: An Introduction for Experienced {C} Programmers", publisher = pub-CBM, address = pub-CBM:adr, pages = "xii + 236", year = "1993", ISBN = "1-878956-27-2", ISBN-13 = "978-1-878956-27-9", LCCN = "QA76.73.C15 J3354 1993", bibdate = "Wed Apr 14 10:56:44 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Johnson:1993:PGP, author = "Eric F. Johnson and Kevin Reichard", title = "Professional Graphics Programming in the {X Window System}", publisher = pub-MIS, address = pub-MIS:adr, pages = "xxxvi + 1195", year = "1993", ISBN = "1-55828-255-6", ISBN-13 = "978-1-55828-255-1", LCCN = "T385 .J63 1993", bibdate = "Tue Oct 12 17:52:52 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$34.95", acknowledgement = ack-nhfb, } @Article{Kanazy:1993:SDP, author = "Y. Kanazy", title = "{SGML} document processing", journal = j-FUJITSU, volume = "44", number = "6", pages = "521--526", month = "????", year = "1993", CODEN = "FUJTAR", ISSN = "0016-2515", bibdate = "Wed Aug 31 00:52:53 MDT 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "SGML (standard generalized markup language) is an international standard (ISO8879) for document exchange formats, which has enacted by ISO in 1986. Fujitsu has produced `SGML document processing' as a professional OA product of the middleware product group. SGML document processing is a document processing system based on SGML and operates on UNIX (Fujitsu S family and DS/90). This total system enables SGML documents to be written, processed analyzed, output, and stored (up to data bases). This paper outlines SGML and introduces the SGML document processing functions currently available and related international standards.", acknowledgement = ack-nhfb, classification = "C6130D (Document processing techniques); C6140D (High level languages); C7108 (Desktop publishing)", keywords = "Document exchange formats; DS/90; Fujitsu S family; International standard; ISO; ISO8879; Middleware product group; OA product; SGML; SGML document processing; Standard generalized markup language; UNIX", language = "Japanese", pubcountry = "Japan", thesaurus = "Page description languages; Standards", } @Article{Kavka:1993:EDM, author = "C. Kavka and M. Printista and R. Gallard", title = "Extending device management in {Minix}", journal = j-OPER-SYS-REV, volume = "27", number = "2", pages = "35--43", month = apr, year = "1993", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:41 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Kerrigan:1993:MF, author = "James F. Kerrigan", title = "Migrating to Fortran 90", publisher = pub-ORA, address = pub-ORA:adr, pages = "315", month = oct, year = "1993", ISBN = "1-56592-049-X", ISBN-13 = "978-1-56592-049-1", LCCN = "QA76.73.F28 K47 1993", bibdate = "Mon Jan 3 18:29:56 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$24.95", acknowledgement = ack-nhfb, } @Article{Kilgard:1993:OXI, author = "Mark J. Kilgard", title = "{OpenGL} \& {X}: An Introduction", journal = j-XJ, volume = "3", number = "2", pages = "36--38, 40, 42--44, 46--47, 50--51", month = nov # "/" # dec, year = "1993", bibdate = "Sat May 21 15:43:34 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-jc, keywords = "OpenGL", } @Article{Lalwanai:1993:PIM, author = "Rajesh Lalwanai", title = "{POSIX} Interface for {MPE\slash iX}", journal = j-HEWLETT-PACKARD-J, volume = "44", number = "3", pages = "41--??", day = "1", month = jun, year = "1993", CODEN = "HPJOAX", ISSN = "0018-1153", bibdate = "Sat May 25 15:28:26 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", acknowledgement = ack-nhfb, } @InProceedings{Leathrum:1993:ATO, author = "J. F. Leathrum and K. A. Liburdy", title = "Automated testing of open software standards", crossref = "IEEE:1993:DTD", pages = "854--858", year = "1993", bibdate = "Fri May 24 09:57:50 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This paper illustrates the power and flexibility of a new approach to creating conformance test suites for open systems software standards such as POSIX. The approach incorporates an automated process for the generation and validation of conformance tests. The automated process has been implemented and comprises key components of the Clemson Automated Testing System (CATS). CATS is a testing facility designed to provide a life-cycle support environment for the development of conformance tests. This paper introduces the CATS facility and presents examples of its use.", acknowledgement = ack-nhfb, affiliation = "Clemson Univ", affiliationaddress = "Clemson, SC, USA", classification = "723.1; 723.5; 902.2", conference = "Proceedings of the 24th IEEE International Test Conference", conferenceyear = "1993", journalabr = "Proc Int Test Conf", keywords = "Automatic testing; Clemson Automated Testing System (CATS); Computer operating systems; Computer software; Computer software portability; Conformance tests; Open software standards; Portable operating systems (POSIX); Standards; Test facilities", meetingaddress = "Baltimore, MD, USA", meetingdate = "Oct 17--21 1993", meetingdate2 = "10/17--21/93", publisherinfo = "IEEE Service Center", } @Article{Leathrum:1993:ERT, author = "J. F. Leathrum and K. A. Liburdy", title = "Evolving role of testing in open systems standards", crossref = "IEEE:1993:DTD", pages = "273--274", year = "1993", bibdate = "Fri May 24 09:57:50 MDT 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "IEEE catalog number 93CH3356-3.", abstract = "IEEE's standardization effort for portable operating systems (POSIX) provides a dynamic forum for observing the changing role of testing in an open systems environment. Within POSIX, a standard (IEEE Std 1003.3-1991) was recently developed which provdes guidelines for creating test methods in an informal, natural language style. It was then decreed that all emerging standards must have 1003.3 style test methods written for them before they could ge submitted for approval as a POSIX standard. Soon after this requirement became established, testing-related problems began to surface. The most critical issue for many working groups regarded the almost certain delay in standard development resulting forom the time consuming effort to write test methods.", acknowledgement = ack-nhfb, affiliation = "Clemson Univ", affiliationaddress = "Clemson, SC, USA", classification = "723.1; 731.4; 901.1.1; 902.2", conference = "Proceedings of the 24th IEEE International Test Conference", conferenceyear = "1993", journalabr = "Proc Int Test Conf", keywords = "Computer software; Computer software portability; Institute of Electrical and Electronics Engineers (IEEE); Open systems standards; Portable operating systems (POSIX); Societies and institutions; Standardization; Standards; Systems analysis", meetingaddress = "Baltimore, MD, USA", meetingdate = "Oct 17--21 1993", meetingdate2 = "10/17--21/93", publisherinfo = "IEEE Service Center", } @Book{Levine:1993:UD, author = "John Levine and Margaret Levine Young", title = "{UNIX} for Dummies", publisher = pub-IDG, address = pub-IDG:adr, pages = "xxvi + 369", year = "1993", ISBN = "1-878058-58-4", ISBN-13 = "978-1-878058-58-4", LCCN = "QA76.76.O63 L486 1993", bibdate = "Wed Sep 29 13:02:59 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A fairly informal (funny) and non-technical introduction to {UNIX}.", price = "US\$19.95", acknowledgement = ack-sk, } @Book{Libes:1993:OCO, author = "Don Libes", title = "Obfuscated {C} and Other Mysteries", publisher = pub-WILEY-INTERSCIENCE, address = pub-WILEY-INTERSCIENCE:adr, pages = "xii + 413", year = "1993", ISBN = "0-471-57805-3", ISBN-13 = "978-0-471-57805-5", LCCN = "QA76.73.C15 L5 1993", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "With practical C programming hints and winning programs from the Obfuscated C Code Contests \ldots With a disk containing the source codes", acknowledgement = ack-sk, } @Article{Linnell:1993:WNC, author = "Dennis Linnell", title = "{Windows NT}: Can {Microsoft} Make the Jump From the Desktop to Distributed Computing?", journal = j-DATA-COMMUNICATIONS, volume = "22", number = "6", pages = "68--??", month = apr, year = "1993", CODEN = "DACODM", ISSN = "0363-6399", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", abstract = "Microsoft Corp.'s Windows NT (New Technology) has IS managers in a state of denial: Some are hoping it will go away, while others are counting on Microsoft's tradition of buggy first releases to put a damper on demand for the time being. But Bill Gates and company are determined to make Windows NT the unquestioned leader in distributed computing. NT is built from the ground up as a networking platform, with built-in file and print sharing. APIs, and support for TCP/IP and RPCs. Microsoft has even gone so far as to make NT-conform to an existing standard (Posix) and to define an SNMP management information base for it. But a hands-on review of a beta version of Windows NT shows that Microsoft has a long way to go to meet its ambitious agenda.", acknowledgement = ack-nhfb, } @Article{Low:1993:FGO, author = "Marie Rose Low and Bruce Christianson", title = "Fine grained object protection in {UNIX}", journal = j-OPER-SYS-REV, volume = "27", number = "1", pages = "33--50", month = jan, year = "1993", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:36 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Lunde:1993:UJI, author = "Ken Lunde", title = "Understanding {Japanese} Information Processing", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxxii + 435", year = "1993", ISBN = "1-56592-043-0", ISBN-13 = "978-1-56592-043-9", bibdate = "Tue Oct 5 13:27:12 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @Manual{Malkin:1993:IUG, author = "Gary Malkin and Tracy LaQuey Parker", key = "Malkin", title = "{Internet} Users' Glossary", month = jan, year = "1993", bibdate = "Tue Sep 28 15:35:35 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A glossary that concentrates on terms that are special to the Internet. This document (\path|rfc1392.txt|) can be obtained by anonymous {\tt ftp} from \path|/rfc| at \path|nic.ddn.mil|.", acknowledgement = ack-sk, } @Book{Mansfield:1993:JXO, author = "Niall Mansfield", title = "The Joy of {X}\emdash An Overview of the {X Window System}", publisher = pub-AW, address = pub-AW:adr, pages = "xi + 368", year = "1993", ISBN = "0-201-56512-9", ISBN-13 = "978-0-201-56512-6", LCCN = "QA76.76 .W56 M45x 1993", bibdate = "Mon Oct 4 12:58:28 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$22.75", acknowledgement = ack-nhfb, } @Book{Mansfield:1993:XWS, author = "Niall Mansfield", title = "The {X Window System}\emdash {A} User's Guide", publisher = pub-AW, address = pub-AW:adr, year = "1993", ISBN = "0-201-54438-5", ISBN-13 = "978-0-201-54438-1", bibdate = "Mon Oct 4 12:01:38 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Another good tutorial-type book to using X.", acknowledgement = ack-sk, } @Book{McMinds:1993:MOM, author = "Donald L. McMinds", title = "Mastering {OSF\slash Motif} Widgets", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xxxii + 731", year = "1993", ISBN = "0-201-63335-3", ISBN-13 = "978-0-201-63335-1", LCCN = "QA76.76.W56 M52 1993", bibdate = "Mon Oct 4 14:06:35 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Motif (computer file); X Window System (computer system)", } @InProceedings{Miles:1993:BVP, author = "Douglas Miles", booktitle = "1993 IEEE Compcon Spring (Feb 22--26 1993: San Francisco, CA, USA)", title = "Beyond vector processing: parallel programming on the {Cray APP}", publisher = "IEEE", address = "Piscataway, NJ, USA", pages = "321--328", year = "1993", ISBN = "0-7803-1294-5", ISBN-13 = "978-0-7803-1294-4", LCCN = "????", bibdate = "Mon Aug 26 10:51:12 MDT 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "IEEE catalog number 93CH3251-6.", abstract = "The CRAY APP is a highly parallel network compute server designed to accelerate Fortran and C programs in a UNIX environment. It can run complete programs in a simple shared memory environment, including support for UNIX systems calls. A very efficient HiPPI interface makes the CRAY APP cluster-capable and well-suited to interact with other programs running on a network in a client\slash server mode. Several novel features of the CRAY APP system design and programming environment allow for simple porting and incremental tuning of existing applications. These include a highly efficient microkernel operating system, low overhead library-based parallel support software, and a simple refinement to existing vectorization techniques called data vectorization. This paper discusses parallel programming on the CRAY APP, the system features that make the programming environment possible, and some examples of complete applications that have sustained over 1 GFLOP on the CRAY APP.", acknowledgement = ack-nhfb, affiliation = "Cray Research Superservers, Inc", affiliationaddress = "Beaverton, OR, USA", classification = "722; 723.1; 723.5", conference = "38th Annual IEEE Computer Society International Computer Conference --- COMPCON SPRING '93", conferenceyear = "1993", keywords = "Computer networks; Computer operating systems; Computer programming; Computer programming languages; Computer software; CRAY APP system; Parallel processing systems; Parallel support software; Program processors; UNIX; Vector processing; Vectors", meetingabr = "38 Annu IEEE Comput Soc Int Comput Conf COMPCON SPRING 93", meetingaddress = "San Francisco, CA, USA", meetingdate = "Feb 22--26 1993", meetingdate2 = "02/22--26/93", publisherinfo = "IEEE Service Center", } @Article{Morrisett:1993:PLP, author = "J. Gregory Morrisett and Andrew P. Tolmach", title = "Procs and locks: a portable multiprocessing platform for {Standard ML} of {New Jersey}", journal = j-SIGPLAN, volume = "28", number = "7", pages = "198--207", month = jul, year = "1993", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:16:39 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "A portable platform has been built for running Standard ML of New Jersey programs on multiprocessors. It can be used to implement user-level thread packages for multiprocessors within the ML language with first-class continuations. The platform supports experimentation with different thread scheduling policies and synchronization constructs. It has been used to construct a Modula-3 style thread package and a version of Concurrent ML, and has been ported to three different multiprocessors running variants of Unix. The authors describe the platform's design, implementation, and performance.", acknowledgement = ack-nhfb, affiliation = "Carnegie Mellon Univ., Pittsburg, PA, USA", classification = "C6110P (Parallel programming); C6140D (High level languages); C6150C (Compilers, interpreters and other processors)", confdate = "19-22 May 1993", conflocation = "San Diego, CA, USA", confsponsor = "ACM", keywords = "Concurrent ML; First-class continuations; Functional language; Modula-3 style thread package; New Jersey programs; Portable multiprocessing platform; Portable platform; Standard ML; Synchronization constructs; Thread scheduling policies; User-level thread packages", thesaurus = "Multiprocessing systems; Parallel languages; Parallel programming; Scheduling", } @Book{Neider:1993:OPG, author = "Jackie Neider and Tom Davis and Mason Woo", title = "{OpenGL} Programming Guide\emdash The Official Guide to Learning {OpenGL}, Release 1", publisher = pub-AW, address = pub-AW:adr, pages = "xiii + 516", year = "1993", ISBN = "0-201-63274-8", ISBN-13 = "978-0-201-63274-3", LCCN = "T385.N435 1993", bibdate = "Mon Jan 03 06:31:07 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "The source code examples are available at \path=ftp://sgigate.sgi.com/pub/opengl/opengl.tar.Z=. An HTML version of the book is available at \path=http://arctic.eng.iastate.edu:88/SGI_Developer/OpenGL_PG/= and \path=http://fly.cc.fer.hr/~unreal/index.html=.", price = "US\$34.95", acknowledgement = ack-nhfb, } @Book{Nye:1993:XTI, author = "Adrian Nye and Tim O'Reilly", title = "{X} Toolkit Intrinsics Programming Manual", volume = "4", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "567", month = apr, year = "1993", ISBN = "1-56592-003-1", ISBN-13 = "978-1-56592-003-3", bibdate = "Thu Dec 16 09:46:22 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{OnWord:1993:FSS, author = "{OnWord Press development team} and Clint Hicks", title = "Five steps to {SunSoft Solaris 2.*}", publisher = pub-ONWORD, address = pub-ONWORD:adr, pages = "xv + 195", year = "1993", ISBN = "0-934605-80-7", ISBN-13 = "978-0-934605-80-9", LCCN = "QA76.76.O63 F57 1993", bibdate = "Tue May 23 11:45:33 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "????", acknowledgement = ack-nhfb, } @Book{OnWord:1993:SSQ, author = "{OnWord Press development team} and Clint Hicks", title = "The {Sun Solaris 2.*} quick reference", publisher = pub-ONWORD, address = pub-ONWORD:adr, pages = "xvi + 208", year = "1993", ISBN = "0-934605-76-9", ISBN-13 = "978-0-934605-76-2", LCCN = "QA76.8.S86 S85 1993", bibdate = "Tue May 23 11:47:54 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "????", acknowledgement = ack-nhfb, } @Book{OpenGL:1993:ORM, author = "{OpenGL Architecture Review Board}", title = "{OpenGL} Reference Manual: The Official Reference Document for {OpenGL}, Release 1", publisher = pub-AW, address = pub-AW:adr, pages = "ix + 388", year = "1993", ISBN = "0-201-63276-4", ISBN-13 = "978-0-201-63276-7", LCCN = "T385 .O64 1993", bibdate = "Fri Sep 03 06:14:07 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$32.95, CDN\$42.95", acknowledgement = ack-jc, } @Manual{OReilly:1993:COB, author = "{O'Reilly staff}", key = "OReilly", title = "Catalog of {O}'Reilly Books", year = "1993", bibdate = "Tue Sep 28 15:51:40 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "You get can it (\path|book.catalog.Z|) by anonymous {\tt ftp} from \path|ftp.ora.com| where you can also find source codes for examples in many books in the Nutshell and X series \ldots{} Or read the catalog on the O'Reilly gopher server ({\tt telnet} \path|gopher.ora.com|, login: {\tt gopher} or {\tt gopher} \path|gopher.ora.com| (if a {\tt gopher} client is installed) \ldots{}). And to get a hard copy of their catalog-plus-magazine called {\tt ora.com}, mail \path|letters@ora.com|.", acknowledgement = ack-sk, } @Book{Parrette:1993:MPX, author = "William A. Parrette", title = "{Motif} programming in the {X Window System} environment", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xxii + 466", year = "1993", ISBN = "0-07-031722-4 (hardcover), 0-07-031723-2 (softcover)", ISBN-13 = "978-0-07-031722-2 (hardcover), 978-0-07-031723-9 (softcover)", LCCN = "QA76.76.W56 P37 1993", bibdate = "Mon Oct 4 14:03:39 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$44.95 (hardcover), US\$34.95 (softcover)", acknowledgement = ack-nhfb, } @Book{Peek:1993:UPT, author = "Jerry Peek and Tim O'Reilly and Mike Loukides and {other authors of the Nutshell handbooks}", title = "{UNIX} Power Tools", publisher = pub-ORA, address = pub-ORA:adr, pages = "xlii + 1119", year = "1993", ISBN = "0-553-35402-7, 0-679-79073-X (with CD ROM)", ISBN-13 = "978-0-553-35402-7, 978-0-679-79073-0 (with CD ROM)", LCCN = "QA76.76.O63 P44 1993", bibdate = "Tue Aug 16 12:10:42 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "{\em Highly recommended}. Simply great!!! ``[It] contains literally thousands of tips, scripts, and techniques that make using UNIX easier, more effective, and even more fun.'' With a CD-ROM disk containing PD programs and shell scripts \ldots{}. The shell scripts can also be obtained by anonymous {\tt ftp} from \path|ftp.uu.net| (as \path|/published/oreilly/power_tools/unix/upt.mar93.tar.Z|).", price = "US\$59.95 (with CD ROM)", acknowledgement = ack-sk # " and " # ack-nhfb, } @Book{Pew:1993:GS, author = "John A. Pew", title = "Guide to {Solaris}", publisher = pub-ZIFF-DAVIS, address = pub-ZIFF-DAVIS:adr, pages = "xxv + 625", year = "1993", ISBN = "1-56276-087-4", ISBN-13 = "978-1-56276-087-8", LCCN = "QA76.76.O63 P534 1993", bibdate = "Tue May 23 11:18:00 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$34.95, CDN\$48.95", acknowledgement = ack-nhfb, } @InProceedings{Pike:1993:HWD, author = "R. Pike and K. Thompson", title = "Hello world (distributed {OS} text format)", crossref = "USENIX:1993:PWU", pages = "43--50", year = "1993", bibdate = "Wed Aug 24 16:19:39 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "{\em From INSPEC\/}: Plan 9 from Bell Labs has been converted from ASCII to an ASCII-compatible variant of Unicode, a 16-bit character set. The authors explain the reasons for the change, describe the character set and representation chosen, and present the programming models and software changes that support the new text format. Although they stopped short of full internationalization---for example, system error messages are in Unixese, not Japanese---they believe Plan 9 is the first system to treat the representation of all major languages on a uniform, equal footing throughout all its software.", acknowledgement = ack-nhfb, keywords = "16 Bit; 16-Bit character set; ASCII-compatible variant; Character sets; Distributed OS text format; Linguistics; Major languages; Network operating systems; Plan 9; Programming; Programming models; Software changes; Standards; Unicode", } @Manual{Quarterman:1993:RIB, author = "John S. Quarterman", key = "Quarterman", title = "Recent Internet Books", month = mar, year = "1993", bibdate = "Tue Sep 28 15:45:25 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "This is a list of books related to using the Internet. The document (\path|rfc1432.txt|) can be obtained by anonymous {\tt ftp} from \path|/rfc| at \path|nic.ddn.mil|. See \cite{Beebe:1993:BBA}.", acknowledgement = ack-sk, } @Book{Quarterman:1993:UPO, author = "John S. Quarterman and Susanne Wilhelm", title = "{UNIX}, {POSIX}, and Open Systems\emdash the Open Standards Puzzle", publisher = pub-AW, address = pub-AW:adr, pages = "xxix + 416", year = "1993", ISBN = "0-201-52772-3", ISBN-13 = "978-0-201-52772-8", LCCN = "QA76.76.O63 Q37 1993", bibdate = "Tue May 25 07:54:33 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "POSIX (computer software standard); UNIX (computer file)", } @Book{Quercia:1993:XWSa, author = "Valerie Quercia and Tim O'Reilly", title = "{X Window System} User's Guide", volume = "3", publisher = pub-ORA, address = pub-ORA:adr, edition = "Fourth", pages = "xxx + 835", month = may, year = "1993", ISBN = "1-56592-014-7", ISBN-13 = "978-1-56592-014-9", LCCN = "QA76.76.W56D43 1993", bibdate = "Mon Jan 3 17:27:25 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Quercia:1993:XWSb, author = "Valerie Quercia and Tim O'Reilly", title = "{X Window System} User's Guide: {OSF\slash Motif} 1.2 Edition", volume = "3M", publisher = pub-ORA, address = pub-ORA:adr, edition = "Fourth", pages = "xxx + 835", month = may, year = "1993", ISBN = "1-56592-015-5", ISBN-13 = "978-1-56592-015-6", bibdate = "Mon Jan 3 17:27:25 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Rago:1993:USV, author = "Steven A. Rago", title = "{UNIX} System {V} network programming", publisher = pub-AW, address = pub-AW:adr, pages = "xv + 784", year = "1993", ISBN = "0-201-56318-5", ISBN-13 = "978-0-201-56318-4", LCCN = "92-45276, QA76.76.O63 R34 1993", bibdate = "Tue Sep 21 11:32:00 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$45.50", acknowledgement = ack-nhfb, } @Book{Raymond:1993:NHD, author = "Eric Raymond and Guy L. Steele", title = "The New Hacker's Dictionary", publisher = pub-MIT, address = pub-MIT:adr, edition = "Second", pages = "xxi + 505", year = "1993", ISBN = "0-262-18154-1", ISBN-13 = "978-0-262-18154-9", LCCN = "PN6231.E4 H3 1993", bibdate = "Wed Jul 6 09:59:07 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "The New Hacker's Dictionary is a great book for learning about the various slang, jargon and customs and folklore of the 'net (as well as other lairs of the hacker.) Very silly and highly recommended. An FTPable version, called the Jargon File version 3.0, is available from rtfm.mit.edu, but the bound book makes great bathroom reading and contains silly cartoons and stuff.", acknowledgement = ack-ks, } @Book{Reichard:1993:PLD, author = "Kevin Reichard", title = "Power of \ldots{} Desqview/{X}", publisher = pub-MIS, address = pub-MIS:adr, pages = "436", year = "1993", ISBN = "1-55828-257-2", ISBN-13 = "978-1-55828-257-5", bibdate = "Sun Mar 6 17:27:16 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$27.95", acknowledgement = ack-nhfb, } @Book{Rice:1993:FSH, editor = "Jim Rice", title = "Five steps to {HP-UX}", publisher = "OnWord Press", address = "Santa Fe, NM", pages = "xvi + 120", year = "1993", ISBN = "0-934605-24-6", ISBN-13 = "978-0-934605-24-3", LCCN = "QA76.8.H48 F58 1993", bibdate = "Fri Apr 29 07:25:18 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, remark = "System requirements for computer disk: Hewlett Packard 9000 series computer; Hewlett Packard HP-UX..", subject = "Hewlett--Packard computers; Programming; UNIX (Computer file)", } @Article{Rinaldo:1993:ERH, author = "Frank J. Rinaldo and Matthew R. Fausey", title = "Event Reconstruction in High-Energy Physics", journal = j-COMPUTER, volume = "26", number = "6", pages = "68--77", month = jun, year = "1993", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Tue May 14 16:20:44 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Cooperative Processes Software, a parallel programming toolkit developed at Fermilab, runs as a collection of processes distributed over a network of more than 350 heterogeneous Unix-based workstations.", acknowledgement = ack-nhfb, affiliation = "Fermi Nat. Accel. Lab., Batavia, IL, USA", classification = "A2980F (Programming); C6110P (Parallel programming); C7320 (Physics and Chemistry)", keywords = "Cooperative Processes Software; CPS; CPU-intensive experimental data; Event reconstruction; Fermilab; High-energy physics; Parallel programming toolkit; Reduced-instruction-set-computer", thesaurus = "Parallel programming; Physics computing; Reduced instruction set computing", } @Article{Ritchie:1993:DCL, author = "Dennis M. Ritchie", title = "The development of the {C} language", journal = j-SIGPLAN, volume = "28", number = "3", pages = "201--208", month = mar, year = "1993", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:16:34 MST 2003", bibsource = "http://portal.acm.org/; http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/plan/154766/p201-ritchie/", abstract = "The C programming language was devised in the early 1970s as a system implementation language for the nascent Unix operating system. Derived from the typeless language BCPL, it evolved a type structure; created on a tiny machine as a tool to improve a meager programming environment, it has become one of the dominant languages of today. This paper studies its evolution.", acknowledgement = ack-nhfb, affiliation = "AT and T Bell Lab., Murray Hill, NJ, USA", classification = "C6140D (High level languages)", confdate = "20-23 April 1993", conflocation = "Cambridge, MA, USA", confname = "HOPL-II. The second ACM SIGPLAN conference on History of programming languages, April 20--23, 1993, Cambridge, MA", confsponsor = "ACM", keywords = "BCPL; C programming language; design; languages; Programming environment; standardization; Type structure; Typeless language; Unix operating system", subject = "{\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, C. {\bf K.2} Computing Milieux, HISTORY OF COMPUTING, Software. {\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, BCPL.", thesaurus = "C language; History", } @InProceedings{Rogers:1993:PSF, author = "D. Rogers and J. Ross", title = "{POSIX} Security Framework", crossref = "Anonymous:1993:CSA", pages = "432--441", year = "1993", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Rosen:1993:UT, author = "Kenneth Rosen and Richard Rosinski and James Farber", title = "1001 {UNIX} Tips", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, year = "1993", ISBN = "0-07-881924-5", ISBN-13 = "978-0-07-881924-7", bibdate = "Wed Sep 29 13:13:22 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-sk, } @Book{Rosenberry:1993:DAA, author = "Ward Rosenberry and Jim Teague", title = "Distributing Applications Across {DCE} and {Windows NT}", publisher = pub-ORA, address = pub-ORA:adr, pages = "302", month = nov, year = "1993", ISBN = "1-56592-047-3", ISBN-13 = "978-1-56592-047-7", LCCN = "QA76.9.D5 R65 1993", bibdate = "Tue Sep 13 12:30:08 1994", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$24.95", acknowledgement = ack-nhfb, } @Book{Rosenblatt:1993:LKS, author = "Bill Rosenblatt", title = "Learning the {Korn} Shell", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxii + 338", month = jun, year = "1993", ISBN = "1-56592-054-6", ISBN-13 = "978-1-56592-054-5", LCCN = "QA76.73.K67 R68 1993", bibdate = "Sat Sep 11 09:55:20 1999", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", URL = "http://www.oreilly.com/catalog/korn", acknowledgement = ack-nhfb, } @Book{Rost:1993:XMQ, author = "Randi J. Rost", title = "{X} and {Motif}\emdash Quick Reference Guide", publisher = pub-DP, address = pub-DP:adr, edition = "Second", pages = "vii + 398", year = "1993", ISBN = "1-55558-116-1, 1-55558-118-8", ISBN-13 = "978-1-55558-116-9, 978-1-55558-118-3", LCCN = "QA76.76.W56 R67 1993", bibdate = "Fri Dec 10 13:30:51 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$24.95", acknowledgement = ack-nhfb, } @Article{Rzehak:1993:RUW, author = "H. Rzehak", title = "Real-time {UNIX}: What performance can we expect?", journal = j-CONTROL-ENG-PRACT, volume = "1", number = "1", pages = "65--70", month = feb, year = "1993", CODEN = "COEPEL", ISSN = "0967-0661", bibdate = "Fri May 24 09:57:50 MDT 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "The paper deals with necessary enhancements of traditional UNIX systems in order to meet the requirements for real-time applications and gives an insight on sources of delays caused by the operating system. A survey of the real-time extensions for POSIX, the ISO\slash IEC standard operating system, is given. Some key parameters and basic concepts for implementing good real-time performance are discussed. Figures for commonly used metrics are provided.", acknowledgement = ack-nhfb, affiliation = "Universitaet der Bundeswehr Muenchen", affiliationaddress = "Neubiberg, Ger", classification = "722.4; 723.1; 731.2; 902.2", conference = "18th IFAC\slash IFIP Workshop on Real-Time Programming --- WRTP'92", journalabr = "Control Eng Pract", keywords = "Computer operating systems; Concurrency control; Control systems; Performance; POSIX real time extensions; Real time performance metrics; Real time systems; Reentrant system calls; Standards; UNIX", meetingaddress = "Brugge, Belg", meetingdate = "Jun 1992", meetingdate2 = "06/92", } @Book{Sanderson:1993:S, author = "David Sanderson and Dale Dougherty", title = "Smileys", publisher = pub-ORA, address = pub-ORA:adr, pages = "93", year = "1993", ISBN = "1-56592-041-4", ISBN-13 = "978-1-56592-041-5", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A `dictionary' of the smileys (aka: emoticons) \ldots {\tt :-)}", price = "US\$5.95", acknowledgement = ack-sk, } @Book{Schwartz:1993:LP, author = "Randal L. Schwartz", title = "Learning Perl", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxv + 246", year = "1993", ISBN = "1-56592-042-2", ISBN-13 = "978-1-56592-042-2", LCCN = "QA76.73.P224 S39 1993", bibdate = "Thu Jan 04 16:40:19 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$24.95", acknowledgement = ack-nhfb, } @TechReport{Segal:1993:OGI, author = "Mark Segal and Kurt Akeley", title = "The {OpenGL} Graphics Interface", institution = "Silicon Graphics Computer Systems", address = "Mountain View, CA,USA", year = "1993", bibdate = "Sat May 21 16:05:54 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-jc, } @TechReport{Segal:1993:OGS, author = "Mark Segal and Kurt Akeley", title = "The {OpenGL} Graphics System: {A} Specification", institution = "Silicon Graphics Computer Systems", address = "Mountain View, CA,USA", year = "1993", bibdate = "Sat May 21 16:04:27 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-jc, } @Book{Sheldon:1993:NNC, author = "Thomas Sheldon", title = "{Novell NetWare} 4: The Complete Reference", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, pages = "xxii + 920", year = "1993", ISBN = "0-07-881909-1", ISBN-13 = "978-0-07-881909-4", LCCN = "QA76.76.O63 S5537 1993", bibdate = "Wed Jun 29 22:05:48 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Probably the best book on the latest version of Novell NetWare (which provides better support for global networking) \ldots{}.", acknowledgement = ack-sk, } @Book{Sherlock:1993:UDM, author = "Margie Sherlock", title = "Using {DECwindows Motif} for {OpenVMS}", publisher = pub-DP, address = pub-DP:adr, pages = "xiii + 350", year = "1993", ISBN = "1-55558-114-5", ISBN-13 = "978-1-55558-114-5", LCCN = "QA76.76.W56 S497 1993", bibdate = "Mon Oct 4 13:54:23 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Singhal:1993:DOO, author = "Anoop Singhal and Robert M. Arlein and Chi-Yuan Lo", title = "{DDB}: an object oriented design data manager for {VLSI CAD}", journal = j-SIGMOD, volume = "22", number = "2", pages = "467--470", month = jun, year = "1993", CODEN = "SRECD8", ISBN = "0-89791-592-5", ISBN-13 = "978-0-89791-592-2", ISSN = "0163-5808 (print), 1943-5835 (electronic)", bibdate = "Mon Jan 12 08:45:44 MST 2004", bibsource = "Compendex database; http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "In this paper we present an object oriented data model for VLSI\slash CAD data. A design data manager (DDB) based on such a model has been implemented under the UNIX/C++ environment. It has been used by a set of diverse VLSI\slash CAD applications of our organization. Benchmarks have shown it to perform better as compared to commercial object oriented database systems. In conjunction with the ease of data access, the data manger served to improve software productivity and a modular program architecture for our CAD system.", acknowledgement = ack-nhfb, affiliation = "AT\&T Bell Lab", affiliationaddress = "Murray Hill, NJ, USA", classification = "714.2; 722.4; 723.1; 723.2; 723.3; 723.5; B1130B (Computer-aided circuit analysis and design); C6160J (Object-oriented databases); C7410D (Electronic engineering)", conference = "Proceedings of the 1993 ACM SIGMOD International Conference on Management of Data", conferenceyear = "1993", keywords = "Benchmarks; Computer aided analysis; Computer aided design; Data access; Data processing; Data structures; Database systems; Design data manager; Hierarchical design; Hierarchical systems; Integrated circuit layout; Logic design; Minimization of switching nets; Modular program architecture; Modular program architecture, DDB; Object oriented database system; Object oriented design data manager; Object oriented programming; Software productivity; UNIX; UNIX/C++; VLSI CAD; VLSI circuits", meetingaddress = "Washington, DC, USA", meetingdate = "May 26--28 1993", meetingdate2 = "05/26--28/93", publisherinfo = "Fort Collins Computer Center", sponsor = "ACM, SIGMOD; Minerals, Metals \& Materials Society", thesaurus = "Circuit CAD; Monolithic integrated circuits; Object-oriented databases; VLSI", xxcrossref = "Anonymous:1993:SAS", } @Book{Srinivasan:1993:UDP, author = "Balasubramaniam Srinivasan", title = "{UNIX} Document Processing and Typesetting", publisher = pub-WORLD-SCI, address = pub-WORLD-SCI:adr, pages = "xiv + 445", year = "1993", ISBN = "981-02-0605-4", ISBN-13 = "978-981-02-0605-5", LCCN = "Z52.5.U54S65 1993", bibdate = "Wed Aug 10 12:23:20 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Stallman:1993:GEM, author = "Richard M. Stallman", title = "{GNU EMACS} Manual", publisher = pub-FSF, address = pub-FSF:adr, edition = "Ninth", month = aug, year = "1993", ISBN = "1-882114-03-5", ISBN-13 = "978-1-882114-03-0", bibdate = "Thu Jan 13 12:06:33 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "This is the official manual for GNU Emacs. It is available both as a typeset document, and online in the Emacs {\tt info} system.", acknowledgement = ack-nhfb, } @Book{SunSoft:1993:SAD, author = "{SunSoft}", title = "{Solaris} application developer's guide", publisher = pub-SUNSOFT, address = pub-SUNSOFT:adr, pages = "xvi + 102 + 6", year = "1993", ISBN = "0-13-205097-8", ISBN-13 = "978-0-13-205097-5", LCCN = "QA76.76.O63 S625 1993", bibdate = "Tue May 23 11:15:30 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "????", acknowledgement = ack-nhfb, } @Book{SunSoft:1993:SDI, author = "{SunSoft}", title = "{Solaris} desktop integration guide", publisher = pub-SUNSOFT, address = pub-SUNSOFT:adr, pages = "xviii + 204", year = "1993", ISBN = "0-13-035726-X", ISBN-13 = "978-0-13-035726-7", LCCN = "QA76.76.O63 S627 1993", bibdate = "Tue May 23 11:19:50 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "????", acknowledgement = ack-nhfb, } @Book{SunSoft:1993:SOD, author = "{SunSoft}", title = "{Solaris OpenWindows} DeskSet reference", publisher = pub-SUNSOFT, address = pub-SUNSOFT:adr, pages = "xviii + 343", year = "1993", ISBN = "0-13-035718-9", ISBN-13 = "978-0-13-035718-2", LCCN = "QA76.76.W56 S64 1993", bibdate = "Tue May 23 11:16:46 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{SunSoft:1993:SOU, author = "{SunSoft}", title = "{Solaris OpenWindows} user's guide", publisher = pub-SUNSOFT, address = pub-SUNSOFT:adr, pages = "xvi + 311", year = "1993", ISBN = "0-13-035700-6", ISBN-13 = "978-0-13-035700-7", LCCN = "QA76.9.U83 S65 1993", bibdate = "Tue May 23 11:08:51 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "????", acknowledgement = ack-nhfb, } @Article{Szczur:1993:TPT, author = "Martha R. Szczur and Sylvia B. Sheppard", title = "{TAE} Plus: Transportable Applications Environment Plus: {A} User Interface Development Environment", journal = j-TOIS, volume = "11", number = "1", pages = "76--101", month = jan, year = "1993", CODEN = "ATISET", ISSN = "1046-8188", ISSN-L = "0734-2047", bibdate = "Sat Jan 16 19:04:41 MST 1999", bibsource = "Compendex database; http://www.acm.org/pubs/tois/toc.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80", abstract = "The Transportable Applications Environment Plus (TAE Plus${}^{TM}$) is a NASA-developed user interface development environment (UIDE) for the rapid prototyping, evaluation, implementation, and management of user interfaces. TAE Plus provides an intuitive What You see Is What You Get (WYSIWYG) WorkBench for designing an application's user interface. The WorkBench supports the creation and sequencing of displays, including real-time, data-driven display objects. Users can define context-sensitive help for a target application. They can rehearse the user interface and also generate code automatically. In addition, TAE Plus contains application services for the runtime manipulation and management of the user interface. Based on Motif${}^{TM}$ and the MIT X Window System${}^{TM}$, TAE Plus runs on a variety of Unix-or VMS-based workstations. TAE Plus is an evolving system. User-defined requirements and new technology guide the development of each new version. Advances in virtual operating systems, human factors, computer graphics, command language design, standardization, and software portability are monitored and incorporated as they become available.", acknowledgement = ack-nhfb, affiliation = "NASA", classification = "461.4; 723.5", journalabr = "ACM Trans Inf Syst", keywords = "Human engineering; Interfaces (computer); Prototyping; Software development; Software engineering; User interfaces", wwwauthor = "M. R. Szezur and S. B. Sheppard", wwwtitle = "{TAE Plus: Transportable Applications Environment Plus}", } @Manual{Timar:1993:FAQ, author = "Ted Timar", title = "The Frequently Asked Questions List", month = mar # " 18", year = "1993", bibdate = "Wed Sep 29 13:41:39 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "This is a multi-part list of often-asked UNIX questions (with answers). Read the postings on \path|news.answers| or get them by anonymous {\tt ftp} from \path|rtfm.mit.edu| (in \path|/pub/usenet/news.answers/unix-faq|).", acknowledgement = ack-sk, } @Book{Todino:1993:LUO, author = "Grace Todino and John Strang and Jerry Peek", title = "Learning the {UNIX} Operating System", publisher = pub-ORA, address = pub-ORA:adr, pages = "108", month = aug, year = "1993", ISBN = "1-56592-060-0", ISBN-13 = "978-1-56592-060-6", bibdate = "Mon Jan 3 17:39:58 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$9.95", acknowledgement = ack-nhfb, } @Book{Todino:LUS93, author = "Grace Todino and John Strang and Jerry Peek", title = "Learning the {UNIX} Operating System", publisher = pub-ORA, address = pub-ORA:adr, pages = "108", month = aug, year = "1993", ISBN = "1-56592-060-0", ISBN-13 = "978-1-56592-060-6", bibdate = "Mon Jan 3 17:39:58 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$9.95", acknowledgement = ack-nhfb, } @Book{Tuthill:1993:SID, author = "Bill Tuthill", title = "{Solaris} international developer's guide", publisher = pub-SUNSOFT, address = pub-SUNSOFT:adr, pages = "xxiv + 216", year = "1993", ISBN = "0-13-031063-8", ISBN-13 = "978-0-13-031063-7", LCCN = "QA76.76.O63 T89 1993", bibdate = "Tue May 23 11:07:35 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "????", acknowledgement = ack-nhfb, } @Article{UI:1993:PMA, author = "{UNIX International}", title = "Performance management activities within {UNIX International}", journal = j-SIGMETRICS, volume = "21", number = "2", pages = "42--42", month = dec, year = "1993", CODEN = "????", DOI = "http://doi.acm.org/10.1145/174215.174221", ISSN = "0163-5999 (print), 1557-9484 (electronic)", ISSN-L = "0163-5999", bibdate = "Thu Jun 26 11:16:24 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "The primary output of the UNIX International Work Group on Performance Measurement is a set of requirements and recommendations to UNIX International and UNIX System Laboratories for the development of standard performance measurement interfaces to the UNIX System. Requirements will be based on the collective, non-vendor specific needs for a standard performance architecture. Currently the lack of this standard causes undue porting and kernel additions by each UNIX System vendor as well as a great variety of approaches to gain the same basic performance insight into the system. Building tools to monitor, display, model, or predict performance or its trends is a frustrating and currently single vendor enterprise. By providing standard data structures, types of performance data gathered, and a common kernel interface to collect this data, the whole UNIX system vendor community along with the UNIX software vendors can develop performance tools which last more than one UNIX release and work on multiple UNIX platforms.", acknowledgement = ack-nhfb, } @Article{Weinstein:1993:TWU, author = "Sydney S. Weinstein", title = "{{\em Writing a UNIX Device Driver}}, 2nd edition, by {Janet I. Egan and Thomas J. Teixeira}", journal = j-CUJ, volume = "11", type = "Book review", number = "5", pages = "79--??", month = may, year = "1993", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "See \cite{Egan:1992:WUD}.", acknowledgement = ack-nhfb, } @Book{Williams:1993:JID, author = "Robin Williams and Steve Cummings", title = "Jargon: An Informal Dictionary of Computer Terms", publisher = pub-PEACHPIT, address = pub-PEACHPIT:adr, year = "1993", ISBN = "0-938151-84-3 (paperback)", ISBN-13 = "978-0-938151-84-5 (paperback)", LCCN = "QA 76.15.W56 1993", bibdate = "Fri Jun 10 13:03:26 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$22.00", acknowledgement = ack-nhfb, } @Book{Winsor:1993:SAS, author = "Janice Winsor", title = "{Solaris} advanced system administrator's guide", publisher = pub-SUNSOFT, address = pub-SUNSOFT:adr, pages = "xxvi + 477", year = "1993", ISBN = "1-56276-131-5", ISBN-13 = "978-1-56276-131-8", LCCN = "QA76.76.O63 W569 1993", bibdate = "Tue May 23 11:05:55 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95, CDN\$41.95", acknowledgement = ack-nhfb, } @Book{Winsor:1993:SSA, author = "Janice Winsor", title = "{Solaris} system administrator's guide", publisher = pub-SUNSOFT, address = pub-SUNSOFT:adr, pages = "xix + 288", year = "1993", ISBN = "1-56276-080-7", ISBN-13 = "978-1-56276-080-9", LCCN = "QA76.9.M3 W56 1993", bibdate = "Tue May 23 11:22:40 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95, CDN\$38.95", acknowledgement = ack-nhfb, } @Article{Woyna:1993:MBS, author = "Mark A. Woyna and John H. Christiansen and Christopher W. Hield and Kathy Lee Simunich", title = "Modeling battlefield sensor environments with an object database management system", journal = j-SIGMOD, volume = "22", number = "2", pages = "499--501", month = jun, year = "1993", CODEN = "SRECD8", ISBN = "0-89791-592-5", ISBN-13 = "978-0-89791-592-2", ISSN = "0163-5808 (print), 1943-5835 (electronic)", bibdate = "Mon Jan 12 08:45:44 MST 2004", bibsource = "Compendex database; http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "The Visual Intelligence and Electronic Warfare Simulation (VIEWS) Workbench software system has been developed by Argonne National Laboratory (ANL) to enable Army intelligence and electronic warfare (IEW) analysts at Unix workstations to conveniently build detailed IEW battlefield scenarios, or `sensor environments', to drive the Army's high-resolution IEW sensor performance models. VIEWS is fully object-oriented, including the underlying database.", acknowledgement = ack-nhfb, affiliation = "Adv. Comput. Applications Center, Argonne Nat. Lab.", affiliationaddress = "Argonne, IL, USA", classification = "404.1; 722.3; 722.4; 723.1.1; 723.3; 723.5; B7990 (Other and miscellaneous); C6160J (Object-oriented databases); C7150 (Military)", conference = "Proceedings of the 1993 ACM SIGMOD International Conference on Management of Data", conferenceyear = "1993", keywords = "Army intelligence; Battlefield sensor environment; C (programming language); Computer graphics; Computer simulation; Computer software; Computer workstations; Data processing; Database systems; Electronic warfare; Graphical user interface; IEW battlefield scenarios; Intelligence and electronic warfare, Battlefield sensor environments; Interactive computer systems; Object database management system; Object oriented programming; Sensors; UNIX; Unix workstations; User interfaces; Visual intelligence and electronic; Visual Intelligence and Electronic Warfare Simulation; Warfare simulation", meetingaddress = "Washington, DC, USA", meetingdate = "May 26--28 1993", meetingdate2 = "05/26--28/93", publisherinfo = "Fort Collins Computer Center", sponsor = "ACM, SIGMOD; Minerals, Metals \& Materials Society", thesaurus = "Digital simulation; Electronic warfare; Military systems; Object-oriented databases", xxcrossref = "Anonymous:1993:SAS", } @Manual{Wright:1993:YAB, author = "Mitch Wright", key = "Wright", title = "Yet Another Book List", month = jan # " 22", year = "1993", bibdate = "Tue Sep 28 14:37:02 1993", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "This is an excellent compilation of almost all {UNIX} and C book titles along with info for locating them and short reviews and summaries of book contents. You can get it (\path|yabl|) by anonymous {\tt ftp} from \path|ftp.rahul.net| (in \path|/pub/mitch/YABL|).", acknowledgement = ack-sk, } @InProceedings{Young:1993:PB, author = "C. R. Young", title = "{POSIX} Benefits", crossref = "Anonymous:1993:PPC", pages = "1327--1332", year = "1993", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @InProceedings{Alfieri:1994:EKI, author = "R. A. Alfieri", title = "An Efficient Kernel-Based Implementation of {POSIX} Threads", crossref = "Anonymous:1994:USC", pages = "59--72", year = "1994", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Anonymous:1994:DIS, author = "Anonymous", title = "{Dr. Inder Singh} on Realtime benchmarking", journal = j-COMP-DESIGN, volume = "33", number = "2", pages = "125--??", day = "1", month = feb, year = "1994", CODEN = "CMPDAM", ISSN = "0010-4566", bibdate = "Sat May 25 15:28:26 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", abstract = "While the advent of the POSIX standards have slowly dragged the real-time world toward true applications portability, the issue of benchmarking and performance metrics still remains in the Dark Ages.", acknowledgement = ack-nhfb, } @Article{Anonymous:1994:GN, author = "Anonymous", title = "Graphic News", journal = j-IEEE-CGA, volume = "14", number = "1", pages = "79--??", month = jan, year = "1994", CODEN = "ICGADZ", ISSN = "0272-1716 (print), 1558-1756 (electronic)", ISSN-L = "0272-1716", bibdate = "Fri Jan 5 07:58:42 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Multimedia Patent; Unix API Spec; HDTV Technology.", acknowledgement = ack-nhfb, } @Article{Anonymous:1994:ISM, author = "Anonymous", title = "{Integrated Systems' Moses Joseph} on: Realtime {POSIX}: Boon or Bunk?", journal = j-COMP-DESIGN, volume = "33", number = "10", pages = "155--??", day = "1", month = sep, year = "1994", CODEN = "CMPDAM", ISSN = "0010-4566", bibdate = "Sat May 25 15:28:26 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", abstract = "Some people wonder why it's taking so long to develop standards for what should be a tidy, containable subset of software technologies.", acknowledgement = ack-nhfb, } @Article{Anonymous:1994:OPN, author = "Anonymous", title = "{OpenGL} Programs a New Horizon for Sun", journal = j-SUNWORLD, volume = "??", number = "??", pages = "15--17", month = jan, year = "1994", CODEN = "SUNWDW", ISSN = "0149-1938", bibdate = "Sat May 21 15:58:13 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-jc, } @Article{Anonymous:1994:PKP, author = "Anonymous", title = "{PSX} kernel provides {POSIX} subset", journal = j-COMP-DESIGN, volume = "33", number = "12", pages = "90--??", day = "1", month = nov, year = "1994", CODEN = "CMPDAM", ISSN = "0010-4566", bibdate = "Sat May 25 15:28:26 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", acknowledgement = ack-nhfb, } @Article{Anonymous:1994:POS, author = "Anonymous", title = "The {POSIX} Open System Environment", journal = j-NIST-SPEC-PUBL, volume = "??", number = "800", pages = "7--??", month = "????", year = "1994", CODEN = "NSPUE2", ISSN = "1048-776X", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Anonymous:1994:PSI, author = "Anonymous", title = "{POSIX} Security Interfaces and Mechanisms", journal = j-NIST-SPEC-PUBL, volume = "??", number = "800", pages = "19--??", month = "????", year = "1994", CODEN = "NSPUE2", ISSN = "1048-776X", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Anonymous:1994:RAR, author = "Anonymous", title = "Real-time applications require open systems and stress use of {Posix} standard", journal = j-FED-COMPUTER-WEEK, volume = "8", number = "19", pages = "34--??", month = jul, year = "1994", ISSN = "0893-052X", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Anonymous:1994:SS, author = "Anonymous", title = "Software\slash Systems", journal = j-GOV-COMP-NEWS, volume = "13", number = "16", pages = "56--??", month = jul, year = "1994", ISSN = "0738-4300", bibdate = "Tue Apr 22 07:39:57 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "It's a Unix jungle out there, as Posix 2., XPG4 and Spec 1170 put interoperability into a whole new realm. Competition make the National Information Infrastructure more of a railway than a highway. Just when you thought Ada 94 would finally arrive\ldots{}.Microelectronics and Computer Technology Corp.'s Mac Web challenges Mosaic as freeware for the Internet.", acknowledgement = ack-nhfb, } @Book{ANSI:1994:ISI, author = "{American National Standards Institute}", title = "{IEEE} standard for information technology: {Portable Operating Sytem Interface (POSIX)}. Part 1, system application program interface {(API)} --- amendment 1 --- realtime extension [{C} language]", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xxiii + 590", year = "1994", ISBN = "1-55937-375-X", ISBN-13 = "978-1-55937-375-3", LCCN = "TK 153 I59i no.1003.1b 1994", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "IEEE Std 1003.1b-1993 (formerly known as IEEE P1003.4; includes IEEE Std 1003.1-1990). Approved September 15, 1993, IEEE Standards Board. Approved April 14, 1994, American National Standards Institute.", acknowledgement = ack-nhfb, keywords = "C (computer program language); computer interfaces -- standards; computer software -- development -- standards; POSIX (computer software standard); real-time programming -- standards", } @Book{Arthur:1994:USP, author = "Lowell Arthur", title = "{UNIX} Shell Programming", publisher = pub-WILEY-INTERSCIENCE, address = pub-WILEY-INTERSCIENCE:adr, edition = "Third", pages = "xiv + 462", year = "1994", ISBN = "0-471-59941-7", ISBN-13 = "978-0-471-59941-8", LCCN = "QA76.76.O63 A765 1994", bibdate = "Wed Jul 6 12:34:21 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "This covers not only common shells but also general software tool concepts.", price = "US\$29.95", acknowledgement = ack-sk, } @InProceedings{Baker:1994:EPP, author = "T. P. Baker and Frank Mueller and Viresh Rustagi", title = "Experience with a Prototype of the {POSIX} ``Minimal Realtime System Profile''", crossref = "IEEE:1994:ROS", pages = "12--17", year = "1994", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This paper describes experience prototyping the proposed IEEE standard `minimal realtime system profile', whose primary component is support for real-time threads. It provides some background, describes the implementation, and reports preliminary performance measurements.", acknowledgement = ack-nhfb, affiliation = "Florida State Univ", affiliationaddress = "Tallahassee, FL, USA", classification = "722.4; 723.1; 723.1.1; 723.2", conference = "Proceedings of the 11th IEEE Workshop on Real-Time Operating Systems and Software", conferenceyear = "1994", journalabr = "Proc IEEE Workshop Real Time Oper Syst Software", keywords = "Computer operating systems; Computer software portability; Data structures; High level languages; Interfaces (computer); Mesa programming language; Minimal real time system profile; Program processors; Real time systems; Thread; Thread management; Thread priority scheduling", meetingaddress = "Seattle, WA, USA", meetingdate = "May 18--19 1994", meetingdate2 = "05/18--19/94", publisherinfo = "Computer Society Press", sponsor = "IEEE Computer Society", } @Article{Ballinger:1994:ETD, author = "Carrie Ballinger", title = "Evolving Teradata Decision Support for Massively Parallel Processing with {UNIX}", journal = j-SIGMOD, volume = "23", number = "2", pages = "490--490", month = jun, year = "1994", CODEN = "SRECD8", ISSN = "0163-5808 (print), 1943-5835 (electronic)", bibdate = "Mon Jan 12 08:45:48 MST 2004", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliation = "AT and T Global Inf. Solutions, El Segundo, CA, USA", classification = "C5440 (Multiprocessor systems and techniques); C6150J (Operating systems); C6160 (Database management systems (DBMS)); C7102 (Decision support systems)", keywords = "Commercial decision support accounts; Hardware; Intel-based processors; Massively parallel processing; Performance improvements; Proprietary interconnect; Shared-nothing message-passing parallel database computer; Software; Teradata decision support; UNIX; YNet", thesaurus = "Database management systems; Decision support systems; Message passing; Parallel machines; Special purpose computers; Unix", xxcrossref = "Anonymous:1994:ASI", } @Book{Barkakati:1994:XWS, author = "Nabajyoti Barkakati", title = "{X Window System} programming", publisher = pub-SAMS, address = pub-SAMS:adr, edition = "Second", pages = "xxiv + 980", year = "1994", ISBN = "0-672-30542-9", ISBN-13 = "978-0-672-30542-9", LCCN = "QA76.76.W56 B36 1994", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "System requirements for computer disk: PC with 486 microprocessor; 8MB RAM; DOS; X Window System; SVGA graphics capabilities; hard disk with 300MB free space.", acknowledgement = ack-nhfb, keywords = "X Window System (computer system)", } @TechReport{Blackford:1994:QIG, author = "S. Blackford and J. Dongarra", title = "Quick Installation Guide for {LAPACK} on {Unix} Systems", type = "LAPACK Working Note", number = "81", institution = inst-UT-CS, address = inst-UT-CS:adr, month = sep, year = "1994", bibdate = "Fri Apr 22 17:06:37 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "UT-CS-94-249, September, 1994.", URL = "http://www.netlib.org/lapack/lawns/lawn81.ps; http://www.netlib.org/lapack/lawnspdf/lawn81.pdf", acknowledgement = ack-nhfb, } @Article{Borr:1994:HDS, author = "Andrea Borr and Carol Wilhelmy", title = "Highly-Available Data Services for {UNIX} Client-Server Networks: Why Fault Tolerant Hardware Isn't the Answer", journal = j-LECT-NOTES-COMP-SCI, volume = "774", pages = "285--??", year = "1994", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", bibdate = "Mon May 13 11:52:14 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Brown:1994:GFF, author = "C. Wayne Brown and Barry J. Shepherd", title = "Graphics File Formats", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "488", year = "1994", ISBN = "1-884777-00-7", ISBN-13 = "978-1-884777-00-4", LCCN = "T385 .B777 1994", bibdate = "Thu Oct 13 11:05:20 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$35.00", acknowledgement = ack-nhfb, } @TechReport{Burrows:1994:BSL, author = "Michael Burrows and D. J. Wheeler", title = "A block-sorting lossless data compression algorithm", type = "Research Report", number = "124", institution = "Digital SRC", address = "Palo Alto, CA, USA", day = "10", month = may, year = "1994", bibdate = "Tue Dec 06 08:40:12 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "This is the second of four key papers behind the {\tt bzip2} compression tools. The others are \cite{Hirschberg:1990:EDP,Wheeler:1997:UBM,Sedgewick:1997:FAS}.", URL = "ftp://ftp.digital.com/pub/DEC/SRC/research-reports/SRC-124.ps.gz", acknowledgement = ack-nhfb, } @Article{Cashin:1994:BFP, author = "Jerry Cashin", title = "Bloom Fading From {Posix} Rose As Open Focus Shifts", journal = j-SOFTWARE-MAG, volume = "14", number = "3", pages = "87--??", month = mar, year = "1994", CODEN = "SMWMEQ", ISSN = "0897-8085", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", abstract = "The IEEE specs face competition from other open systems initiatives.", acknowledgement = ack-nhfb, } @Article{Chandra:1994:SPM, author = "Rohit Chandra and Scott Devine and Ben Verghese and Anoop Gupta and Mendel Rosenblum", title = "Scheduling and page migration for multiprocessor compute servers", journal = j-SIGPLAN, volume = "29", number = "11", pages = "12--24", month = nov, year = "1994", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:16:57 MST 2003", bibsource = "http://portal.acm.org/; http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80/pubs/citations/proceedings/asplos/195473/p12-chandra/", abstract = "Several cache-coherent shared-memory multiprocessors have been developed that are scalable and offer a very tight coupling between the processing resources. They are therefore quite attractive for use as compute servers for multiprogramming and parallel application workloads. Process scheduling and memory management, however, remain challenging due to the distributed main memory found on such machines. This paper examines the effects of OS scheduling and page migration policies on the performance of such compute servers. Our experiments are done on the Stanford DASH, a distributed-memory cache-coherent multiprocessor. We show that for our multiprogramming workloads consisting of sequential jobs, the traditional Unix scheduling policy does very poorly. In contrast, a policy incorporating cluster and cache affinity along with a simple page-migration algorithm offers up to two-fold performance improvement. For our workloads consisting of multiple parallel applications, we compare space-sharing policies that divide the processors among the applications to time-slicing policies such as standard Unix or gang scheduling. We show that space-sharing policies can achieve better processor utilization due to the operating point effect, but time-slicing policies benefit strongly from user-level data distribution. Our initial experience with automatic page migration suggests that policies based only on TLB miss information can be quite effective, and useful for addressing the data distribution problems of space-sharing schedulers.", acknowledgement = ack-nhfb, classification = "C5440 (Multiprocessing systems); C6120 (File organisation); C6150J (Operating systems); C6150N (Distributed systems software)", conflocation = "San Jose, CA, USA; 4-7 Oct. 1994", conftitle = "Sixth International Conference on Architectural Support for Programming Languages and Operating Systems (ASPLOS-VI)", corpsource = "Comput. Syst. Lab., Stanford Univ., CA, USA", keywords = "algorithms; cache affinity; cache coherent shared memory multiprocessors; design; distributed main memory; distributed memory cache coherent multiprocessor; distributed memory systems; experimentation; gang scheduling; measurement; memory management; multiple parallel applications; multiprocessor compute servers; multiprogramming; operating point effect; OS scheduling; page migration; paged storage; parallel application workloads; performance; performance improvement; process scheduling; processing resources; processor scheduling; processor utilization; scheduling policy; sequential jobs; shared memory systems; space sharing policies; Stanford DASH; storage management; theory; time slicing policies; Unix scheduling policy", sponsororg = "ACM; IEEE Comput. Soc", subject = "{\bf D.4.1} Software, OPERATING SYSTEMS, Process Management, Scheduling.", treatment = "P Practical", } @Article{Chase:1994:SPS, author = "Jeffrey S. Chase and Henry M. Levy and Michael J. Feeley and Edward D. Lazowska", title = "Sharing and Protection in a Single-Address-Space Operating System", journal = j-TOCS, volume = "12", number = "4", pages = "271--307", month = nov, year = "1994", CODEN = "ACSYEC", ISSN = "0734-2071", bibdate = "Wed Jan 13 18:36:53 MST 1999", bibsource = "http://www.acm.org/pubs/contents/journals/tocs/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80/pubs/citations/journals/tocs/1994-12-4/p271-chase/", abstract = "This article explores memory sharing and protection support in Opal, a single-address-space operating system designed for wide-address (64-bit) architectures. Opal threads execute within protection domains in a single shared virtual address space. Sharing is simplified, because addresses are context independent. There is no loss of protection, because addressability and access are independent; the right to access a segment is determined by the protection domain in which a thread executes. This model enables beneficial code-and data-sharing patterns that are currently prohibitive, due in part to the inherent restrictions of multiple address spaces, and in part to Unix programming style. We have designed and implemented an Opal prototype using the Mach 3.0 microkernel as a base. Our implementation demonstrates how a single-address-space structure can be supported alongside of other environments on a modern microkernel operating system, using modern wide-address architectures. This article justifies the Opal model and its goals for sharing and protection, presents the system and its abstractions, describes the prototype implementation, and reports experience with integrated applications.", acknowledgement = ack-nhfb, keywords = "design; experimentation; measurement; performance", subject = "{\bf D.4.2} Software, OPERATING SYSTEMS, Storage Management. {\bf C.1.3} Computer Systems Organization, PROCESSOR ARCHITECTURES, Other Architecture Styles, Capability architectures**. {\bf D.3.3} Software, PROGRAMMING LANGUAGES, Language Constructs and Features, Modules, packages. {\bf D.4.4} Software, OPERATING SYSTEMS, Communications Management. {\bf D.4.6} Software, OPERATING SYSTEMS, Security and Protection, Access controls. {\bf D.4.6} Software, OPERATING SYSTEMS, Security and Protection, Information flow controls. {\bf D.4.7} Software, OPERATING SYSTEMS, Organization and Design. {\bf D.4.8} Software, OPERATING SYSTEMS, Performance, Measurements. {\bf E.1} Data, DATA STRUCTURES. {\bf E.2} Data, DATA STORAGE REPRESENTATIONS.", } @Article{Cheek:1994:ITB, author = "M. Cheek", title = "Industry Trends: 32-bit computing: road to confusion?", journal = j-COMPUTER, volume = "27", number = "7", pages = "13--14", month = jul, year = "1994", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Mon Feb 3 07:28:57 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliation = "Edittech Int., London, UK", classification = "C0200 (General computer topics); C6150J (Operating systems)", keywords = "32 Bit; 32-Bit computing; Chicago; NextStep; NT; Operating systems; OS/2; Software engineers; Taligent; Unix; Windows 4.0", numericalindex = "Word length 3.2E+01 bit", thesaurus = "DP industry; Operating systems [computers]", } @Book{Cheswick:1994:FIS, author = "William R. Cheswick and Steven M. Bellovin", title = "Firewalls and Internet Security: Repelling the Wily Hacker", publisher = pub-AW, address = pub-AW:adr, pages = "xiv + 306", year = "1994", ISBN = "0-201-63357-4", ISBN-13 = "978-0-201-63357-3", LCCN = "TK5105.875.I57C44 1994", bibdate = "Wed May 18 19:08:21 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$24.95", acknowledgement = ack-nhfb, } @Book{Christian:1994:UOS, author = "Kaare Christian and Susan Richter", title = "The {UNIX} Operating System", publisher = pub-WILEY-INTERSCIENCE, address = pub-WILEY-INTERSCIENCE:adr, edition = "Third", year = "1994", ISBN = "0-471-58684-6", ISBN-13 = "978-0-471-58684-5", LCCN = "QA76.76.O63 C465 1994", bibdate = "Wed Jul 6 13:19:58 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-sk, comment = "A classic overview of UNIX commands \ldots{} good in coverage \ldots{}", } @Book{Cockcroft:1994:SPT, author = "Adrian Cockcroft", title = "{Sun} Performance and Tuning: {SPARC} and {Solaris}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "254", year = "1994", ISBN = "0-13-149642-5", ISBN-13 = "978-0-13-149642-2", LCCN = "QA76.8.S86 C63 1994", bibdate = "Tue May 23 11:13:29 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$38.00", acknowledgement = ack-nhfb, } @Book{Cohn:1994:AC, author = "David L. Cohn", title = "An {AIX} Companion", publisher = pub-PH, address = pub-PH:adr, pages = "xvii + 476", year = "1994", ISBN = "0-13-291220-1", ISBN-13 = "978-0-13-291220-4", LCCN = "QA76.76.O63 C64 1994", bibdate = "Fri Jun 02 17:01:21 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$38.00", acknowledgement = ack-nhfb, review = "Sys Admin 3(6), 99-106 (1994).", } @Article{Collinson:1994:PKP, author = "P. Collinson", title = "Pop {Korn} --- The {POSIX} Shell", journal = j-EXE, volume = "8", number = "9", pages = "64--??", month = "????", year = "1994", CODEN = "EXEEE5", ISSN = "0268-6872", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Manual{CSL:1994:POS, author = "{Computer Systems Laboratory (U.S.)}", title = "{Portable Operating System Interface (POSIX)}. Part 2, Shell and utilities", volume = "189", publisher = pub-NTIS, address = pub-NTIS:adr, pages = "7", day = "11", month = oct, year = "1994", LCCN = "JK468.A8 A31 no.189", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Shipping list no.: 95-0036-P.", series = "FIPS PUB", acknowledgement = ack-nhfb, keywords = "operating systems (computers) -- standards -- United States; utilities (computer programs) -- standards -- United States", } @Book{CSRG:1994:CRC, author = "{Computer Systems Research Group, UC Berkeley}", title = "{4.4BSD}-Lite {CD-ROM} Companion", publisher = pub-ORA, address = pub-ORA:adr, pages = "112", month = jun, year = "1994", ISBN = "1-56592-081-3 (domestic edition), 1-56592-092-9 (international edition)", ISBN-13 = "978-1-56592-081-1 (domestic edition), 978-1-56592-092-7 (international edition)", LCCN = "QA76.8.U65F67 .F684 1994", bibdate = "Tue Jan 16 06:44:18 1996", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$40.00", acknowledgement = ack-nhfb, review = "Sys Admin 3(6), 99-106 (1994).", } @Book{CSRG:1994:PRM, author = "{Computer Systems Research Group, UC Berkeley}", title = "{4.4BSD} Programmer's Reference Manual", publisher = pub-ORA, address = pub-ORA:adr, pages = "886", month = jun, year = "1994", ISBN = "1-56592-078-3", ISBN-13 = "978-1-56592-078-1", LCCN = "QA76.8.U65 F682 1994", bibdate = "Sat Dec 02 16:58:23 1995", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$30.00", acknowledgement = ack-nhfb, review = "Sys Admin 3(6), 99-106 (1994).", } @Book{CSRG:1994:PSD, author = "{Computer Systems Research Group, UC Berkeley}", title = "{4.4BSD} Programmer's Supplementary Documents", publisher = pub-ORA, address = pub-ORA:adr, pages = "596", month = jul, year = "1994", ISBN = "1-56592-079-1", ISBN-13 = "978-1-56592-079-8", LCCN = "QA76.8.U65 F683 1994", bibdate = "Sat Dec 02 16:58:50 1995", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$30.00", acknowledgement = ack-nhfb, review = "Sys Admin 3(6), 99-106 (1994).", } @Book{CSRG:1994:SMM, author = "{Computer Systems Research Group, UC Berkeley}", title = "{4.4BSD} System Manager's Manual", publisher = pub-ORA, address = pub-ORA:adr, pages = "804", month = jun, year = "1994", ISBN = "1-56592-080-5", ISBN-13 = "978-1-56592-080-4", LCCN = "QA76.8.U65 F68 1994", bibdate = "Sat Dec 02 16:59:16 1995", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$30.00", acknowledgement = ack-nhfb, review = "Sys Admin 3(6), 99-106 (1994).", } @Book{CSRG:1994:URM, author = "{Computer Systems Research Group, UC Berkeley}", title = "{4.4BSD} User's Reference Manual", publisher = pub-ORA, address = pub-ORA:adr, pages = "905", month = jun, year = "1994", ISBN = "1-56592-075-9", ISBN-13 = "978-1-56592-075-0", LCCN = "QA76.8.U65 F67 1994", bibdate = "Sat Dec 02 17:00:23 1995", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$30.00", acknowledgement = ack-nhfb, review = "Sys Admin 3(6), 99-106 (1994).", } @Book{CSRG:1994:USD, author = "{Computer Systems Research Group, UC Berkeley}", title = "{4.4BSD} User's Supplementary Documents", publisher = pub-ORA, address = pub-ORA:adr, pages = "712", month = jul, year = "1994", ISBN = "1-56592-076-7", ISBN-13 = "978-1-56592-076-7", LCCN = "QA76.8.U65 F672 1994", bibdate = "Tue Sep 13 11:59:48 MDT 1994", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$30.00", acknowledgement = ack-nhfb, review = "Sys Admin 3(6), 99-106 (1994).", } @Book{Cutler:1994:SUN, author = "Ellie Cutler and {The staff of O'Reilly and Associates}", title = "{SCO UNIX} in a Nutshell", publisher = pub-ORA, address = pub-ORA:adr, pages = "xix + 568", month = feb, year = "1994", ISBN = "1-56592-037-6", ISBN-13 = "978-1-56592-037-8", LCCN = "QA76.76.O63 C93 1994", bibdate = "Mon Sep 30 16:07:37 1996", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$19.95", URL = "http://www.oreilly.com/catalog/sco", acknowledgement = ack-nhfb, } @Article{Deshmukh:1994:RTM, author = "G. Deshmukh and R. Deshpande and J. Leathrum and K. Liburdy", title = "Role of testing methodologies in open systems standards", journal = j-PROC-INT-CONF-SOFTWARE-ENG, pages = "233--240", year = "1994", CODEN = "PCSEDE", ISSN = "0270-5257", bibdate = "Fri May 24 09:57:50 MDT 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "IEEE catalog number 94CH3409-0.", abstract = "This paper describes the lifecycle role of a conformance testing research facility in the open systems standards environment. This facility, the Clemson Automated Testing System (CATS), has demonstrated the value of integrating formalized test methods within all phases of standards development. IEEE's effort to develop a standard for operating systems interfaces (POSIX) has provided a working environment to investigate and evaluate the capabilities of CATS. In this arena, CATS has proven valuable in exposing critical issues in the emerging standard and in formulating feasible solutions on multiple occasions. The role of CATS in the areas of automated testing, profile development and real-time extensions is described. A discussion of future for CATS and testing in open system standards concludes the paper.", acknowledgement = ack-nhfb, affiliation = "Clenson Univ", affiliationaddress = "Clemson, SC, USA", classification = "723; 902; 902.3", conference = "Proceedings of the 16th International Conference on Software Engineering", journalabr = "Proc Int Conf Software Eng", keywords = "Clemson automated testing system (CATS); Computer software; Conformance testing research facility; Open systems standards; Operating systems interfaces (POSIX); Standards", meetingaddress = "Sorrento, Italy", meetingdate = "May 16--21 1994", meetingdate2 = "05/16--21/94", sponsor = "IEEE Computer Society; ACM Special Interest Group on Software Engineering (SIGSOFT); Associazione Italiana per l'Informatica ed il Calcolo Automatico (AICA)", } @Article{Diaz:1994:PNG, author = "Bernard M. Diaz", title = "Place for novelty in graphics and visualisation education", journal = j-COMPUTERS-AND-GRAPHICS, volume = "18", number = "3", pages = "281--286", month = may # "--" # jun, year = "1994", CODEN = "COGRD2", ISSN = "0097-8493", bibdate = "Wed Feb 5 07:22:58 MST 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliation = "Univ of Liverpool", affiliationaddress = "Liverpool, Engl", classification = "722.4; 723.1; 723.2; 723.5; 901.2", conferenceyear = "1994", journalabr = "Comput Graphics (Pergamon)", keywords = "Computer graphics; Computer software; Computer vision; Computer workstations; Data processing; Design; Education; Image analysis; Image processing; Image synthesis; Standardization; Student; Teaching; UNIX; Visual system; Visualization; Visualization education", } @Book{Dougherty:1994:MHX, author = "Dale Dougherty and Richard Koman and Paula Ferguson", title = "The {Mosaic} Handbook for the {X Window System}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxiii + 262", month = oct, year = "1994", ISBN = "1-56592-095-3", ISBN-13 = "978-1-56592-095-8", LCCN = "TK5105.875.I57 D687 1994", bibdate = "Sat Dec 02 17:02:57 1995", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @Book{DuCharme:1994:OSH, author = "Bob DuCharme", title = "The operating systems handbook: {UNIX}, {OpenVMS}, {OS\slash 400}, {VM} and {MVS}", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xvii + 390", year = "1994", ISBN = "0-07-017891-7", ISBN-13 = "978-0-07-017891-5", LCCN = "QA76.76.O63 D83 1994", bibdate = "Fri Jan 22 09:46:48 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.50", acknowledgement = ack-nhfb, } @Book{Flanagan:1994:MTS, author = "David Flanagan", title = "{Motif} Tools: Streamlined {GUI} Design and Programming with the {Xmt} Library", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxxvii + 984", year = "1994", ISBN = "1-56592-044-9", ISBN-13 = "978-1-56592-044-6", LCCN = "QA76.76.W56 F53 1994", bibdate = "Sat Dec 02 17:03:32 1995", bibsource = "ftp://ftp.ora.com/pub/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$54.95 (CD-ROM included)", acknowledgement = ack-nhfb, } @Book{Frey:1994:VDE, author = "Donnalyn Frey and Rick Adams", title = "\verb|!%@|:: {A} Directory of Electronic Mail Addressing and Networks", publisher = pub-ORA, address = pub-ORA:adr, edition = "Fourth", pages = "662", year = "1994", ISBN = "1-56592-046-5", ISBN-13 = "978-1-56592-046-0", LCCN = "HE6239.E54 F73 1989", bibdate = "Wed Jul 6 09:09:13 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$9.95", acknowledgement = ack-nhfb, } @Book{Garfinkel:1994:UHH, editor = "Simson Garfinkel and Daniel Weise and Steven Strassmann", title = "The {UNIX}-haters handbook", publisher = pub-IDG, address = pub-IDG:adr, pages = "xxxvii + 329", year = "1994", ISBN = "1-56884-203-1", ISBN-13 = "978-1-56884-203-5", LCCN = "QA 76.76 .O63 U54518 1994", bibdate = "Fri Jan 13 07:42:58 MST 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; sirsi.library.utoronto.ca:2200/UNICORN", URL = "http://research.microsoft.com/~daniel/uhh-download.html; http://research.microsoft.com/~daniel/unix-haters.html", acknowledgement = ack-nhfb, remark = "Out of print, but available online at the indicated URL.", subject = "UNIX (Computer file); Operating systems (Computers)", } @Book{Goodheart:1994:MGE, author = "Berny Goodheart and James Cox", title = "The Magic Garden Explained: The Internals of {UNIX} System {V} Release 4, an Open Systems Design", publisher = pub-PH, pages = "xxviii + 664", year = "1994", ISBN = "0-13-098138-9", ISBN-13 = "978-0-13-098138-7", LCCN = "QA76.76.O63 G6633 1994", bibdate = "Wed Aug 10 11:59:36 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Probably a good companion to \cite{Bach:1986:DUO} \ldots{}. Covering the internals, system calls, kernal of {System V Release 4} \ldots{}.", price = "US\$38.00", acknowledgement = ack-sk, } @Book{Graff:1994:PRM, author = "Mark Graff", title = "{PEX}lib: {A} Reference Manual", publisher = pub-PH, address = pub-PH:adr, pages = "425", year = "1994", ISBN = "0-13-176066-1", ISBN-13 = "978-0-13-176066-0", LCCN = "QA76.76.W56 G83 1993", bibdate = "Sat Nov 12 21:54:56 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @InProceedings{Gropp:1994:SUT, author = "W. Gropp and E. Lusk", title = "Scalable {Unix} Tools on Parallel Processors", crossref = "IEEE:1994:PSH", pages = "56--62", year = "1994", bibdate = "Mon Aug 26 10:38:41 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Hagimont:1994:PSO, author = "Daniel Hagimont and P.-Y. Chevalier and A. Freyssinet and S. Krakowiak and S. Lacourte and J. Mossi{\`e}re and X. Rousset de Pina", title = "Persistent Shared Object Support in the {Guide} System: Evaluation and Related Work", journal = j-SIGPLAN, volume = "29", number = "10", pages = "129--144", month = oct, year = "1994", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:16:55 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C6160B (Distributed DBMS); C6160J (Object-oriented databases)", conflocation = "Portland, OR, USA; 23-27 Oct. 1994", conftitle = "Ninth Annual Conference on Object-Oriented Programming Systems, Languages, and Applications. OOPSLA '94", corpsource = "Bull/IMAG Syst., Gieres, France", keywords = "design choices; distributed cooperative applications; distributed databases; distributed object-oriented systems; distributed system communication; efficiency; fine grained objects; generic interface; Guide system; Mach 3.0; object-oriented databases; object-oriented languages; persistent shared object support; protection enforcement; resistant share; system layer; Unix", sponsororg = "ACM", treatment = "P Practical", } @Book{Hahn:1994:OCU, author = "Harley Hahn", title = "Open Computing's {UNIX} Unbound", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, pages = "xxxi + 792", year = "1994", ISBN = "0-07-882050-2", ISBN-13 = "978-0-07-882050-2", LCCN = "QA76.76.O63 H343 1994", bibdate = "Fri May 17 08:48:03 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$27.95", acknowledgement = ack-nhfb, } @Book{Hardenbergh:1994:BAP, author = "Jan ``Yon'' Hardenbergh", title = "Building Applications with {PEX}lib", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xiv + 542", year = "1994", ISBN = "0-13-012535-0", ISBN-13 = "978-0-13-012535-4", LCCN = "QA76.76.W56 H36 1994", bibdate = "Wed Aug 10 11:12:55 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Hindin:1994:IAO, author = "Harvey Hindin and Wendy Rauch", title = "{IBM}'s {AS\slash 400} Openness Strategy", journal = j-3X-400-SYST-MANAG, volume = "22", number = "12", pages = "54--??", day = "1", month = dec, year = "1994", ISSN = "1070-6097", bibdate = "Sat May 25 15:28:26 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", abstract = "IBM faces problems in complying with openness standards. Here's how it is meeting those challenges, and the specifics of its work toward POSIX compliance.", acknowledgement = ack-nhfb, } @Book{Hunter:1994:UN, author = "Bruce Hunter and Karen Hunter", title = "{UNIX} Networks", publisher = pub-PHPTR, address = pub-PHPTR:adr, year = "1994", ISBN = "0-13-089087-1", ISBN-13 = "978-0-13-089087-0", LCCN = "TK5105.7 .H84 1994", bibdate = "Wed Jun 29 20:59:12 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Discussing common real-life issues\slash problems with setting up and maintaining networks \ldots{}.", acknowledgement = ack-sk, } @Book{Jaeschke:1994:DSCa, author = "Rex Jaeschke", title = "The Dictionary of Standard {C}", publisher = pub-HBJ, address = pub-HBJ:adr, edition = "{Japanese} language", pages = "240", year = "1994", ISBN = "4-8337-8523-4", ISBN-13 = "978-4-8337-8523-5", bibdate = "Wed Dec 02 17:58:36 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Jaeschke:1994:DSCb, author = "Rex Jaeschke", title = "The Dictionary of Standard {C}", publisher = "Piter", address = "St. Petersburg, Russia", edition = "{Russian} language", pages = "221", year = "1994", ISBN = "5-7190-0018-6", ISBN-13 = "978-5-7190-0018-3", bibdate = "Wed Dec 02 17:58:44 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Kanev:1994:FGH, author = "Kamen Kanev and Kris Dockx", title = "A framework for graphically-oriented human computer interactions in intelligent operator support systems", journal = j-COMPUTERS-AND-GRAPHICS, volume = "18", number = "4", pages = "563--570", month = jul # "--" # aug, year = "1994", CODEN = "COGRD2", ISSN = "0097-8493", bibdate = "Wed Feb 5 07:22:58 MST 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliation = "Katholieke Universiteit Leuven", affiliationaddress = "Heverlee, Belgium", classification = "716.1; 722.2; 723.2; 723.4; 723.5; 731.1", conference = "Proceedings of the Conference on Computer Aided Design and Computer Graphics", journalabr = "Comput Graphics (Pergamon)", keywords = "Artificial intelligence; Communication channels (information theory); Computational methods; Decision support systems; Digital communication systems; Generic graphical interface (GGI); Generic planner based user adaptive coach system (CAL); Graphically oriented human computer interactions; Intelligent operator support systems; Interactive computer graphics; Learning systems; Man machine systems; Systems analysis; UNIX; User interfaces", meetingaddress = "Beijing, China", meetingdate = "Aug 1993", meetingdate2 = "08/93", sponsor = "China Computer Federation", } @Book{Keogh:1994:OCG, author = "James Keogh and Remon Lapid", title = "Open Computing\emdash Guide to the Best Free {UNIX} Utilities", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, pages = "xix + 290", year = "1994", ISBN = "0-07-882046-4", ISBN-13 = "978-0-07-882046-5", LCCN = "QA76.76.O63 K49 1994", bibdate = "Mon Mar 27 18:26:23 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", price = "US\$34.95", acknowledgement = ack-nhfb, } @Article{Kilgard:1994:UOX, author = "Mark J. Kilgard", title = "Using {OpenGL} with {Xlib}", journal = j-XJ, volume = "4", number = "1", pages = "46--65", month = jan # "/" # feb, year = "1994", bibdate = "Sat May 21 15:48:34 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-jc, keywords = "OpenGL", } @Article{Krieger:1994:ASF, author = "Orran Krieger and Michael Stumm and Ron Unrau", title = "The {Alloc Stream Facility}: {A} Redesign of Application-Level Stream {I/O}", journal = j-COMPUTER, volume = "27", number = "3", pages = "75--82", month = mar, year = "1994", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Mon Feb 3 07:28:57 MST 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Many stdio and even Unix I/O applications run faster when linked to the ASF application-level library. Using the Alloc Stream Interface improves performance even more.", acknowledgement = ack-nhfb, affiliation = "Dept. of Electr. and Comput. Eng., Toronto Univ., Ont., Canada", affiliationaddress = "Toronto, Can", classification = "723; C6110J (Object-oriented programming); C6110P (Parallel programming); C6150J (Operating systems)", journalabr = "Computer", keywords = "Alloc Stream Facility; Alloc stream interface; Application-level I/O facility; Application-level library; Application-level stream I/O; ASF; C stdio library; C++ stream I/O; Computer operating systems; Concurrency; I/O-intensive applications; Input output programs; Mapped files; Multithreaded applications; Object-oriented structure; Parallel applications; Parallel systems; Performance improvements; Popular I/O interfaces; Sequential byte stream; Standard Unix systems; Stdio; System behavior; UNIX", thesaurus = "Input-output programs; Object-oriented methods; Parallel programming; Unix", } @Book{Kurani:1994:AUP, author = "Bharat Kurani", title = "Applied {Unix} programming", volume = "2", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xviii + 1250", year = "1994", ISBN = "0-13-304338-X (vol. 1), 0-13-304346-0 (vol. 2)", ISBN-13 = "978-0-13-304338-9 (vol. 1), 978-0-13-304346-4 (vol. 2)", LCCN = "QA76.76.O63 K86 1994", bibdate = "Thu Sep 19 09:23:41 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Two volumes.", acknowledgement = ack-nhfb, keywords = "X/Open", } @Book{Ledesma:1994:PHC, author = "Ron Ledesma", title = "{PC} Hardware Configuration Guide for {DOS} and {Solaris}", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxii + 331", year = "1994", ISBN = "0-13-124678-X", ISBN-13 = "978-0-13-124678-2", LCCN = "TK7887.5 .L38 1994", bibdate = "Fri Apr 11 16:52:32 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sun BluePrints Program", acknowledgement = ack-nhfb, } @Book{Levine:1994:PGF, author = "John Levine", title = "Programming for Graphics Files in {C} and {C++}", publisher = pub-WILEY-INTERSCIENCE, address = pub-WILEY-INTERSCIENCE:adr, pages = "xii + 494", year = "1994", ISBN = "0-471-59856-9", ISBN-13 = "978-0-471-59856-5", LCCN = "T385 .L47 1994", bibdate = "Sat Oct 01 16:53:40 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.95", acknowledgement = ack-nhfb, } @Book{Libes:1994:EET, author = "Don Libes", title = "Exploring Expect: {A Tcl}-based Toolkit for Automating Interactive Programs", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxxiii + 566", month = dec, year = "1994", ISBN = "1-56592-090-2", ISBN-13 = "978-1-56592-090-3", LCCN = "QA76.755 .L52 1995", bibdate = "Sat Dec 02 17:04:17 1995", bibsource = "ftp://ftp.ora.com/pub/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", URL = "http://www.ora.com/gnn/bus/ora/item/expect.html", acknowledgement = ack-nhfb, } @Book{Murray:1994:EGF, author = "James D. Murray and William vanRyper", title = "Encyclopedia of Graphics File Formats", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxxii + 894", month = jul, year = "1994", ISBN = "1-56592-058-9", ISBN-13 = "978-1-56592-058-3", LCCN = "T385 .M87 1994", bibdate = "Sat Dec 02 17:05:31 1995", bibsource = "ftp://ftp.ora.com/pub/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$59.95", acknowledgement = ack-nhfb, review = "Sys Admin 3(6), 99-106 (1994).", } @Book{Negus:1994:NGU, author = "Chris Negus and Larry Schumer", title = "{Novell}'s Guide to {UnixWare 1.1}", publisher = pub-NOVELL, address = pub-NOVELL:adr, pages = "xliii + 817", year = "1994", ISBN = "0-7821-1292-7", ISBN-13 = "978-0-7821-1292-4", LCCN = "QA76.76.O63 N425 1994", bibdate = "Wed Aug 24 22:04:14 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "This is a comprehensive reference to {UnixWare} 1.1.", acknowledgement = ack-sk, } @Article{Nieh:1994:SUS, author = "J. Nieh and J. G. Hanko and J. D. Northcutt and G. A. Wall", title = "{SVR4 UNIX} Scheduler Unacceptable for Multimedia Applications", journal = j-LECT-NOTES-COMP-SCI, volume = "846", pages = "41--??", year = "1994", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", bibdate = "Mon May 13 11:52:14 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Manual{NIST:1994:XWS, author = "{National Institute of Standards and Technology (U. S.)}", title = "{X} Window System: version 11, release 5", volume = "158-1", publisher = pub-NIST, address = pub-NIST:adr, pages = "various", year = "1994", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Shipping list no.: 95-0136-P. Contents: X Window System protocol / Robert W. Scheifler -- Xlib-C language X interface / James Gettys, Robert W. Scheifler -- X toolkit intrinsics-C language interface / Joel McCormack, Paul Asente, Ralph R. Swick -- Bitmap distribution format, version 2.1.", series = "FIPS PUB", acknowledgement = ack-nhfb, keywords = "C (computer program language) -- handbooks, manuals, etc; x window system (computer system) -- handbooks, manuals, etc", } @Book{OnWord:1994:SSU, author = "{OnWord Press development team} and Sam Kimery", title = "{SunSoft Solaris} 2 user's guide", publisher = pub-ONWORD, address = pub-ONWORD:adr, pages = "xxii + 304", year = "1994", ISBN = "0-934605-74-2", ISBN-13 = "978-0-934605-74-8", LCCN = "QA76.76.O63 S865 1994", bibdate = "Tue May 23 11:03:38 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "????", acknowledgement = ack-nhfb, } @Book{OpenInventor:1994:OIC, author = "{Open Inventor Architecture Group}", title = "Open Inventor {C++} Reference Manual: The Official Reference Document for Open Systems", publisher = pub-AW, address = pub-AW:adr, pages = "vi + 767", year = "1994", ISBN = "0-201-62491-5", ISBN-13 = "978-0-201-62491-5", LCCN = "QA76.64 .O6 1994", bibdate = "Fri Nov 11 13:14:45 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Ousterhout:1994:TTT, author = "John K. Ousterhout", title = "{Tcl} and the {Tk} Toolkit", publisher = pub-AW, address = pub-AW:adr, pages = "xx + 458", year = "1994", ISBN = "0-201-63337-X", ISBN-13 = "978-0-201-63337-5", LCCN = "QA76.73.T44 O97 1994", bibdate = "Thu Oct 13 11:06:16 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$36.75", acknowledgement = ack-nhfb, } @Book{Pabrai:1994:XWS, author = "Uday O. Pabrai and Hemant T. Shah", title = "{X Window System} user's guide", publisher = pub-ARTECH, address = pub-ARTECH:adr, pages = "xv + 236", year = "1994", ISBN = "0-89006-740-6", ISBN-13 = "978-0-89006-740-6", LCCN = "QA76.76.W56P33 1994", bibdate = "Tue May 25 06:55:20 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "The Artech House telecommunications library", acknowledgement = ack-nhfb, } @Book{Peek:1994:UPT, author = "Jerry D. Peek and Tim O'Reilly \& Michael Kosta Loukides", title = "{UNIX} power tools", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xliii + 1073", year = "1994", ISBN = "1-56592-260-3", ISBN-13 = "978-1-56592-260-0", LCCN = "QA76.76.O63 P44 1993", bibdate = "Mon Apr 18 14:53:05 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.oreilly.com/catalog/9781565922600", acknowledgement = ack-nhfb, subject = "UNIX (Computer file); Utilities (Computer programs)", xxnote = "This ISBN is also assigned to the second edition \cite{Peek:1997:UPT}.", } @Book{Pendry:1994:AAR, author = "Jan-Simon Pendry and Nick Williams", title = "{AMD}: The {4.4BSD} Automounter Reference Manual", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "????", year = "1994", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Jan 18 11:39:59 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Poniatowski:1994:HUS, author = "Marty Poniatowski", title = "The {HP-UX} systems administrator's ``how to'' book", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xvi + 245", year = "1994", ISBN = "0-13-099821-4", ISBN-13 = "978-0-13-099821-7", LCCN = "QA76.8.H48 P66 1994", bibdate = "Wed Oct 5 06:11:15 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Hewlett--Packard professional books", acknowledgement = ack-nhfb, subject = "Hewlett--Packard computers; Programming; UNIX (Computer file)", } @Book{Ramsey:1994:AAA, author = "Rick Ramsey", title = "All About Administering {NIS+}", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "500", year = "1994", ISBN = "0-13-309576-2", ISBN-13 = "978-0-13-309576-0", LCCN = "QA76.9.D3 R24 1993b", bibdate = "Thu Oct 13 11:07:38 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$42.00", URL = "http://www.sun.com/books/catalog/ramsey/index.html", acknowledgement = ack-nhfb, } @InProceedings{Reizer:1994:UFM, author = "Neal R. Reizer and Gregory D. Abowd and B. Craig Meyers and Patrick R. H. Place", title = "Using Formal Methods for Requirements Specification of a Proposed {POSIX} Standard", crossref = "IEEE:1994:PFI", pages = "118--125", year = "1994", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "We demonstrate the utility of formal methods in the development of requirements for standards. We describe the results of an exercise to generate a formal specification of the forthcoming POSIX .21 standard `Real-Time Distributed Systems Communications.' This exercise was conducted by a relative novice in formal methods who did not have significant POSIX domain knowledge. With the assistance of both formal methods experts and domain specialists, the formal specification activity raised a number of issues early in the evolution of the standard. Resolution of these issues by the domain specialists will lead to an improved standard, whether or not the formal specification is included in the standard. In this paper, we present a classification and analysis of the types of issues raised using our formal approach. Our experience establishes more clearly the benefits of a formal approach to requirements engineering.", acknowledgement = ack-nhfb, affiliation = "Carnegie Mellon Univ", affiliationaddress = "Pittsburgh, PA, USA", classification = "721.1; 722.2; 722.3; 722.4; 723.1; 902.2", conference = "Proceedings of the 1st International Conference on Requirements Engineering", conferenceyear = "1994", journalabr = "Proc Int Conf Requir Eng", keywords = "Computer operating systems; Data communication systems; Distributed computer systems; Formal logic; Formal methods; Interfaces (computer); POSIX standard; Real time distributed systems communications; Real time systems; Requirements specifications; Software engineering; Standards; Systems analysis", meetingaddress = "Colorado Springs, CO, USA", meetingdate = "Apr 18--22 1994", meetingdate2 = "04/18--22/94", publisherinfo = "Computer Society Press", sponsor = "IEEE Computer Society", } @Article{Ricciuti:1994:MSI, author = "Mike Ricciuti", title = "The Mainframe as Server: Is {IBM} Totally Bonkers --- or Brilliant?", journal = j-DATAMATION, volume = "40", number = "10", pages = "61--??", day = "15", month = may, year = "1994", CODEN = "DTMNAT", ISSN = "0011-6963", bibdate = "Sat May 25 15:28:26 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", abstract = "IBM is putting new DCE and POSIX-compliant capabilities into MVS to try to boost the mainframe as the first choice for an enterprise-capable superserver. The strategy: Make MVS talk and walk like Unix, cut mainframe hardware costs by two-thirds, and freeze software prices. Will enterprise downsizers keep the old hardware and stick with Big Blue merely to save Big Bucks? Or is it Too Late?", acknowledgement = ack-nhfb, } @Book{Rice:1994:HUQ, editor = "Jim Rice", title = "The {HP-UX} quick reference", publisher = "OnWord Press", address = "Santa Fe, NM", pages = "xix + 211", year = "1994", ISBN = "0-934605-28-8", ISBN-13 = "978-0-934605-28-1", LCCN = "QA76.76.O63 H69 1994", bibdate = "Fri Apr 29 07:25:18 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Operating systems (Computers); HP-UX", } @Book{Rosen:1994:OCB, author = "Kenneth Rosen and Richard Rosinski and Douglas A. Host", title = "Open Computing's Best {UNIX} Tips Ever", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, pages = "various", year = "1994", ISBN = "0-07-881924-5", ISBN-13 = "978-0-07-881924-7", LCCN = "QA76.76.O63 R678 1994", bibdate = "Mon Mar 27 18:20:55 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @Book{Rosenblatt:1994:LKS, author = "Bill Rosenblatt", title = "Learning the {Korn} Shell", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxii + 336", year = "1994", ISBN = "1-56592-054-6", ISBN-13 = "978-1-56592-054-5", LCCN = "QA76.73.K67 R68 1994", bibdate = "Sat Sep 11 09:55:20 1999", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", URL = "http://www.oreilly.com/catalog/korn", acknowledgement = ack-nhfb, annote = "Republication of \cite{Rosenblatt:1993:LKS} with minor corrections.", } @Article{Rosenblatt:1994:URN, author = "Bill Rosenblatt", title = "{Unix RDBMS}: the next generation: what are the {Unix} relational-database vendors doing to survive in the next generation of client\slash server environments", journal = j-SIGMOD, volume = "23", number = "4", pages = "91--103", month = dec, year = "1994", CODEN = "SRECD8", ISSN = "0163-5808 (print), 1943-5835 (electronic)", bibdate = "Mon Jan 12 08:45:50 MST 2004", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliation = "Dept. of Inf. Resources, Moody's Investor Services, New York, NY, USA", classification = "C0310F (Software development management); C6150J (Operating systems); C6160D (Relational databases)", keywords = "Borland; Client/server environments; Datatypes; Distributed computing systems; Informix; Oracle; Sybase; Unix RDBMS; Unix relational-database vendors; Wide-area networks", thesaurus = "Client-server systems; DP industry; Relational databases; Unix", } @Book{Salus:1994:QCU, author = "Peter H. Salus", title = "A quarter century of {UNIX}", publisher = pub-AW, address = pub-AW:adr, pages = "xii + 256", year = "1994", ISBN = "0-201-54777-5", ISBN-13 = "978-0-201-54777-1", LCCN = "QA76.76.O63 S342 1994", bibdate = "Thu Nov 14 06:38:30 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Satyanarayanan:1994:LRV, author = "M. Satyanarayanan and Henry H. Mashburn and Puneet Kumar and David C. Steere and James J. Kistler", title = "Lightweight Recoverable Virtual Memory", journal = j-TOCS, volume = "12", number = "1", pages = "33--57", month = feb, year = "1994", CODEN = "ACSYEC", ISSN = "0734-2071", bibdate = "Wed Jan 13 18:36:53 MST 1999", bibsource = "http://www.acm.org/pubs/contents/journals/tocs/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80/pubs/citations/journals/tocs/1994-12-1/p33-satyanarayanan/", abstract = "{\em Recoverable virtual memory\/}refers to regions of a virtual address space on which transactional guarantees are offered. This article describes RVM, an efficient, portable, and easily used implementation of recoverable virtual memory for Unix environments. A unique characteristic of RVM is that it allows independent control over the transactional properties of atomicity, permanence, and serializability. This leads to considerable flexibility in the use of RVM, potentially enlarging the range of applications that can benefit from transactions. It also simplifies the layering of functionality such as nesting and distribution. The article shows that RVM performs well over its intended range of usage even though it does not benefit from specialized operating system support. It also demonstrates the importance of intra- and inter-transaction optimizations.", acknowledgement = ack-nhfb, keywords = "design; experimentation; measurement; performance; reliability", subject = "{\bf D.4.2} Software, OPERATING SYSTEMS, Storage Management, Virtual memory. {\bf D.4.5} Software, OPERATING SYSTEMS, Reliability, Fault-tolerance. {\bf D.4.8} Software, OPERATING SYSTEMS, Performance, Measurements. {\bf H.2.2} Information Systems, DATABASE MANAGEMENT, Physical Design, Recovery and restart. {\bf H.2.4} Information Systems, DATABASE MANAGEMENT, Systems, Transaction processing.", } @Book{Schimmel:1994:USM, author = "Curt Schimmel", title = "{UNIX} Systems for Modern Architectures: Symmetric Multiprocessing and Caching for Kernel Programmers", publisher = pub-AW, address = pub-AW:adr, pages = "xxiv + 396", year = "1994", ISBN = "0-201-63338-8", ISBN-13 = "978-0-201-63338-2", LCCN = "QA76.76.063S3756 1994", bibdate = "Thu Oct 13 00:03:19 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$47.50", acknowledgement = ack-nhfb, } @Book{Sebern:1994:BOM, author = "Mark J. Sebern", title = "Building {OSF\slash Motif} applications\emdash a Practical Introduction", publisher = pub-PH, address = pub-PH:adr, pages = "xvii + 717", year = "1994", ISBN = "0-13-122409-3", ISBN-13 = "978-0-13-122409-4", LCCN = "QA76.9.U83 S43 1994", bibdate = "Wed Jul 6 13:27:23 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Skazinski:1994:PAR, author = "Joseph G. Skazinski", title = "Porting {Ada}: {A} Report From the Field", journal = j-COMPUTER, volume = "27", number = "10", pages = "58--64", month = oct, year = "1994", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Mon Feb 3 07:28:57 MST 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "With the constant barrage of new systems, porting software applications is inevitable. This article takes a. look at the problems involved in porting an Ada/C application.", acknowledgement = ack-nhfb, affiliation = "Magnavox Electron. Syst. Co., Fort Wayne, IN, USA", affiliationaddress = "Fort Wayne, IN, USA", classification = "722.4; 723.1.1; 723.3; 731.1; C6110B (Software engineering techniques); C6140D (High level languages); C6150C (Compilers, interpreters and other processors)", journalabr = "Computer", keywords = "Ada (programming language); Ada compiler; Ada tools; Ada/C application; Ada/C porting; AFATDS porting effort; C (programming language); Coding errors; Computer hardware description languages; Computer workstations; Control systems; Database systems; Department of Defense; Hierarchical systems; HP RISC platform; InteVSCO Unix platform; Local area networks; Operating systems; Porting; Porting complexity; Program compilers; Program debugging; Software applications; Software architecture; Software package Advanced field artillery tactical data system; Software package Graphical user interface (gui); System configuration management; UNIX; User interfaces", thesaurus = "Ada; C language; Program compilers; Software portability", } @Article{Slater:1994:CW, author = "A. F. Slater", title = "Controlled by the {Web}", journal = j-COMP-NET-ISDN, volume = "27", number = "2", pages = "289--295", day = "1", month = nov, year = "1994", CODEN = "CNISE9", ISSN = "0169-7552", bibdate = "Fri Sep 24 20:20:54 MDT 1999", bibsource = "Compendex database; http://www.elsevier.com/cgi-bin/cas/tree/store/cna/cas_free/browse/browse.cgi?year=1994&volume=27&issue=2; http://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.elsevier.com/cgi-bin/cas/tree/store/comnet/cas_sub/browse/browse.cgi?year=1994&volume=27&issue=2&aid=1395", abstract = "This paper provides a brief description of a software tool developed within the TLTP Interact Project which allows application programs, concurrently executing within a Unix environment, to be controlled by scripts delivered to Mosaic from W3 servers. This tool was developed to allow the coupling of interactive simulations of scientific and engineering phenomena with courseware provided by W3. This software is known as the Interact Communication Facility (ICF). The features of the ICF include the ability to allow application programs to receive control messages and data from scripts embedded as links within HTML documents; the use of HTML fill-out forms to enter data intended for application programs; a simple interface to allow programs to control Mosaic, including the automatic execution of Mosaic if it is not currently being used, a means of allowing secure execution of applications from scripts. This avoids the security problems associated with allowing Mosaic to interpret arbitrary shell scripts. This paper provides an overview of the ICF together with an example showing the use of Mosaic in conjunction with a simple graphical program.", acknowledgement = ack-nhfb, affiliation = "Dept. of Comput. and Electr. Eng., Heriot-Watt Univ., Edinburgh, UK", affiliationaddress = "Edinburgh, UK", classification = "722.2; 723.1; 723.2; 723.3; 723.5; 903.3; C5620W (Other computer networks); C6115 (Programming support); C6180 (User interfaces); C7210 (Information services and centres); C7810C (Computer-aided instruction)", conference = "Proceedings of the 1st World-Wide Web Conference", journalabr = "Comput Networks ISDN Syst", keywords = "Application programs; Automatic execution; Computer architecture; Computer simulation; Computer software; Control messages; Courseware; Distributed database systems; Engineering phenomena; Graphical program; HTML fill-out forms; Hypertext markup language (HTML); Information retrieval; Information retrieval systems; Interact Communication Facility; Interactive computer graphics; Interactive simulations; Interface; Interfaces (computer); Links; Mosaic; Object oriented programming; Remote control; Scientific phenomena; Scripts; Secure execution; Security of data; Software package Interact Communication Facility (ICF); Software tool; TLTP Interact Project; UNIX; Unix environment; User interfaces; W3 servers; Web; World wide web", meetingaddress = "Geneva, Switz", meetingdate = "May 25--27 1994", meetingdate2 = "05/25--27/94", pubcountry = "Netherlands", thesaurus = "Courseware; Information networks; {Internet}; Security of data; Software tools; User interfaces", } @Book{Southerton:1994:SHG, author = "Alan Southerton", title = "The Shell Hacker's Guide to {X} and {Motif}\emdash Custom Power Tools and Window Manager Tricks", publisher = pub-WILEY-INTERSCIENCE, address = pub-WILEY-INTERSCIENCE:adr, pages = "xvii + 382", year = "1994", ISBN = "0-471-59723-6 (book/disk), 0-471-59722-8 (paper)", ISBN-13 = "978-0-471-59723-0 (book/disk), 978-0-471-59722-3 (paper)", LCCN = "QA76.76.W56 S66 1994", bibdate = "Wed Jul 6 13:27:41 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Stevens:1994:TII, author = "W. Richard Stevens", title = "{TCP\slash IP} Illustrated, Volume 1: The Protocols", publisher = pub-AW, address = pub-AW:adr, pages = "xix + 576", year = "1994", ISBN = "0-201-63346-9", ISBN-13 = "978-0-201-63346-7", LCCN = "TK5105.55 .S74 1994", bibdate = "Tue Jul 25 18:19:54 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$65.95", series = "Ad{\-d}i{\-s}on-Wes{\-l}ey Professional Computing Series", acknowledgement = ack-nhfb, } @Book{Strobel:1994:LPW, author = "Stefan Strobel and Thomas Uhl", title = "{LINUX --- vom PC zur Workstation: Grundlagen, Installation und praktischer Einsatz}", publisher = pub-SV, address = pub-SV:adr, pages = "xii + 238", year = "1994", ISBN = "3-540-58098-0, 3-540-57383-6", ISBN-13 = "978-3-540-58098-0, 978-3-540-57383-8", LCCN = "????", bibdate = "Tue Jul 07 17:24:51 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Strobel:1994:LUJ, author = "Stefan Strobel", title = "{LINUX: Unix fur jedermann; der PC als Workstation; Installation Schritt fur Schritt, Unix-Grundlagen und TCP/IP, Editieren mit dem Emacs, DOS-Programme unter LINUX, Textverarbeitung mit LaTeX 2e, Sound, Grafik, Netzwerkspiele}", publisher = pub-VOGEL, address = pub-VOGEL:adr, pages = "100", year = "1994", ISBN = "3-8259-1330-9", ISBN-13 = "978-3-8259-1330-4", LCCN = "????", bibdate = "Tue Jul 07 17:30:38 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "49.00 DM; 358.00 {\"O}S; 49.00 Sfr", acknowledgement = ack-nhfb, } @Book{Strobel:1994:LWY, author = "Stefan Strobel and Thomas Uhl", title = "{Linux}: Unleashing the Workstation in Your {PC}", publisher = pub-SV, address = pub-SV:adr, pages = "xii + 248", year = "1994", ISBN = "3-540-58077-8 (Berlin), 0-387-58077-8 (New York)", ISBN-13 = "978-3-540-58077-5 (Berlin), 978-0-387-58077-7 (New York)", LCCN = "QA76.5 .S78513 1994", bibdate = "Fri Apr 30 10:46:24 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Translation by Robert Bach of German title {\em {Linux}\emdash vom {PC} zur {Workstation}}. See also \cite{Strobel:1995:CLK}", price = "DM49.00, US\$29.00", acknowledgement = ack-nhfb, } @Article{Thomas:1994:EUK, author = "Philip K. Thomas and Shmuel Rotenstreich", title = "Enhancing the {UNIX Korn} Shell Using Predictor Techniques", journal = j-CUJ, volume = "12", number = "3", pages = "83--??", month = mar, year = "1994", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Todino:1994:LUO, author = "Grace Todino and John Strang and Jerry D. Peek", title = "Learning the {UNIX} Operating System", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "xv + 92", year = "1994", ISBN = "1-56592-060-0", ISBN-13 = "978-1-56592-060-6", LCCN = "QA76.76.O63 T62 1994", bibdate = "Mon Apr 18 14:50:42 MDT 2005", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", note = "Minor corrections.", price = "US\$9.95", series = "A Nutshell handbook", URL = "http://www.oreilly.com/catalog/9781565920606", acknowledgement = ack-nhfb, subject = "UNIX (Computer file); Operating systems (Computers)", } @Book{Tondo:1994:MMG, author = "Clovis L. Tondo and Andrew Nathanson and Eden Yount", title = "Mastering {Make}\emdash {A} Guide to Building Programs on {DOS}, {OS/2}, and {UNIX} Systems", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Second", pages = "xvi + 310", year = "1994", ISBN = "0-13-121906-5", ISBN-13 = "978-0-13-121906-9", LCCN = "QA76.76.U84T65 1994", bibdate = "Wed Aug 10 12:01:28 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$22.00", acknowledgement = ack-nhfb, } @Book{vanderLinden:1994:ECP, author = "Peter van der Linden", title = "Expert {C} Programming: Deep {C} Secrets", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxvi + 353", year = "1994", ISBN = "0-13-177429-8", ISBN-13 = "978-0-13-177429-2", LCCN = "QA76.73.C15 V356 1994", bibdate = "Fri Apr 11 15:47:05 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sun BluePrints Program", URL = "http://www.sun.com/books/catalog/vanderlinden/index.html", acknowledgement = ack-nhfb, } @Unpublished{VanEpp:1994:DMC, author = "Peter Van Epp and Bill Baines", title = "Dropping The Mainframe without Crushing the Users", month = nov, year = "1994", bibdate = "Wed Jul 6 13:17:06 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A biased choice :-) \ldots{}. This is a paper describing the migration at Simon Fraser University from centralized mainframe (MTS) to distributed computing (UNIX) in 9 months \ldots{}. This paper (\path=LISA-VI.paper.ps.Z= (PostScript \emdash{} 16 pages)) can be obtained by anonymous ftp from \path=fraser.sfu.ca= in \path=/pub/papers/ucspapers=.", acknowledgement = ack-sk, } @Article{Vetter:1994:MWW, author = "Ronald J. Vetter and Chris Spell and Charles Ward", title = "{Mosaic} and the {World Wide Web}", journal = j-COMPUTER, volume = "27", number = "10", pages = "49--57", month = oct, year = "1994", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Mon Feb 3 07:28:57 MST 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This introduction to Mosaic and the World-Wide Web tells how to obtain a Web browser and to navigate on the Web.", acknowledgement = ack-nhfb, affiliation = "North Dakota State Univ., Fargo, ND, USA", affiliationaddress = "Fargo, ND, USA", classification = "716.1; 722.4; 723.1; 723.5; C5620W (Other computer networks); C7210 (Information services and centres); C7250 (Information storage and retrieval)", journalabr = "Computer", keywords = "Archie servers; Audio; Computer graphics; Computer software; Custom servers; Distributed hypermedia system; Full-motion video; Gopher servers; Graphic pictures; Graphics-oriented browsers; Hypermedia; Hypertext links; HyperText markup language (html); Images; Information service; Information services; Interactive computer systems; International Standards Organization (ISO) 8859 standard; Internet; Internet information services; Macintosh computers; Microsoft Windows; Mosaic; National Center for Supercomputing Applications; Network protocols; PCs; Software package Mosaic browser; Software package World wide web; Standardized Generalized Markup Language (SGML); Textual documents; Unix workstations; User interfaces; WAIS; Wide Area Information Servers; Wide area networks; World Wide Web; X Windows", thesaurus = "Hypermedia; Information retrieval; Information services; Internetworking; Multimedia systems; Wide area networks", } @Article{Volkman:1994:CLU, author = "Victor R. Volkman", title = "{CUG417}: {LIBFTP} for {UNIX}, {CUG418}: Rasmol Molecular Graphics", journal = j-CCCUJ, volume = "12", type = "CUG New Releases", number = "10", pages = "119--??", month = oct, year = "1994", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Walli:1994:PMM, author = "S. R. Walli", title = "{Posix} Myths and Make-Believe: Practical Portability and {Posix}", journal = j-AM-PROG, volume = "7", number = "8", pages = "28--??", month = "????", year = "1994", CODEN = "AMPRFD", ISSN = "1048-5600", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Weinstein:1994:UUB, author = "Sydney S. Weinstein", title = "Using {UNIX} for a {BBS}", journal = j-CCCUJ, volume = "12", type = "On the Networks", number = "9", pages = "101--??", month = sep, year = "1994", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Welsh:1994:LIG, author = "Matt Welsh", title = "{LINUX} installation and getting started", publisher = pub-SSC, address = pub-SSC:adr, pages = "xviii + 231", year = "1994", ISBN = "0-916151-71-9", ISBN-13 = "978-0-916151-71-3", LCCN = "????", bibdate = "Thu May 18 09:28:21 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Wingo:1994:PMF, author = "Scot Wingo and Louis Lu", title = "Porting {Microsoft}'s Foundation Class Library to {UNIX}", journal = j-CUJ, volume = "12", number = "1", pages = "55--??", month = jan, year = "1994", ISSN = "0898-9788", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Womack:1994:PT, author = "Paula Womack", title = "{PEX}lib: {A} Tutorial", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "400", year = "1994", ISBN = "0-13-015843-7", ISBN-13 = "978-0-13-015843-7", LCCN = "QA76.76.W56 W653 1993", bibdate = "Wed Aug 10 11:13:54 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$42.00", acknowledgement = ack-nhfb, } @Article{Woodman:1994:PLS, author = "Mark Woodman", title = "Programming language standards scene, ten years on paper 10: {Modula-2}", journal = j-COMP-STANDARDS-INTERFACES, volume = "16", number = "5-6", pages = "487--494", month = sep, year = "1994", CODEN = "CSTIEZ", ISSN = "0920-5489", bibdate = "Fri May 24 09:57:50 MDT 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This paper, one of a simultaneously published set, describes the establishment in 1984 of the standards project for the programming language Modula-2, and the progress of the project to the end of 1993. This project, including the language itself and an associated library, enters its final phase in 1994. This paper gives a thumbnail sketch of the language, the history of standardization, and the main consequences of changes made during standardization. New work on object-oriented extensions and a Posix binding is also described.", acknowledgement = ack-nhfb, affiliation = "Open Univ", affiliationaddress = "Milton Keynes, Engl", classification = "723.1; 723.1.1; 902.2", journalabr = "Comput Stand Interfaces", keywords = "Modula (programming language); Modula 2 programming language; Object oriented programming; Posix binding; Standardization; Standards", } @Periodical{Yggdrasil:1994:YLG, key = "Yggdrasil-Linux", title = "{Yggdrasil Linux/GNU/X} operating system", howpublished = "CD-ROM", publisher = pub-YGGDRASIL, address = pub-YGGDRASIL:adr, year = "1994", ISSN = "1069-3955", bibdate = "Thu May 18 09:33:18 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Updated quarterly.", acknowledgement = ack-nhfb, } @Periodical{Young:1994:LJ, editor = "Robert F. Young", key = "Linux-journal", title = "{Linux} journal", publisher = pub-SSC, address = pub-SSC:adr, year = "1994", ISSN = "1075-3583 (print), 1938-3827 (electronic)", bibdate = "Thu May 18 09:31:14 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Abrahams:1995:UIa, author = "Paul W. Abrahams and Bruce R. Larson", title = "{UNIX} for the Impatient", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "704", year = "1995", ISBN = "0-201-60965-7", ISBN-13 = "978-0-201-60965-3", LCCN = "QA76.76.O63 A27 1995", bibdate = "Thu May 25 15:29:13 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, xxnote = "Was this from an early prepress announcement? I cannot find the above ISBN in major library catalogs, or via the publisher's http://www.aw.com/ search facility.", } @Book{Abrahams:1995:UIb, author = "Paul W. Abrahams and Bruce R. Larson", title = "{UNIX} for the Impatient", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xxxv + 824", year = "1995", ISBN = "0-201-82376-4", ISBN-13 = "978-0-201-82376-9", LCCN = "QA76.76.O63 A27 1996", bibdate = "Thu Dec 14 11:15:06 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Adhikari:1995:OWS, author = "Richard Adhikari", title = "Open Wide and Say {`POSIX'}", journal = j-SOFTWARE-MAG, volume = "15", number = "9", pages = "122--??", day = "1", month = sep, year = "1995", CODEN = "SMWMEQ", ISSN = "0279-9782 (or 0897-8085??)", bibdate = "Sat May 25 15:28:26 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", abstract = "Are proprietary OS vendors' claims of compliance just a marketing ploy?", acknowledgement = ack-nhfb, } @Article{Akyurek:1995:ABR, author = "Sedat Aky{\"u}rek and Kenneth Salem", title = "Adaptive Block Rearrangement", journal = j-TOCS, volume = "13", number = "2", pages = "89--121", month = may, year = "1995", CODEN = "ACSYEC", ISSN = "0734-2071", bibdate = "Wed Jan 13 18:36:53 MST 1999", bibsource = "http://www.acm.org/pubs/contents/journals/tocs/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80/pubs/citations/journals/tocs/1995-13-2/p89-akyurek/", abstract = "An adaptive technique for reducing disk seek times is described. The technique copies frequently referenced blocks from their original locations to reserved space near the middle of the disk. Reference frequencies need not be known in advance. Instead, they are estimated by monitoring the stream of arriving requests. Trace-driven simulations show that seek times can be cut substantially by copying only a small number of blocks using this technique. The technique has been implemented by modifying a UNIX device driver. No modifications are required to the file system that uses the driver.", acknowledgement = ack-nhfb, keywords = "algorithms; design; experimentation; performance", subject = "{\bf D.4.2} Software, OPERATING SYSTEMS, Storage Management. {\bf D.4.8} Software, OPERATING SYSTEMS, Performance, Measurements. {\bf H.3.2} Information Systems, INFORMATION STORAGE AND RETRIEVAL, Information Storage. {\bf D.4.8} Software, OPERATING SYSTEMS, Performance, Modeling and prediction. {\bf D.4.8} Software, OPERATING SYSTEMS, Performance, Simulation. {\bf D.4.8} Software, OPERATING SYSTEMS, Performance.", } @Book{Amee:1995:TTC, author = "?. Amee", title = "{Tcl/Tk CD-ROM}", publisher = "American Software and Hardware", address = "????", year = "1995", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu May 18 11:31:27 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Anonymous:1995:IT, author = "Anonymous", title = "Industry Trends", journal = j-COMPUTER, volume = "28", number = "4", pages = "8--??", month = apr, year = "1995", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Tue May 14 16:20:44 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Unix transformations", acknowledgement = ack-nhfb, } @Article{Anonymous:1995:OSR, author = "Anonymous", title = "Open systems --- {Richard H. Jaross} and {Michael Tilson} argue that simply adding a {Posix} module doesn't make {Microsoft's Windows NT} an open system", journal = j-COMPUTERWORLD, volume = "29", number = "38", pages = "39--??", month = "????", year = "1995", CODEN = "CMPWAB", ISSN = "0010-4841", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Anonymous:1995:PRC, author = "Anonymous", title = "Product Reviews --- {C++} class libraries, Part 2; virtual {Unix} for {PCs}", journal = j-COMPUTER, volume = "28", number = "8", pages = "91--??", month = aug, year = "1995", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Tue May 14 16:20:44 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Anonymous:1995:SSF, author = "Anonymous", title = "{SCADA} software features {POSIX} certification, improved redundancy", journal = j-INSTRUM-CONTROL-SYST, volume = "68", number = "4", pages = "120--??", month = apr, year = "1995", ISSN = "1074-2328", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", acknowledgement = ack-nhfb, } @Article{Anonymous:1995:UTT, author = "Anonymous", title = "{UNIX\slash POSIX} tools target distributed embedded systems", journal = j-COMP-DESIGN, volume = "34", number = "9", pages = "56--??", day = "1", month = sep, year = "1995", CODEN = "CMPDAM", ISSN = "0010-4566", bibdate = "Sat May 25 15:28:26 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", acknowledgement = ack-nhfb, } @Article{Anonymous:1995:WSD, author = "Anonymous", title = "{WindRiver Systems' David Fraser} on: {POSIX} for real-time embedded development", journal = j-COMP-DESIGN, volume = "34", number = "6", pages = "130--??", month = jun, year = "1995", CODEN = "CMPDAM", ISSN = "0010-4566", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", abstract = "Designers of embedded systems should be wary of proprietary operating systems as the sands shift inevitably toward openness.", acknowledgement = ack-nhfb, } @Manual{Anonymous:1995:XWS, key = "XWS", title = "{X} Window System version 11, release 5", publisher = pub-USGPO, address = pub-USGPO:adr, pages = "various", year = "1995", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Contents: X Window System protocol, MIT X Consortium standard / Robert W. Schneider. -- Xlib, C language X interface, MIT X Consortium standard. 1st revision, August, 1991. -- X Toolkit intrinsics, C language interface. 1st revision, August, 1991. -- Bitmap distribution format, version 2.1, MIT X Consortium standard.", acknowledgement = ack-nhfb, keywords = "C (computer program language); X Window System (computer system)", } @Book{Avolio:1995:STP, author = "Frederick M. Avolio and Paul A. Vixie", title = "Sendmail: theory and practice", publisher = pub-DP, address = pub-DP:adr, pages = "xv + 262", year = "1995", ISBN = "1-55558-127-7", ISBN-13 = "978-1-55558-127-5", LCCN = "HE6239.E54 A96 1995", bibdate = "Thu Jan 18 11:42:52 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @InProceedings{Baird:1995:DSP, author = "H. S. Baird and D. J. Ittner", title = "Data structures for page readers", crossref = "Spitz:1995:IAP", pages = "3--15", year = "1995", bibdate = "Fri Apr 24 15:18:27 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "C5260B (Computer vision and image processing techniques); C6120 (File organisation); C6120 (File vision and image processing techniques); C6130D (Document processing techniques)", conftitle = "Proceedings of the International Association for Pattern Recognition Workshop", corpsource = "AT and T Bell Labs., Murray Hill, NJ, USA", keywords = "data structures; document hierarchy; document image processing; geometric data; geometric layout analysis; iconic data; linguistic contextual analysis; linguistics; machine-independent peripheral file; optical character recognition; OS-independent peripheral files; printed page readers; probabilistic data; software engineering; symbol recognition; symbolic data; Unicode; Unix; UNIX multiprocessing; Unix optical character recognition; user-selectable output encoding", treatment = "P Practical", } @Book{Becker:1995:SIG, author = "George Becker and Mary E. S. Morris and Kathy Slattery", title = "{Solaris} Implementation: {A} Guide for System Administrators", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xvi + 345", year = "1995", ISBN = "0-13-353350-6", ISBN-13 = "978-0-13-353350-7", LCCN = "QA76.76.O63B433 1995", bibdate = "Tue Aug 22 16:25:12 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$35.00", acknowledgement = ack-nhfb, } @Article{Binkley:1995:PIL, author = "David Binkley and Susan Horwitz and Thomas Reps", title = "Program integration for languages with procedure calls", journal = j-TOSEM, volume = "4", number = "1", pages = "3--35", month = jan, year = "1995", CODEN = "ATSMER", ISSN = "1049-331X (print), 1557-7392 (electronic)", bibdate = "Fri Apr 20 08:21:35 MDT 2001", bibsource = "http://www.acm.org/pubs/toc/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org/pubs/articles/journals/tosem/1995-4-1/p3-binkley/p3-binkley.pdf; http://www.acm.org/pubs/citations/journals/tosem/1995-4-1/p3-binkley/", abstract = "Given a program Base and two variants, A and B, each created by modifying separate copies of Base, the goal of program integration is to determine whether the modifications interfere, and if they do not, to create an integrated program that incorporates both sets of changes as well as the portions of Base preserved in both variants. Text-based integration techniques, such as the one used by the Unix {\em diff3\/} utility, are obviously unsatisfactory because one has no guarantees about how the execution behavior of the integrated program relates to the behaviors of Base, A, and B. The first program integration algorithm to provide such guarantees was developed by Horwitz, Prins, and Reps. However, a limitation of that algorithm is that it only applied to programs written in a restricted language--in particular, the algorithm does not handle programs with procedures. This article describes a generalization of the Horwitz-Prins-Reps algorithm that handles programs that consist of multiple (and possibly mutually recursive) procedures. \par We show that two straightforward generalizations of the Horwitz-Prins-Reps algorithm yield unsatisfactory results. The key issue in developing a satisfactory algorithm is how to take into account different calling contexts when determining what has changed in the variants A and B. Our solution to this problem involves identifying two different kinds of affected components of A and B: those affected regardless of how the procedure is called, and those affected by a changed or new calling context. The algorithm makes use of interprocedural program slicing to identify these components, as well as components in Base, A, and B with the same behavior.", acknowledgement = ack-nhfb, generalterms = "Algorithms; Design; Languages; Theory", keywords = "control dependence; data dependence; data-flow analysis; flow-insensitive summary information; program dependence graph; program slicing; semantics-based program integration", subject = "Software --- Software Engineering --- Distribution, Maintenance, and Enhancement (D.2.7): {\bf Version control}; Software --- Software Engineering --- Distribution, Maintenance, and Enhancement (D.2.7): {\bf Restructuring, reverse engineering, and reengineering}; Software --- Software Engineering --- Management (D.2.9); Software --- Software Engineering --- Design Tools and Techniques (D.2.2): {\bf Programmer workbench**}; Software --- Software Engineering --- Coding Tools and Techniques (D.2.3): {\bf Program editors}; Software --- Programming Languages --- Language Constructs and Features (D.3.3); Software --- Programming Languages --- Processors (D.3.4): {\bf Compilers}", } @Article{Bokhari:1995:LOS, author = "Shahid H. Bokhari", title = "The {Linux} Operating System", journal = j-COMPUTER, volume = "28", number = "8", pages = "74--79", month = aug, year = "1995", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Mon Feb 3 07:21:26 MST 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliation = "Univ. of Eng. and Technol., Luhore, Pakistan", affiliationaddress = "Lahore, Pakistan", classification = "722; 722.4; 723; 723.5; 901.2; 902.3; C6150J (Operating systems)", journalabr = "Computer", keywords = "Boot disks; Computer hardware; Computer operating systems; Computer workstations; Computing environments; Consumer market; Developing nations; Educational institutions; Engineering research; Freeware; Hard disk storage; IBM PC compatibles; Linux operating system; Network protocols; Parallel virtual machine; Patents and inventions; Personal computer clones; Personal computers; Personal home machines; Research; Software development; Software engineering; Software Package ghostscript; Software Package X protocol multiplexor; Software Package X windows; Teaching; University students; UNIX; Unix-based workstations; Working environments; X Windows", thesaurus = "Educational computing; Home working; IBM compatible machines; Microcomputer applications; Public domain software; Software reviews; Teaching; Technology transfer; Unix; Workstations", } @Book{Bolsky:1995:NKC, author = "Morris I. Bolsky and David G. Korn", title = "The New {KornShell} Command And Programming Language", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Second", pages = "416", year = "1995", ISBN = "0-13-182700-6", ISBN-13 = "978-0-13-182700-4", LCCN = "QA76.73.K67 B64 1995", bibdate = "Tue May 23 10:31:58 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "????", acknowledgement = ack-nhfb, } @Article{Braams:1995:BCP, author = "Jan Braams", title = "Batch class process scheduler for {Unix SVR4}", journal = j-SIGMETRICS, volume = "23", number = "1", pages = "301--302", month = may, year = "1995", CODEN = "????", DOI = "http://doi.acm.org/10.1145/223586.223621", ISSN = "0163-5999 (print), 1557-9484 (electronic)", ISSN-L = "0163-5999", bibdate = "Thu Jun 26 11:18:56 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Chapin:1995:MSP, author = "John Chapin and A. Herrod and Mendel Rosenblum and Anoop Gupta", title = "Memory system performance of {UNIX} on {CC-NUMA} multiprocessors", journal = j-SIGMETRICS, volume = "23", number = "1", pages = "1--13", month = may, year = "1995", CODEN = "????", DOI = "http://doi.acm.org/10.1145/223587.223588", ISSN = "0163-5999 (print), 1557-9484 (electronic)", ISSN-L = "0163-5999", bibdate = "Thu Jun 26 11:18:56 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This study characterizes the performance of a variant of UNIX SVR4 on a large shared-memory multiprocessor and analyzes the effects of possible OS and architectural changes. We use a nonintrusive cache miss monitor to trace the execution of an OS-intensive multiprogrammed workload on the Stanford DASH, a 32-CPU CC-NUMA multiprocessor (CC-NUMA multiprocessors have cache-coherent shared memory that is physically distributed across the machine). We find that our version of UNIX accounts for 24\% of the workload's total execution time. A surprisingly large fraction of OS time (79\%) is spent on memory system stalls, divided equally between instruction and data cache miss time. In analyzing techniques to reduce instruction cache miss stall time, we find that replication of only 7\% of the OS code would allow 80\% of instruction cache misses to be serviced locally on a CC-NUMA machine. For data cache misses, we find that a small number of routines account for 96\% of OS data cache stall time. We find that most of these misses are coherence (communication) misses, and larger caches will not necessarily help. After presenting detailed performance data, we analyze the benefits of several OS changes and predict the effects of altering the cache configuration, degree of clustering, and cache coherence mechanism of the machine. (This paper is available via \url{http://wwwflash.stanford.edu}.)", acknowledgement = ack-nhfb, } @Article{Chastek:1995:THC, author = "Gary Chastek and Anthony Gargaro", title = "Towards heterogeneous communication for {POSIX} real-time distributed systems", journal = j-ADA-USER-J, volume = "16", number = "3", pages = "163--176", month = sep, year = "1995", CODEN = "AUJOET", ISSN = "0268-652X", bibdate = "Fri May 24 09:57:50 MDT 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This paper describes an approach to support heterogeneous communication for distributed real-time systems. The in-progress work is part of an activity to specify a language-independent specification (LIS) for a POSIX application programming interface. As a validation exercise of this specification, a prototype Ada 95 binding is under development. The results of the prototype exercise provide early insight into the use of this interface and of the new features of Ada 95 in addressing the increasingly important issues of application interoperability for the next generation of distributed real-time systems.", acknowledgement = ack-nhfb, affiliation = "Carnegie Mellon Univ", affiliationaddress = "Pittsburgh, PA, USA", classification = "722.2; 722.3; 722.4; 723.1; 723.1.1; 902.2", journalabr = "Ada User J", keywords = "Ada (programming language); Application programming interface; Computer hardware description languages; Computer software portability; Computer systems programming; Data communication systems; Distributed computer systems; Heterogeneous communication; Interfaces (computer); Interoperability; Real time systems; Software prototyping; Standards", } @Article{Cheng:1995:SPP, author = "T. Cheng and K. Leung and M. Jin and E. Chu", title = "{ScanSAR} and precision processor implementation at the {Alaska SAR} facility", journal = j-INT-GEOSCIENCE-REMOTE-SENSING-SYMPOSIUM, volume = "3", pages = "2302--2306", year = "1995", CODEN = "IGRSE3", bibdate = "Fri May 24 09:57:50 MDT 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "IEEE catalog number 95CH35770.", abstract = "This paper summarizes the algorithm and hardware selection phases of the ScanSAR Processor (SSP) and Precision Processor (PP) implementation task for the Alaska SAR Facility (ASF). The SSP is being designed to specifically process RADARSAT ScanSAR mode SAR data while the PP is being designed to produce high precision image products from continuous mode SAR data from RADARSAT as well as ERS-1,2 and JERS-1. This paper describes the algorithms selected for the SSP and the PP; and reports on the hardware selection process in arriving at the target computing platform for these processors.", acknowledgement = ack-nhfb, affiliation = "California Inst of Technology", affiliationaddress = "Pasadena, CA, USA", classification = "716.2; 722; 723; 723.1.1; 921; 921.3", conference = "Proceedings of the 1995 International Geoscience and Remote Sensing Symposium. Part 3 (of 3)", journalabr = "Dig Int Geosci Remote Sens Symp (IGARSS)", keywords = "Algorithms; Computer hardware; Computer software; Correlation methods; Doppler effect; Fast Fourier transforms; High level languages; Precision processor; Radar imaging; Range compression; Software Package POSIX; Software Package X/OPEN; Synthetic aperture radar; UNIX", meetingaddress = "Firenze, Italy", meetingdate = "Jul 10--14 1995", meetingdate2 = "07/10--14/95", sponsor = "IEEE; URSI", } @InProceedings{Chestek:1995:THC, author = "Chestek and Gargaro", title = "Towards Heterogeneous Communication for {Posix} Real-Time Distributed Systems", crossref = "Anonymous:1995:AUA", pages = "163--175", year = "1995", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Dichter:1995:SEP, author = "Carl Dichter and Mark Pease", title = "Software Engineering with {Perl}", publisher = pub-PH, address = pub-PH:adr, pages = "282", year = "1995", ISBN = "0-13-016965-X", ISBN-13 = "978-0-13-016965-5", LCCN = "QA76.758 .D53 1995", bibdate = "Wed May 17 22:40:40 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes disk.", price = "US\$30.00", acknowledgement = ack-nhfb, } @Book{Drake:1995:PUS, author = "Chris Drake and Kimberley Brown", title = "Panic! {UNIX} System Crash Dump Analysis", publisher = pub-PH, address = pub-PH:adr, pages = "xx + 492", year = "1995", ISBN = "0-13-149386-8", ISBN-13 = "978-0-13-149386-5", LCCN = "QA76.76.O63D7556 1995<", bibdate = "Mon Jun 05 12:25:05 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD ROM.", price = "US\$44.00", URL = "http://www.sun.com/books/catalog/drake/index.html", acknowledgement = ack-nhfb, } @Book{DuBois:1995:UCT, author = "Paul DuBois", title = "Using csh and tcsh", publisher = pub-ORA, address = pub-ORA:adr, pages = "xviii + 221", month = aug, year = "1995", ISBN = "1-56592-132-1", ISBN-13 = "978-1-56592-132-0", LCCN = "QA76.76.O63D82 1995", bibdate = "Sat Sep 11 10:05:30 1999", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", URL = "http://www.oreilly.com/catalog/tcsh", acknowledgement = ack-nhfb, } @Article{Fournier:1995:VMS, author = "Robert Fournier and Norbert Kajler and Bernard Mourrain", title = "Visualization of Mathematical Surfaces: the {IZIC} Server Approach", journal = j-J-SYMBOLIC-COMP, volume = "19", number = "1/2/3", pages = "159--174 (or 159--173??)", month = jan # ", " # feb # ", " # mar, year = "1995", CODEN = "JSYCEH", ISSN = "0747-7171 (print), 1095-855X (electronic)", MRclass = "68Q40 (57N05 68U10)", MRnumber = "1 339 116", bibdate = "Sat May 10 15:54:09 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Design and implementation of symbolic computation systems (Gmunden, 1993).", acknowledgement = ack-nhfb, affiliation = "INRIA, Sophia Antipolis, France", classcodes = "C6130B (Graphics techniques); C7310 (Mathematics computing); C6180 (User interfaces)", classification = "C6130B (Graphics techniques); C6180 (User interfaces); C7310 (Mathematics computing)", corpsource = "INRIA, Sophia Antipolis, France", keywords = "3D graphic; 3D graphic library; 3D graphic tool; CAS/PI; Colors; colors; colour graphics; Command language; command language; Computer algebra systems; computer algebra systems; Curve manipulation; curve manipulation; data visualisation; Illumination model; illumination model; interactive systems; Interactive tool; interactive tool; IZIC server; Macsyma; manipulation; Maple; Mathematica; Mathematical surface visualization; mathematical surface visualization; mathematics computing; Reduce; Shading; shading; Special issue on DISCO 1993; surface; Surface manipulation; symbol manipulation; tool; Transparency; transparency; Unix server; User interface; user interface; user interfaces; Virtual graphic device; virtual graphic device; ZICLIB", thesaurus = "Colour graphics; Data visualisation; Interactive systems; Mathematics computing; Symbol manipulation; User interfaces", treatment = "P Practical; T Theoretical or Mathematical", xxauthor = "R. Fournier and N. Kajler and B. Mourrain", } @Book{Gallmeister:1995:PPR, author = "Bill Gallmeister", title = "{POSIX.4}: Programming for the Real World", publisher = pub-ORA, address = pub-ORA:adr, pages = "xviii + 548", month = jan, year = "1995", ISBN = "1-56592-074-0", ISBN-13 = "978-1-56592-074-3", LCCN = "QA76.76.O63 G34 1995", bibdate = "Fri May 19 19:20:07 MDT 1995", bibsource = "ftp://ftp.ora.com/pub/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @Book{Gancarz:1995:UP, author = "Mike Gancarz", title = "The {UNIX} philosophy", publisher = pub-DP, address = pub-DP:adr, pages = "xix + 151", year = "1995", ISBN = "1-55558-123-4", ISBN-13 = "978-1-55558-123-7", LCCN = "QA76.76.O63G365 1995", bibdate = "Tue May 25 06:45:28 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Goldberg:1995:LCR, author = "Howard L. Goldberg", title = "The {Linux} commands and resources directory", publisher = "Cruising the Cutting Edge Pub.", address = "Houston, TX, USA", pages = "360", year = "1995", ISBN = "0-00-017192-1", ISBN-13 = "978-0-00-017192-4", LCCN = "QA76.76.O63 G6373 1995", bibdate = "Sat May 4 18:45:07 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Version 1.2.4.", acknowledgement = ack-nhfb, alttitle = "Linux commands and resources directory", keywords = "Linux; Operating systems (Computers)", } @Book{Graham:1995:SXI, author = "John R. Graham", title = "{Solaris 2.x}: internals and architecture", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xv + 222", year = "1995", ISBN = "0-07-911876-3", ISBN-13 = "978-0-07-911876-9", LCCN = "QA76.76.O63 G72 1995", bibdate = "Fri Sep 03 05:49:53 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "????", acknowledgement = ack-nhfb, } @Book{Harbison:1995:CRM, author = "Samuel P. Harbison and Guy L. {Steele Jr.}", title = "{C}\emdash {A} Reference Manual", publisher = pub-PH, address = pub-PH:adr, edition = "Fourth", pages = "xx + 455", year = "1995", ISBN = "0-13-326232-4 (hardback), 0-13-326224-3 (paperback)", ISBN-13 = "978-0-13-326232-2 (hardback), 978-0-13-326224-7 (paperback)", LCCN = "QA76.73.C15 H38 1995", bibdate = "Mon Feb 20 17:04:05 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$33.95", acknowledgement = ack-nhfb, } @Book{Harrison:1995:UHU, author = "Mark Harrison", title = "The {USENET} Handbook: {A} User's Guide to Netnews", publisher = pub-ORA, address = pub-ORA:adr, pages = "xiv + 372", month = may, year = "1995", ISBN = "1-56592-101-1", ISBN-13 = "978-1-56592-101-6", LCCN = "TK5105.875.I57 H534 1995", bibdate = "Fri May 17 08:48:14 1996", bibsource = "ftp://ftp.ora.com/pub/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$24.95", acknowledgement = ack-nhfb, } @Article{Heisel:1995:SUF, author = "M. Heisel", title = "Specification of the {Unix} File System: {A} Comparative Case Study", journal = j-LECT-NOTES-COMP-SCI, volume = "936", pages = "475--??", year = "1995", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", bibdate = "Sat May 11 13:45:32 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Henry:1995:SXS, author = "S. Lee Henry and John R. Graham", title = "{Solaris} 2.x: system administrator's guide", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xiii, 320", year = "1995", ISBN = "0-07-029368-6", ISBN-13 = "978-0-07-029368-7", LCCN = "QA76.76.O63 H475 1995", bibdate = "Tue May 23 11:13:55 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$44.95", acknowledgement = ack-nhfb, } @Article{Hillebrand:1995:MLM, author = "A. Sorgatz und R. Hillebrand", title = "{Mathematik unter Linux: MuPAD --- Ein Computeralgebra System I}. (German) [{Mathematics} in {Linux}: {MuPAD} --- {A} Computer Algebra System, {I}]", journal = "{Linux Magazin}", volume = "12/95", pages = "11--14", year = "1995", bibdate = "Mon Oct 17 19:06:00 2005", bibsource = "http://hpc.cs.ehime-u.ac.jp/MuPAD/BIB/bibtex.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", keywords = "MuPAD, Computer Algebra", } @Book{Hodel:1995:BSAa, author = "Alan E. Hodel and {/AIXtra}", title = "The best of {/AIXtra}: an eclectic {UNIX} anthology: Volume {I}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xvi + 295", month = aug, year = "1995", ISBN = "0-13-328626-6 (paperback)", ISBN-13 = "978-0-13-328626-7 (paperback)", LCCN = "QA76.76.O63 B475 1995", bibdate = "Thu Sep 04 12:55:15 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$55.00", URL = "http://www.prenhall.com/ptrbooks/ptr_0133286266.html", acknowledgement = ack-nhfb, annote = "Based on /AIXtra: IBM's magazine for AIX professionals.", keywords = "Operating systems; Operating systems (Computers)", searchkey = "ti:aixtra", } @Book{Hodel:1995:BSAb, author = "Alan E. Hodel and {/AIXtra}", title = "The best of {/AIXtra}: an eclectic {UNIX} anthology: Volume {II}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xvi + 311", month = nov, year = "1995", ISBN = "0-13-339839-0", ISBN-13 = "978-0-13-339839-7", LCCN = "QA76.76.O63B475 1995", bibdate = "Thu Sep 04 12:55:18 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$41.00", URL = "http://www.prenhall.com/ptrbooks/ptr_0133398390.html", acknowledgement = ack-nhfb, keywords = "Operating systems (Computers); UNIX (Computer file)", searchkey = "ti:aixtra", } @Manual{Horlick:1995:NVL, author = "Jeffrey Horlick and Martha M. Gray", title = "{National Voluntary Laboratory Accreditation Program}: {POSIX: Portable Operating System Interface}", publisher = "U.S. Dept. of Commerce", address = "Technology Administration, National Institute of Standards and Technology", pages = "various", month = jan, year = "1995", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Shipping list no.: 97-0955-M.", series = "NIST handbook ; 150-7", acknowledgement = ack-nhfb, keywords = "NVLAP (program: U.S.); research, industrial -- laboratories -- accreditation -- United States; testing laboratories -- accreditation -- United States", } @Book{Husain:1995:LU, author = "Kamran Husain and Tim Parker and others", title = "{Linux} Unleashed", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xxxv + 1058", year = "1995", ISBN = "0-672-30705-7", ISBN-13 = "978-0-672-30705-8", LCCN = "QA76.76.O63L5547", bibdate = "Tue Aug 22 16:26:08 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD ROM.", price = "US\$49.99", acknowledgement = ack-nhfb, } @Book{InfoMagic:1995:PTT, author = "{InfoMagic}", title = "{Perl} and {Tcl/Tk}", publisher = pub-SSC, address = pub-SSC:adr, pages = "????", year = "1995", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu May 18 11:27:10 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$35.00", acknowledgement = ack-nhfb, } @Article{Ivinskis:1995:HAC, author = "Kestutis Ivinskis", title = "High availability of commercial applications", journal = j-SIGMOD, volume = "24", number = "2", pages = "433--434", month = may, year = "1995", CODEN = "SRECD8", ISSN = "0163-5808 (print), 1943-5835 (electronic)", bibdate = "Mon Jan 12 08:45:52 MST 2004", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, classification = "B6210L (Computer communications); C5470 (Performance evaluation and testing); C5620L (Local area networks); C6130 (Data handling techniques); C6150N (Distributed systems software); C7100 (Business and administration)", keywords = "Active servers; Client/server based applications; Client/server based information systems; Commercial applications; Commercial end users; Distributed system; End user perception; Information system; Maximum downtime per year; Multi tiered client/server based IS; OLTP workload; Replicated system services; System availability; System outages; System responsiveness; Unix server systems; Workload balancing", thesaurus = "Client-server systems; Information systems; Performance evaluation; Transaction processing", xxcrossref = "Anonymous:1995:ASI", } @Article{Joseph:1995:IPA, author = "Moses Joseph", title = "Is {POSIX} Appropriate for Embedded Systems?", journal = j-EMBED-SYS-PROG, volume = "8", number = "7", pages = "90--??", month = "????", year = "1995", CODEN = "EYPRE4", ISSN = "1040-3272", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Kadhim:1995:BRLa, author = "Basim Kadhim", title = "Book Review: {{\em Linux: Unleashing the Workstation in Your PC}, Stefan Strobel and Thomas Uhl}", journal = j-OPER-SYS-REV, volume = "29", number = "2", pages = "2--3", month = apr, year = "1995", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:41 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Kadhim:1995:BRLb, author = "Basim Kadhim", title = "Book Review: {{\em Linux Universe}, Stefan Strobel and Thomas Uhl}", journal = j-OPER-SYS-REV, volume = "29", number = "4", pages = "3--3", month = oct, year = "1995", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:52 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Kasper:1995:ASI, author = "Paul Anthony Kasper and Alan L. McClellan", title = "Automating {Solaris} Installations: {A} Custom {JumpStart} Guide", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xx + 282", year = "1995", ISBN = "0-13-312505-X", ISBN-13 = "978-0-13-312505-4", LCCN = "QA76.76.O63K368 1995", bibdate = "Fri Apr 11 15:08:49 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sun BluePrints Program", URL = "http://www.sun.com/books/catalog/kasper/index.html", acknowledgement = ack-nhfb, } @Book{Kimball:1995:XC, author = "Paul E. Kimball", title = "The {X-Toolkit} Cookbook", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxi + 668", year = "1995", ISBN = "0-13-973132-6", ISBN-13 = "978-0-13-973132-7", LCCN = "QA76.76.W56 K56 1995", bibdate = "Tue May 23 10:39:27 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "????", acknowledgement = ack-nhfb, } @Book{Kirch:1995:LNAa, author = "Olaf Kirch", title = "{Linux} Network Administrator's Guide", publisher = pub-SSC, address = pub-SSC:adr, pages = "289", year = "1995", ISBN = "0-916151-75-1", ISBN-13 = "978-0-916151-75-1", LCCN = "????", bibdate = "Wed May 17 22:36:14 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$18.95", acknowledgement = ack-nhfb, } @Book{Kirch:1995:LNAb, author = "Olaf Kirch", title = "{Linux} Network Administrator's Guide", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxxi + 335", month = jan, year = "1995", ISBN = "1-56592-087-2", ISBN-13 = "978-1-56592-087-3", LCCN = "QA76.76.O63 K566 1995", bibdate = "Mon Apr 18 14:51:02 MDT 2005", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", price = "US\$24.95", URL = "http://www.oreilly.com/catalog/9781565920873; http://www.oreilly.com/catalog/linag", acknowledgement = ack-nhfb, subject = "GNU/Linux; UNIX (Computer file); Operating systems (Computers)", } @Book{Krishnamurthy:1995:PRU, author = "Balachander Krishnamurthy", title = "Practical Reusable {Unix} Software", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxv + 370", year = "1995", ISBN = "0-471-05807-6", ISBN-13 = "978-0-471-05807-6", LCCN = "QA76.76.O63 P724 1995", bibdate = "Sun Mar 23 06:58:25 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$34.95", URL = "http://www.research.att.com/%7Egsf/publications/prus-1995-1.pdf", acknowledgement = ack-nhfb, annote = "Full book text available for personal use only. The book is out of print.", } @Book{Lamb:1995:UEE, author = "Linda Lamb and Jerry Peek", title = "Using Email Effectively", publisher = pub-ORA, address = pub-ORA:adr, pages = "160", month = apr, year = "1995", ISBN = "1-56592-103-8", ISBN-13 = "978-1-56592-103-0", LCCN = "TK5105.73.L36 1995", bibdate = "Fri May 19 19:20:07 MDT 1995", bibsource = "ftp://ftp.ora.com/pub/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$14.95", acknowledgement = ack-nhfb, } @Article{Leathrum:1995:FTS, author = "J. F. Leathrum and K. A. Liburdy", title = "Formal test specifications in {IEEE POSIX}", journal = j-COMP-STANDARDS-INTERFACES, volume = "17", number = "5-6", pages = "603--614", month = sep, year = "1995", CODEN = "CSTIEZ", ISSN = "0920-5489", bibdate = "Fri May 24 09:57:50 MDT 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "The role of formal methods is examined in the context of the process of developing and adopting open standards. Against the broad backdrop of concerns for improving the quality of standards, issues of conformance assessment, test specification, and test methodology guidelines are considered. The experience gained from the attempts to formalize the test specifications for POSIX 2003.5 is presented as lessons learned. The tradeoffs associated with the various formal methods are considered in terms of the properties of common semantic model for assertions languages. The intent here is to collect the common features in a form that provides insights on issues such as encapsulation and inheritance of specifications, inter-operation semantics, state and control structures for assertions, and name space management conventions.", acknowledgement = ack-nhfb, affiliation = "Clemson Univ", affiliationaddress = "Clemson, SC, USA", classification = "723.1; 723.1.1; 723.2; 902.2; 913.3", journalabr = "Comput Stand Interfaces", keywords = "Assertion languages; Computer hardware description languages; Data structures; Formal languages; Formal specifications; Inter-operation semantics; POSIX; Quality control; Semantics; Software engineering; Specifications; Standards; Test specifications", } @Book{Lehey:1995:PUS, author = "Greg Lehey", title = "Porting {UNIX} Software: From Download to Debug", publisher = pub-ORA, address = pub-ORA:adr, pages = "xix + 515", month = nov, year = "1995", ISBN = "1-56592-126-7", ISBN-13 = "978-1-56592-126-9", LCCN = "QA76.76.O63L4472 1995", bibdate = "Tue May 14 15:43:05 1996", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", URL = "http://www.ora.com/gnn/bus/ora/item/port.html; http://www.oreilly.com/catalog/port", acknowledgement = ack-nhfb, } @Book{Leininger:1995:SDT, author = "Kevin E. Leininger", title = "{Solaris} developer's tool kit", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xiii + 422", year = "1995", ISBN = "0-07-911851-8 (hardcover), 0-07-911852-6 (paperback)", ISBN-13 = "978-0-07-911851-6 (hardcover), 978-0-07-911852-3 (paperback)", LCCN = "QA76.76.O63 L4477 1995", bibdate = "Tue May 23 11:10:10 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$69.00 (hardcover), US\$49.95 (paperback)", acknowledgement = ack-nhfb, } @Article{Meek:1995:SGR, author = "Brian L. Meek", title = "Seven golden rules for producing language-independent standards", journal = j-PROC-IEEE-INT-SOFTWARE-ENG-STAND-SYMP, pages = "250--256", year = "1995", ISSN = "1082-3670", bibdate = "Fri May 24 09:57:50 MDT 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Language-independent standards have been subjected to hostile criticism in recent years, which makes it vital that the quality of the work is as high as possible. General principles of language-independent standardization are presented, in the form of five rules applicable to all standardization leading to `Seven Golden Rules' for language-independent standardization specifically.", acknowledgement = ack-nhfb, affiliation = "King's Coll London", affiliationaddress = "London, Engl", classification = "722.2; 723.1.1; 902.2", conference = "Proceedings of the 2nd IEEE International Software Engineering Standards Symposium", journalabr = "Proc IEEE Int Software Eng Stand Symp", keywords = "Computer programming languages; Interfaces (computer); Language independent standards; Posix; Software engineering; Standardization; Standards", meetingaddress = "Montreal, Can", sponsor = "IEEE", } @Book{Montgomery:1995:UGU, author = "John Montgomery", title = "The underground guide to {UNIX}: slightly askew advice from a {UNIX} guru", publisher = pub-AW, address = pub-AW:adr, pages = "xiii + 343", year = "1995", ISBN = "0-201-40653-5", ISBN-13 = "978-0-201-40653-5", LCCN = "QA76.76.O63 M7454 1995", bibdate = "Fri Dec 22 06:48:20 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$24.95, CDN\$31.95", acknowledgement = ack-nhfb, } @Book{Mui:1995:WYC, author = "Linda Mui", title = "When You Can't Find Your {UNIX} System Administrator", publisher = pub-ORA, address = pub-ORA:adr, pages = "xiii + 139", month = apr, year = "1995", ISBN = "1-56592-104-6", ISBN-13 = "978-1-56592-104-7", LCCN = "QA76.76.O63M845 1995", bibdate = "Fri May 19 19:20:07 MDT 1995", bibsource = "ftp://ftp.ora.com/pub/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$17.95", acknowledgement = ack-nhfb, } @Book{Mullet:1995:DVI, author = "Kevin Mullet and Darrell Sano", title = "Designing visual interfaces: communication oriented techniques", publisher = pub-SUNSOFT, address = pub-SUNSOFT:adr, pages = "xv + 273", year = "1995", ISBN = "0-13-303389-9", ISBN-13 = "978-0-13-303389-2", LCCN = "QA76.9.U83 M84 1995", bibdate = "Fri Apr 11 15:39:03 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.sun.com/books/catalog/mullet/", acknowledgement = ack-nhfb, } @Book{Nemeth:1995:USA, author = "Evi Nemeth and Garth Snyder and Scott Seebass and Trent R. Hein", title = "{UNIX} System Administration Handbook", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "xxxii + 779", year = "1995", ISBN = "0-13-151051-7", ISBN-13 = "978-0-13-151051-7", LCCN = "QA76.76.O63 N45 1995", bibdate = "Sun Jun 27 09:14:01 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD ROM.", URL = "http://www.phptr.com/ptrbooks/ptr_0131510517.html", acknowledgement = ack-nhfb, } @Book{Newham:1995:LBS, author = "Cameron Newham and Bill Rosenblatt", title = "Learning the bash Shell", publisher = pub-ORA, address = pub-ORA:adr, pages = "xvi + 292", month = oct, year = "1995", ISBN = "1-56592-147-X", ISBN-13 = "978-1-56592-147-4", LCCN = "QA76.76.O63N458 1995", bibdate = "Tue Jan 16 06:29:11 1996", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$27.95", URL = "http://www.ora.com/gnn/bus/ora/item/bash.html", acknowledgement = ack-nhfb, } @Book{Nye:1995:PSR, editor = "Adrian Nye", title = "Programmer's Supplement for Release 6 of the {X} Window System, version 11", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxi + 430", month = sep, year = "1995", ISBN = "1-56592-089-9", ISBN-13 = "978-1-56592-089-7", LCCN = "QA76.76.W56F55 1995", bibdate = "Tue May 25 08:03:45 1999", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", URL = "http://www.oreilly.com/catalog/r6", acknowledgement = ack-nhfb, } @Book{Quigley:1995:PE, author = "Ellie Quigley", title = "{Perl} by Example", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xv + 358", year = "1995", ISBN = "0-13-122839-0", ISBN-13 = "978-0-13-122839-9", LCCN = "QA76.73.P22 Q53 1995", bibdate = "Thu Jan 04 16:44:51 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$26.95", acknowledgement = ack-nhfb, } @Book{Radin:1995:OCG, author = "Joseph Radin and Levi Reiss and Steven Nameroff", title = "Open Computing Guide to {UnixWare}", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, pages = "xix + 359", year = "1995", ISBN = "0-07-882027-8", ISBN-13 = "978-0-07-882027-4", LCCN = "QA76.76.O63R32 1995", bibdate = "Mon Mar 27 18:24:29 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @Article{Ram:1995:IKS, author = "P. Ram and D. K. Rand", title = "{Internet} Kiosk: {Satan}: double-edged sword", journal = j-COMPUTER, volume = "28", number = "6", pages = "82--83", month = jun, year = "1995", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Mon Feb 3 07:21:26 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliation = "North Dakota Univ., Grand Forks, ND, USA", classification = "B6210L (Computer communications); C0230 (Economic, social and political aspects of computing); C0310D (Computer installation management); C5620W (Other computer networks); C6130S (Data security); C6150G (Diagnostic, testing, debugging and evaluating systems); C7210 (Information services and centres)", keywords = "Free software tools; Internet; Network vulnerabilities; Root execution; Satan; Security Administrator Tools for Analyzing Networks; Security faults; Security issues; Security vulnerabilities; Super user; Unix lookalikes; Unix system", thesaurus = "Computer crime; Internet; Internetworking; Program diagnostics; Security of data", } @Article{Rauch:1995:IMM, author = "Wendy Rauch and Harvey Hindin", title = "{IBM} Makes More Openness Moves", journal = j-3X-400-SYST-MANAG, volume = "23", number = "1", pages = "62--??", day = "1", month = jan, year = "1995", ISSN = "1070-6097", bibdate = "Sat May 25 15:28:26 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", abstract = "Besides Posix compliance, the AS\slash 400 Division is moving to support the openness standards of X\slash Open, COSE and interprocess communication.", acknowledgement = ack-nhfb, } @Book{Reiss:1995:OCG, author = "Levi Reiss and Joseph Radin", title = "Open Computing's Guide to Mosaic", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, pages = "xvii + 262", year = "1995", ISBN = "0-07-882088-X", ISBN-13 = "978-0-07-882088-5", LCCN = "TK5105.875.I57 R44 1995", bibdate = "Mon Mar 27 18:23:03 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$19.95", acknowledgement = ack-nhfb, } @Book{Rice:1995:HUU, author = "Jim Rice", title = "{HP-UX} user's guide", publisher = "OnWord Press", address = "Santa Fe, NM", pages = "xii + 266", year = "1995", ISBN = "0-934605-21-1", ISBN-13 = "978-0-934605-21-2", LCCN = "QA76.76.O63 R52 1995", bibdate = "Wed Oct 5 06:18:05 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Operating systems (Computers); HP-UX", } @Article{Roberts:1995:LLC, author = "Rick Roberts", title = "Linux --- The Low Cost {UNIX}", journal = j-CCCUJ, volume = "13", number = "1", pages = "43--??", month = jan, year = "1995", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Fri Aug 30 16:52:23 MDT 1996", bibsource = "http://www.cuj.com/cbklist.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Here's your chance to play with a version of UNIX that's widely popular and available with source code, if you can afford the low price.", acknowledgement = ack-nhfb, } @InProceedings{Rowe:1995:EPD, author = "K. Rowe", title = "Embedded {POSIX} for {DSP}", crossref = "Anonymous:1995:SPA", pages = "1719--1723", year = "1995", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Scheer:1995:IUS, author = "Randall J. Scheer", title = "Internationalizing {UNIX} software projects", journal = j-ATT-TECH-J, volume = "74", number = "3", pages = "85--94", year = "1995", CODEN = "ATJOEM", ISSN = "8756-2324", bibdate = "Fri Nov 12 13:11:10 2010", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "AT\&T's international products are providing interfaces using the customer's own language and cultural conventions. Providing internationalized systems that support the conventions of a country, its language, and culture can provide a competitive advantage. Identifying customer needs and developing the internationalization architecture at the beginning of a project cuts life-cycle costs associated with internationalization. This paper describes the problems and issues of cost-effectively producing internationalized software products that run under the UNIX operating system, although this discussion is applicable to other operating systems.", acknowledgement = ack-nhfb, fjournal = "AT\&T Technical Journal", keywords = "character sets; cost effectiveness; international trade; marketing; project management; social aspects of automation; software development management; software engineering; software maintenance; software packages; software quality; standards; UNIX; user interfaces", subject = "international products; internationalization; locale; localization; message catalogs", topic = "computer software", } @Book{Schumer:1995:UU, author = "Larry Schumer and Chris Negus and Dave Gunter", title = "Using {UNIX}", publisher = pub-QUE, address = pub-QUE:adr, pages = "xxiv + 948", year = "1995", ISBN = "0-7897-0253-3", ISBN-13 = "978-0-7897-0253-1", LCCN = "QA76.76.O63 S438 1995", bibdate = "Tue Mar 13 17:33:58 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Shirley:1995:MRP, author = "John Shirley and Ward Rosenberry", title = "{Microsoft RPC} Programming Guide", publisher = pub-ORA, address = pub-ORA:adr, pages = "xix + 232", month = mar, year = "1995", ISBN = "1-56592-070-8", ISBN-13 = "978-1-56592-070-5", LCCN = "QA76.9.D5S554 1995", bibdate = "Tue May 14 15:49:53 1996", bibsource = "ftp://ftp.ora.com/pub/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$24.95", acknowledgement = ack-nhfb, } @Book{Siyan:1995:IFN, author = "Karanjit Siyan and Chris Hare", title = "{Internet} Firewalls and Network Security", publisher = pub-NEW-RIDERS, address = pub-NEW-RIDERS:adr, pages = "xv + 410", year = "1995", ISBN = "1-56205-437-6", ISBN-13 = "978-1-56205-437-3", LCCN = "TK5105.875.I57 H36 1995", bibdate = "Thu Jan 04 17:16:51 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$35.00, CDN\$47.95, UK\pounds32.49", acknowledgement = ack-nhfb, } @TechReport{Small:1995:SAB, author = "Christopher Small and Margo Seltzer", title = "Scheduler activations on {BSD}: sharing thread management between kernel and application", type = "Technical Report", number = "31-95", institution = "Center for Research in Computing Technology, Harvard University", address = "Cambridge, MA, USA", pages = "12", year = "1995", bibdate = "Tue Sep 17 07:11:15 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Sobell:1995:PGU, author = "Mark G. Sobell", title = "A Practical Guide to the {UNIX} System", publisher = pub-BENCUM, address = pub-BENCUM:adr, edition = "Third", pages = "xxxii + 800", year = "1995", ISBN = "0-8053-7565-1", ISBN-13 = "978-0-8053-7565-7", LCCN = "QA76.76.063S595 1994", bibdate = "Wed Aug 10 11:36:48 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$48.95", acknowledgement = ack-nhfb, } @Book{SSC:1995:TTR, author = "{SSC}", title = "{Tcl} and {Tk} Reference Card", publisher = pub-SSC, address = pub-SSC:adr, year = "1995", ISBN = "0-916151-80-8", ISBN-13 = "978-0-916151-80-5", bibdate = "Thu May 18 11:33:56 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Strobel:1995:CLK, author = "Stefan Strobel and Thomas Uhl", title = "The Complete {Linux} Kit", publisher = pub-SV, address = pub-SV:adr, year = "1995", ISBN = "3-540-14224-X (Berlin), 0-387-14224-X (New York)", ISBN-13 = "978-3-540-14224-9 (Berlin), 978-0-387-14224-1 (New York)", bibdate = "Thu Aug 24 11:00:18 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Package of one CD ROM plus two books, \cite{Strobel:1994:LWY,Strobel:1995:LUI}.", price = "US\$59.95", acknowledgement = ack-nhfb, } @Book{Strobel:1995:LUI, author = "Stefan Strobel and Thomas Uhl and Rainer Maurer", title = "{Linux} Universe: Installation and Configuration", publisher = pub-SV, address = pub-SV:adr, pages = "160", year = "1995", ISBN = "0-387-94506-7", ISBN-13 = "978-0-387-94506-4", LCCN = "A76.76.O63 S766 1995", bibdate = "Fri Apr 30 10:46:51 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Translation by Robert Bach. Includes CD ROM. See also \cite{Strobel:1995:CLK}.", price = "US\$34.95", acknowledgement = ack-nhfb, } @Book{SunSoft:1995:SPG, author = "{SunSoft Developer Engineering}", title = "{Solaris} Porting Guide", publisher = pub-SUNSOFT, address = pub-SUNSOFT:adr, edition = "Second", pages = "xlvi + 696", year = "1995", ISBN = "0-13-443672-5", ISBN-13 = "978-0-13-443672-2", LCCN = "QA76.76.O63 S64 1995", bibdate = "Fri May 17 08:51:27 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$45.00", URL = "http://www.sun.com/books/catalog/sundev1/index.html", acknowledgement = ack-nhfb, } @Book{Tackett:1995:SEU, author = "Jack Tackett and David Gunter and Lance Brown", title = "Special Edition Using {Linux}", publisher = pub-QUE, address = pub-QUE:adr, pages = "xxvi + 861", year = "1995", ISBN = "0-7897-0100-6", ISBN-13 = "978-0-7897-0100-8", LCCN = "QA76.76.O63T28 1995", bibdate = "Tue Aug 22 16:27:55 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.95", acknowledgement = ack-nhfb, } @Article{Thomas:1995:BFI, author = "C. G. Thomas", title = "{BASAR}: a framework for integrating agents in the {World Wide Web}", journal = j-COMPUTER, volume = "28", number = "5", pages = "84--86", month = may, year = "1995", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Mon Feb 3 07:21:26 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliation = "Human Comput. Interaction Res. Div., German Nat. Res. Center for Inf. Technol., Germany", classification = "C6170 (Expert systems); C7250N (Front end systems for online searching)", keywords = "BASAR; Building Agents Supporting Adaptive Retrieval; Cooperative process; Indexing; Indirect management; Information retrieval; Intelligent agents; Organizing; Personal information space; Smalltalk-based program; Sorting; Unix platforms; World Wide Web", thesaurus = "Information retrieval; Internet; Knowledge based systems; Online front-ends; Software agents", } @Book{Till:1995:TYP, author = "Dave Till", title = "Teach yourself {Perl} in 21 days", publisher = pub-HWS, address = pub-HWS:adr, pages = "xxxiv + 841", year = "1995", ISBN = "0-672-30586-0", ISBN-13 = "978-0-672-30586-3", LCCN = "QA76.73.P22 T55 1995", bibdate = "Thu Jun 01 13:33:05 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.99, CDN\$39.99", acknowledgement = ack-nhfb, } @Book{Volkerding:1995:LCI, author = "Patrick Volkerding and Kevin Reichard and Eric F. Johnson", title = "{Linux} configuration and installation", publisher = pub-MIS, address = pub-MIS:adr, pages = "xv + 463", year = "1995", ISBN = "1-55828-426-5", ISBN-13 = "978-1-55828-426-5", LCCN = "QA76.76.O63 V64 1995", bibdate = "Fri Sep 03 05:51:44 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Wainer:1995:IRT, author = "Gabriel A. Wainer", title = "Implementing real-time services in {MINIX}", journal = j-OPER-SYS-REV, volume = "29", number = "3", pages = "75--84", month = jul, year = "1995", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:46 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Walnum:1995:DGP, author = "Clayton Walnum", title = "{3-D} graphics programming with {OpenGL}", publisher = pub-QUE, address = pub-QUE:adr, pages = "xiii + 511", year = "1995", ISBN = "0-7897-0277-0", ISBN-13 = "978-0-7897-0277-7", LCCN = "T385 .W36 1995", bibdate = "Sat Mar 28 08:21:46 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Misc{WalnutCreek:1995:SL, author = "{Walnut Creek CDROM}", title = "{Slackware Linux}", publisher = pub-WALNUT-CREEK-CDROM, address = pub-WALNUT-CREEK-CDROM:adr, edition = "Version 3.0", year = "1995", ISBN = "1-57176-117-9", ISBN-13 = "978-1-57176-117-0", LCCN = "QA76.76.O63", bibdate = "Sat May 4 18:45:07 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Two computer laser optical discs.", acknowledgement = ack-nhfb, alttitle = "Linux slackware Official Linux slackware", annote = "Title from disc label. ``Includes ELF Binaries''--Jewel case insert. ``Includes kernel 1.2.13 and 1.3.18''--Jewel case insert. ``ISO 9660 format with Rock Ridge Extensions''--CD label. ``October 1995''--CD label. System requirements: 4 MB of memory (8 recommended) and 12 MB of hard disk space. Compatible with most Intel PC hardware, from PCI/Pentium motherboards to 386 and supports all modern CDROM drives, sound, Ethernet, and mice.", keywords = "Linux; Operating systems (Computers) -- Software.", } @Book{WalnutCreek:1995:TT, author = "{Walnut Creek CD-ROM}", title = "{Tcl/Tk}", publisher = "Publishers Group West", address = "????", year = "1995", ISBN = "1-57176-023-7", ISBN-13 = "978-1-57176-023-4", LCCN = "QA76.73.T44", bibdate = "Thu May 18 11:29:38 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.95", acknowledgement = ack-nhfb, } @Article{Walter:1995:PMS, author = "Stephen Walter", title = "Put Multiprocessing Systems to Work. {II}", journal = j-UNIX-REVIEW, volume = "13", number = "1", pages = "39--??", month = jan, year = "1995", CODEN = "UNRED5", ISSN = "0742-3136", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; UnCover library database", abstract = "Programming for multiprocessors requires use of unusual features such as spin locks, mutex locks, barrier synchronization, and the like. Using the POSIX threads API helps, but the rest you have to do yourself.", acknowledgement = ack-nhfb, } @Article{Wang:1995:IEP, author = "Hsiao-Hsi Wang and Pei-Ku Lu and Ruei-Chuan Chang", title = "An Implementation of an External Pager Interface on {BSD UNIX}", journal = j-J-SYST-SOFTW, volume = "29", number = "2", pages = "177--189", month = may, year = "1995", CODEN = "JSSODM", ISSN = "0164-1212", bibdate = "Wed Sep 8 09:22:30 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sciencedirect.com/science/journal/01641212", acknowledgement = ack-nhfb, } @Article{Weber:1995:CWP, author = "Kate Weber", title = "{Chapter 6}, in which {Pooh} proposes improvements to {Web} authoring tools, having seen said tools for the {Unix} platform", journal = j-COMP-NET-ISDN, volume = "27", number = "6", pages = "823--829", day = "3", month = apr, year = "1995", CODEN = "CNISE9", ISSN = "0169-7552", bibdate = "Fri Sep 24 20:21:03 MDT 1999", bibsource = "http://www.elsevier.com/cgi-bin/cas/tree/store/cna/cas_free/browse/browse.cgi?year=1995&volume=27&issue=6; http://www.math.utah.edu/pub/tex/bib/sgml.bib; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.elsevier.com/cas/tree/store/comnet/sub/1995/27/6/1465.pdf", acknowledgement = ack-nhfb, affiliation = "Silicon Graphics Comput. Syst., Mountain View, CA, USA", classification = "B6210L (Computer communications); C5620W (Other computer networks); C6115 (Programming support); C6130D (Document processing techniques); C6130M (Multimedia); C6150N (Distributed systems software); C7250N (Front end systems for online searching)", keywords = "ASHE; Client server functions; External conversion utilities; HoTMetaL Pro; HTML standard; Multimedia; TkHTML; Unix platform; Web authoring tools; WebMagic; WWWeasel; {Internet}", thesaurus = "Authoring systems; Client-server systems; {Internet}; {Internet}working; Online front-ends", } @Book{Welch:1995:PPT, author = "Brent B. Welch", title = "Practical Programming in {Tcl} and {Tk}", publisher = pub-PH, address = pub-PH:adr, pages = "xxxvi + 428", year = "1995", ISBN = "0-13-182007-9", ISBN-13 = "978-0-13-182007-4", LCCN = "QA76.73.T44 W45 1995", bibdate = "Fri Sep 03 05:54:50 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Welsh:1995:DL, author = "Matt Welsh and {the Linux Documentation Project}", title = "{DRX. Linux}", publisher = "Linux System Laboratory", address = "????", pages = "1176", year = "1995", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed May 17 22:33:01 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.95", acknowledgement = ack-nhfb, } @Book{Welsh:1995:LBG, author = "Matt Welsh and others", title = "The {Linux} bible: the {GNU} testament", publisher = pub-YGGDRASIL, address = pub-YGGDRASIL:adr, edition = "Third", pages = "1596", year = "1995", ISBN = "1-883601-12-6", ISBN-13 = "978-1-883601-12-6", LCCN = "QA 76.76 O63 L56 1995", bibdate = "Thu Aug 29 17:17:38 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; Operating systems (Computers)", } @Book{Welsh:1995:LGS, author = "Matt Welsh and {the Linux Documentation Project}", title = "{Linux}: Getting Started", publisher = "Linux System Laboratory", address = "????", pages = "565", year = "1995", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed May 17 22:34:25 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", price = "US\$59.95", acknowledgement = ack-nhfb, } @Book{Welsh:1995:RL, author = "Matt Welsh and Lar Kaufman", title = "Running {Linux}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxii + 576", month = feb, year = "1995", ISBN = "1-56592-100-3", ISBN-13 = "978-1-56592-100-9", LCCN = "QA76.76.O63W465 1995", bibdate = "Tue Feb 11 06:59:19 1997", bibsource = "ftp://ftp.ora.com/pub/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$24.95", acknowledgement = ack-nhfb, } @Book{Wright:1995:TII, author = "Gary Wright and W. Richard Stevens", title = "{TCP\slash IP} Illustrated: Volume 2. The Implementation", publisher = pub-AW, address = pub-AW:adr, pages = "1123", year = "1995", ISBN = "0-201-63354-X", ISBN-13 = "978-0-201-63354-2", LCCN = "TK5105.55 .S74 1994", bibdate = "Fri Dec 22 07:04:17 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$52.75", acknowledgement = ack-nhfb, } @Book{Young:1995:MDP, author = "Douglas A. Young", title = "{Motif} Debugging and Performance Tuning", publisher = pub-PH, address = pub-PH:adr, pages = "xi + 547", year = "1995", ISBN = "0-13-147984-9", ISBN-13 = "978-0-13-147984-5", LCCN = "QA76.76.W56Y65 1995", bibdate = "Wed Aug 10 11:00:40 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$36.00", acknowledgement = ack-nhfb, } @Book{Zwaska:1995:TTU, author = "Steve Zwaska", title = "Tools and Toys for {UnixWare}", publisher = pub-PRIME-TIME-FREEWARE, address = pub-PRIME-TIME-FREEWARE:adr, pages = "136", year = "1995", ISBN = "1-881957-15-2", ISBN-13 = "978-1-881957-15-7", LCCN = "????", bibdate = "Wed May 24 10:42:24 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes two CD ROMs.", price = "US\$60.00", acknowledgement = ack-nhfb, } @Book{Anonymous:1996:FFF, author = "Anonymous", title = "{FreeBSD: fast 400 Freeware-Pakete. --- Version 2.1.5}", publisher = "Franzis", address = "Feldkirchen, Germany", pages = "9", year = "1996", ISBN = "3-7723-8273-8", ISBN-13 = "978-3-7723-8273-4", LCCN = "????", bibdate = "Tue Sep 17 06:59:29 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", acknowledgement = ack-nhfb, } @Book{Anonymous:1996:WGV, author = "Anonymous", title = "{Webmaster}'s guide: version 4.1 for {AIX}, {HP-UX}, and {Solaris}: {IBM} {Internet} connection server: {IBM} {Internet} connection secure server", publisher = pub-IBM, address = "Research Triangle Park, NC", pages = "x + 303", year = "1996", LCCN = "TK5105.888 .W382 1996", bibdate = "Wed Oct 5 06:18:05 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", note = "Document number GC31-8287-00.", acknowledgement = ack-nhfb, subject = "Web site development; Handbooks, manuals, etc; AIX (Computer file); Handbooks, manuals, etc; Web servers; Handbooks, manuals, etc; Internet; Handbooks, manuals, etc", } @Book{Armstrong:1996:US, author = "James C. {Armstrong, Jr.}", title = "{UNIX} Secrets", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xxxviii + 936", year = "1996", ISBN = "1-56884-499-9", ISBN-13 = "978-1-56884-499-2", LCCN = "QA76.76.O63 A757 1996 Sci-Eng", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "UNIX (computer file)", } @Book{Ault:1996:USA, author = "Michael R. Ault", title = "{UNIX} System Administrator's companion", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xii + 356", year = "1996", ISBN = "0-471-11144-9 (paperback)", ISBN-13 = "978-0-471-11144-3 (paperback)", LCCN = "QA76.76.O63 A89 1996", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Book{Barrett:1996:CUT, author = "Martin L. Barrett and Clifford H. Wagner", title = "{C} and {UNIX}: tools for software design", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xvii + 446", year = "1996", ISBN = "0-471-30927-3", ISBN-13 = "978-0-471-30927-7", LCCN = "QA76.73.C15 B38 1996", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "C (computer program language); computer software -- development; UNIX (computer file)", } @Book{Beck:1996:LKI, author = "Michael Beck and Harold Bohme and Mirko Dzladzka and Ulrich Kunitz and Robert Magnus and Dirk Verworner", title = "{Linux} Kernel Internals", publisher = pub-AW, address = pub-AW:adr, pages = "xvii + 438", year = "1996", ISBN = "0-201-87741-4", ISBN-13 = "978-0-201-87741-0", LCCN = "QA76.76.O63L54813 1996", bibdate = "Tue Feb 11 06:58:23 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Forward by Linus Torvalds, creator of LINUX.", price = "US\$38.68", acknowledgement = ack-nhfb, } @Book{Blinn:1996:PSP, author = "Bruce Blinn", title = "Portable shell programming: an extensive collection of {Bourne} shell examples", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxii + 281", year = "1996", ISBN = "0-13-451494-7", ISBN-13 = "978-0-13-451494-9", LCCN = "QA76.76.O63 B593 1996", bibdate = "Mon Jan 8 06:35:48 MST 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Hewlett--Packard professional books", acknowledgement = ack-nhfb, subject = "UNIX (Computer file); UNIX Shells; Microcomputers; Programming", } @Article{Boyer:1996:APO, author = "Robert S. Boyer and Yuan Yu", title = "Automated proofs of object code for a widely used microprocessor", journal = j-J-ACM, volume = "43", number = "1", pages = "166--192", month = jan, year = "1996", CODEN = "JACOAH", ISSN = "0004-5411 (print), 1557-735X (electronic)", bibdate = "Tue Sep 28 07:51:05 MDT 1999", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliation = "Univ of Texas at Austin", affiliationaddress = "Austin, USA", classification = "721.1; 722.4; 723.1; 723.1.1; 921; 921.5", journalabr = "J Assoc Comput Mach", keywords = "Ada (programming language); Algorithms; Artificial intelligence; Automated proofs; Binary codes; Binary search; Boyer--Moore Theorem prover; C (programming language); Common Lisp; Formal languages; Functions; Hoare's Quick sort; Lisp (programming language); Mathematical programming; Microprocessor chips; Object code; Program compilers; Theorem proving; UNIX", } @Book{Brenner:1996:ICP, author = "Steven Brenner and Edwin Aoki", title = "Introduction to {CGI\slash Perl}: getting started with {Web} scripts", publisher = pub-MT, address = pub-MT:adr, pages = "xv + 151", year = "1996", ISBN = "1-55851-478-3", ISBN-13 = "978-1-55851-478-2", LCCN = "TK5105.888 .B75 1996", bibdate = "Fri Sep 03 05:55:20 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Cervone:1996:ASG, author = "Frank Cervone", title = "{AIX\slash 6000} system guide", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xv + 501", year = "1996", ISBN = "0-07-024129-5", ISBN-13 = "978-0-07-024129-9", LCCN = "QA76.76.O63 C4 1996", bibdate = "Mon May 24 11:36:44 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Manual{Chang:1996:UOS, author = "Yu-Ming Chang", title = "{UNIX}-based operating systems robustness evaluation", number = "NASA-CR-201455 4006278341", publisher = pub-NTIS, address = pub-NTIS:adr, pages = "????", year = "1996", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Shipping list no. 98-0846-M.", series = "NASA contractor report", acknowledgement = ack-nhfb, keywords = "computer systems performance; memory (computers); program verification (computers); resources management; software reliability; stress analysis; UNIX (operating system)", } @Article{Chen:1996:MPP, author = "J. Bradley Chen and Yasuhiro Endo and Kee Chan and David Mazi{\`e}res and Antonio Dias and Margo Seltzer and Michael D. Smith", title = "The Measured Performance of Personal Computer Operating Systems", journal = j-TOCS, volume = "14", number = "1", pages = "3--40", month = feb, year = "1996", CODEN = "ACSYEC", ISSN = "0734-2071", bibdate = "Wed Jan 13 18:36:53 MST 1999", bibsource = "http://www.acm.org/pubs/contents/journals/tocs/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80/pubs/citations/journals/tocs/1996-14-1/p3-chen/", abstract = "This article presents a comparative study of the performance of three operating systems that run on the personal computer architecture derived form the IBM-PC. The operating systems, Windows for Workgroups, Windows NT, and NetBSD (a freely available variant of the UNIX operating system), cover a broad range of system functionality and user requirements, from a single-address-space model to full protection with preemptive multitasking. Our measurements are enable by hardware counters in Intel's Pentium processor that permit measurement of a broad range of processor events including instruction counts and on-chip cache miss counts. We use both microbenchmarks, which expose specific difference between the systems, and application workloads, which provide an indication of expected end-to-end performance. Our microbenchmark results show that accessing system functionality is often more expensive in Windows for Workgroups than in the other two systems due to frequent changes in machine mode and the use of system call hooks. When running native applications, Windows NT is more efficient than Windows, but it incurs overhead similar to that of a microkernel, since its application interface (the Win32 API) is implemented as a user-level server. Overall, system functionality can be accessed most efficiently in NetBSD; we attribute this to its monolithic structure and to the absence of the complications created by hardware backward-compatibility requirements in the other systems. Measurements of application performance show that although the impact of these differences is significant in terms of instruction counts and other hardware events (often a factor of 2 to 7 difference between the systems), overall performance is sometimes determined by the functionality provided by specific subsystems, such as the graphics subsystem or the file system buffer cache.", acknowledgement = ack-nhfb, keywords = "measurement; performance", subject = "{\bf D.4.8} Software, OPERATING SYSTEMS, Performance. {\bf C.4} Computer Systems Organization, PERFORMANCE OF SYSTEMS. {\bf D.4.0} Software, OPERATING SYSTEMS, General. {\bf D.4.7} Software, OPERATING SYSTEMS, Organization and Design.", } @Article{Ciampolini:1996:EPM, author = "A. Ciampolini and C. Stefanelli", title = "Extending {PVM} to a massively parallel architecture", journal = j-FUT-GEN-COMP-SYS, volume = "12", number = "1", pages = "13--23", month = may, year = "1996", CODEN = "FGSEVI", ISSN = "0167-739X (print), 1872-7115 (electronic)", ISSN-L = "0167-739X", bibdate = "Fri Jul 15 09:06:07 MDT 2005", bibsource = "ftp://ftp.ira.uka.de/bibliography/Parallel/pvm.bib; http://www.math.utah.edu/pub/tex/bib/pvm.bib; http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sciencedirect.com/science/journal/0167739X", acknowledgement = ack-nhfb, classification = "C1250 (Pattern recognition); C5220P (Parallel architecture); C5260B (Computer vision and image processing techniques); C5440 (Multiprocessing systems); C6115 (Programming support); C7430 (Computer engineering)", corpsource = "Dipartimento di Elettronica, Inf. e Sistemistica, Bologna Univ., Italy", keywords = "applications; architecture; computational vision application; computer vision; fine-grained parallel; heterogeneous computing; machines; massively parallel architecture; Meiko Computing Surface; multicomputer; parallel; parallel architectures; parallel machines; programming environment; programming environments; transputer technology; Unix workstations; virtual machines", pubcountry = "Netherlands", remark = "Resource Management in Distributed Systems", treatment = "A Application; P Practical", } @Article{Colet:1996:WWI, author = "Marc Colet and Robert Herzog", title = "{WWW2GCG}, a {Web} interface to the {GCG} biological sequences analysis software", journal = j-COMPUTERS-AND-GRAPHICS, volume = "20", number = "3", pages = "445--450", month = may # "--" # jun, year = "1996", CODEN = "COGRD2", ISSN = "0097-8493", bibdate = "Tue Oct 5 21:17:42 MDT 1999", bibsource = "Compendex database; http://www.elsevier.com/cgi-bin/cas/tree/store/cag/cas_free/browse/browse.cgi?year=1996&volume=20&issue=3; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.elsevier.com/cgi-bin/cas/tree/store/cag/cas_sub/browse/browse.cgi?year=1996&volume=20&issue=3&aid=9600014", acknowledgement = ack-nhfb, affiliation = "Free Univ of Brussels", affiliationaddress = "Rhode-St-Genese, Belgium", classification = "461.9; 722.2; 723.1; 723.1.1; 723.2; 723.5", journalabr = "Comput Graphics (Pergamon)", keywords = "Biological sequences analysis; Biology; C (programming language); Command line parameter files; Computer networks; Computer software; Computer software portability; fortran (programming language); Graphical user interfaces; Interactive computer graphics; Molecular biology; Natural sciences computing; Network protocols; UNIX; web browsers; World Wide Web", } @Book{Comer:1996:VCS, author = "Douglas E. Comer and David L. Stevens", title = "Vol. 3: Client-server programming and applications: {BSD} socket version", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "xxvi + 519", year = "1996", ISBN = "0-13-262148-7", ISBN-13 = "978-0-13-262148-9", LCCN = "????", bibdate = "Tue Sep 17 07:08:56 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Curry:1996:USP, author = "David A. (Allan) Curry", title = "{UNIX} Systems Programming for {SVR4}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxi + 596", month = jul, year = "1996", ISBN = "1-56592-163-1", ISBN-13 = "978-1-56592-163-4", LCCN = "QA76.76.O63C865 1996", bibdate = "Sat Jun 28 10:20:38 1997", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$34.95", URL = "http://www.oreilly.com/catalog/usp", } @Book{Deep:1996:DCA, author = "John Deep and Peter Holfelder", title = "Developing {CGI} applications with {Perl}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xiv + 299", year = "1996", ISBN = "0-471-14158-5", ISBN-13 = "978-0-471-14158-7", LCCN = "TK5105.888 .D45 1996", bibdate = "Fri Sep 03 05:52:59 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Desfray:1996:AOD, author = "Philippe Desfray", title = "Automated Object Design: The Client-Server Case", journal = j-COMPUTER, volume = "29", number = "2", pages = "62--66", month = feb, year = "1996", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Mon Feb 3 07:35:46 MST 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliation = "Softeam, St. Quentin-en-Yvelines, France", classification = "723.1; 723.1.1; 723.2; 723.5; 731; 921.6", journalabr = "Computer", keywords = "Annotated model; Automated object design; Automatic code generation; Automation; C (programming language); Client server; Computer simulation; Encoding (symbols); Hypergenericity; Iterative methods; Mathematical transformations; Object oriented programming; Optimization; Relational database systems; UNIX", } @Article{Devarakonda:1996:RCF, author = "Murthy Devarakonda and Bill Kish and Ajay Mohindra", title = "Recovery in the {Calypso} File System", journal = j-TOCS, volume = "14", number = "3", pages = "287--310", month = aug, year = "1996", CODEN = "ACSYEC", ISSN = "0734-2071", bibdate = "Wed Jan 13 18:36:53 MST 1999", bibsource = "http://www.acm.org/pubs/contents/journals/tocs/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80/pubs/citations/journals/tocs/1996-14-3/p287-devarakonda/", abstract = "This article presents the deign and implementation of the recovery scheme in Calypso. Calypso is a cluster-optimized, distributed file system for UNIX clusters. As in Sprite and AFS, Calypso servers are stateful and scale well to a large number of clients. The recovery scheme in Calypso is nondisruptive, meaning that open files remain open, client modified data are saved, and in-flight operations are properly handled across server recover. The scheme uses distributed state amount the clients to reconstruct the server state on a backup node if disks are multiported or on the rebooted server node. It guarantees data consistency during recovery and provides congestion control. Measurements show that the state reconstruction can be quite fast: for example, in a 32-node cluster, when an average node contains state for about 420 files, the reconstruction time is about 3.3 seconds. However, the time to update a file system after a failure can be a major factor in the overall recovery time, even when using journaling techniques.", acknowledgement = ack-nhfb, keywords = "design; management; measurement; reliability", subject = "{\bf D.4.5} Software, OPERATING SYSTEMS, Reliability, Fault-tolerance. {\bf C.4} Computer Systems Organization, PERFORMANCE OF SYSTEMS. {\bf D.4.3} Software, OPERATING SYSTEMS, File Systems Management, Distributed file systems. {\bf D.4.7} Software, OPERATING SYSTEMS, Organization and Design, Distributed systems. {\bf E.5} Data, FILES, Backup/recovery.", } @Article{Donkers:1996:BLF, author = "Arthur Donkers", title = "Building a {Linux} Firewall", journal = j-SYS-ADMIN, volume = "5", number = "6", pages = "12--??", month = jun, year = "1996", CODEN = "SYADE7", ISSN = "1061-2688", bibdate = "Sat Aug 31 19:04:03 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Donkers:1996:LIS, author = "Arthur Donkers", title = "{Linux} as an {Internet} Server", journal = j-SYS-ADMIN, volume = "5", number = "1", pages = "52--??", month = jan, year = "1996", CODEN = "SYADE7", ISSN = "1061-2688", bibdate = "Sat Aug 31 19:04:03 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Dyson:1996:UDR, author = "Peter John Dyson", title = "The {UNIX} desk reference: the hu.man pages", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xi + 523", year = "1996", ISBN = "0-7821-1658-2", ISBN-13 = "978-0-7821-1658-8", LCCN = "QA76.76.O63 D99 1996", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.99", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file); UNIX System V (computer file)", } @Article{Feldman:1996:BLW, author = "Jonathan Feldman", title = "Building a {Linux Web} Server", journal = j-SYS-ADMIN, volume = "5", number = "10", pages = "41--??", month = oct, year = "1996", CODEN = "SYADE7", ISSN = "1061-2688", bibdate = "Tue Oct 08 05:16:28 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Feldman provides a step-by-step approach to configuring the Slackware distribution of NCSA's http daemon.", acknowledgement = ack-nhfb, } @Article{Feldman:1996:ULR, author = "Jonathan Feldman", title = "Using {Linux} as a Router", journal = j-SYS-ADMIN, volume = "5", number = "1", pages = "8--??", month = jan, year = "1996", CODEN = "SYADE7", ISSN = "1061-2688", bibdate = "Sat Aug 31 19:04:03 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Fosner:1996:OPW, author = "Ron Fosner", title = "{OpenGL} programming for {Windows 95} and {Windows NT}", publisher = pub-AW, address = pub-AW:adr, pages = "xv + 259", year = "1996", ISBN = "0-201-40709-4", ISBN-13 = "978-0-201-40709-9", LCCN = "T385 .F663 1996", bibdate = "Sat Oct 10 12:45:57 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", price = "US\$39.76", acknowledgement = ack-nhfb, } @Article{Fraser:1996:CCF, author = "Christopher W. Fraser and David R. Hanson", title = "Compile {C} Faster on {Linux}", journal = j-LINUX-J, volume = "25", pages = "32--33", month = may, year = "1996", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", bibdate = "Fri Feb 17 18:34:29 2006", bibsource = "http://noframes.linuxjournal.com/lj-issues/issue25/index.html; http://www.math.utah.edu/pub/tex/bib/linux-journal.bib; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.cs.princeton.edu/software/lcc/doc/linux.html", abstract = "An introduction to lcc, a compiler 75\% smaller than gcc that also compiles more quickly and helps prevent some porting bugs.", acknowledgement = ack-nhfb, } @Book{Garfinkel:1996:PUI, author = "Simson Garfinkel and Gene Spafford", title = "Practical {UNIX} \& {Internet} Security", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xxix + 971", year = "1996", ISBN = "1-56592-148-8", ISBN-13 = "978-1-56592-148-1", LCCN = "QA76.76.O63G38 1996", bibdate = "Tue Jan 16 06:24:15 1996", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.95", URL = "http://www.ora.com/gnn/bus/ora/item/pus2.html; http://www.oreilly.com/catalog/puis", acknowledgement = ack-nhfb, keywords = "computer security; internet (computer network) -- congresses; operating systems (computers); UNIX (computer file)", } @Book{Hare:1996:IU, author = "Chris Hare", title = "Inside {UNIX}", publisher = pub-NEW-RIDERS, address = pub-NEW-RIDERS:adr, edition = "Second", pages = "xxix + 1212", year = "1996", ISBN = "1-56205-491-0", ISBN-13 = "978-1-56205-491-5", LCCN = "QA76.76.O63 I562 1996", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Article{Hillebrand:1996:MLM, author = "A. Sorgatz und R. Hillebrand", title = "{Mathematik unter Linux: MuPAD --- Ein Computeralgebra System II}. (German) [{Mathematics} in {Linux}: {MuPAD} --- {A} Computer Algebra System, {II}]", journal = "{Linux Magazin}", volume = "2/96, 3/96 ({Nachdruck})", pages = "60--67", year = "1996", bibdate = "Mon Oct 17 19:06:00 2005", bibsource = "http://hpc.cs.ehime-u.ac.jp/MuPAD/BIB/bibtex.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", keywords = "MuPAD, Computer Algebra", } @InProceedings{Hiura:1996:UIU, author = "H. Hiura", title = "{Unicode} and Internationalization with {UNIX} and {X-Window}'s System", crossref = "UC:1996:PCT", pages = "C3--??", year = "1996", bibdate = "Fri Apr 24 11:08:57 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, annote = "Vols 1-2 contain the conference proceedings and the 3rd pt contains pre-conference tutorials proceedings. Theme title: Software development and the Internet: going global with Unicode", keywords = "Internet; software development; Unicode", } @Book{Hodel:1996:BSA, author = "Alan E. Hodel and {/AIXtra}", title = "The best of {/AIXtra}: an eclectic {UNIX} anthology: Volume {III}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "288", month = aug, year = "1996", ISBN = "0-13-494444-5", ISBN-13 = "978-0-13-494444-9", LCCN = "QA76.76.O63B475 1995", bibdate = "Thu Sep 04 12:55:20 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$40.00", URL = "http://www.prenhall.com/ptrbooks/ptr_0134944445.html", acknowledgement = ack-nhfb, keywords = "Microcomputers -- Operating systems; Operating systems (Computers)", searchkey = "ti:aixtra", } @Book{Hubbard:1996:BDM, editor = "Jordan K. Hubbard", title = "{BSD Docs}: the most complete collection of {BSD-UNIX} related articles and documents from the {Internet}", publisher = "Walnut Creek CDROM", address = "Walnut Creek, CA, USA", pages = "4", year = "1996", ISBN = "1-57176-126-8", ISBN-13 = "978-1-57176-126-2", LCCN = "QA76.76.O63", bibdate = "Tue Sep 17 07:13:00 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", acknowledgement = ack-nhfb, } @Book{Jones:1996:GCA, author = "Richard Jones and Rafael Lins", title = "Garbage collection: algorithms for automatic dynamic memory management", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxvi + 377", year = "1996", ISBN = "0-471-94148-4", ISBN-13 = "978-0-471-94148-4", LCCN = "QA76.9.G37 J66 1996", bibdate = "Mon Oct 2 10:46:33 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/description/wiley036/96014601.html; http://www.loc.gov/catdir/toc/onix07/96014601.html", acknowledgement = ack-nhfb, subject = "Garbage collection (Computer science); Memory management (Computer science); Computer algorithms", } @Book{Kelly:1996:AIA, author = "David A. Kelly", title = "{AIX\slash 6000} internals and architecture", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xiii + 271", year = "1996", ISBN = "0-07-034061-7", ISBN-13 = "978-0-07-034061-9", LCCN = "QA76.76.O63 K452 1996", bibdate = "Mon May 24 11:38:33 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Kern:1996:MNE, author = "Harris Kern and Randy Johnson and Michael W. Hawkins and Andrew Law", title = "Managing the New Enterprise: The Proof, Not the Hype", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxiv + 212", year = "1996", ISBN = "0-13-231184-4", ISBN-13 = "978-0-13-231184-7", LCCN = "QA76.9.C55 M35 1996", bibdate = "Fri Apr 11 15:56:17 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sun BluePrints Program", URL = "http://www.sun.com/books/catalog/kern2/index.html", acknowledgement = ack-nhfb, } @Book{Kilgard:1996:OPX, author = "Mark J. Kilgard", title = "{OpenGL} Programming for the {X Window System}", publisher = pub-AW, address = pub-AW:adr, pages = "xxviii + 542", year = "1996", ISBN = "0-201-48359-9", ISBN-13 = "978-0-201-48359-8", LCCN = "T385.K487 1996", bibdate = "Tue May 29 17:50:00 2001", bibsource = "http://reality.sgi.com/mjk/glut3/glut3.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.76", acknowledgement = ack-nhfb, } @Book{Komarinski:1996:LCE, author = "Mark F. Komarinski", title = "{Linux} companion: the essential guide for users and system administrators", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xii + 191", year = "1996", ISBN = "0-13-231838-5", ISBN-13 = "978-0-13-231838-9", LCCN = "QA76.76.O63 K648 1996", bibdate = "Fri Sep 03 05:52:55 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Leininger:1996:ADT, author = "Kevin E. Leininger", title = "{AIX\slash 6000} developer's tool kit", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xiii + 496", year = "1996", ISBN = "0-07-911992-1", ISBN-13 = "978-0-07-911992-6", LCCN = "QA76.76.O63 L4473 1996", bibdate = "Mon May 24 11:39:43 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Leininger:1996:HUD, author = "Kevin E. Leininger", title = "{HP-UX} developer's tool kit", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "ix + 473", year = "1996", ISBN = "0-07-912174-8 (hardcover), 0-07-912175-6 (paperback)", ISBN-13 = "978-0-07-912174-5 (hardcover), 978-0-07-912175-2 (paperback)", LCCN = "QA76.76.O63 L4475 1995", bibdate = "Wed Oct 5 06:14:28 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "J. Ranade workstation series", acknowledgement = ack-nhfb, subject = "Operating systems (Computers); HP-UX", } @InProceedings{Leisher:1996:AIUa, author = "M. Leisher", title = "An Adventure in Implementing {Unicode} Support on {UNIX} Platforms", crossref = "UC:1996:PCT", pages = "C6--??", year = "1996", bibdate = "Fri Apr 24 11:08:57 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, annote = "Vols 1-2 contain the conference proceedings and the 3rd pt contains pre-conference tutorials proceedings. Theme title: Software development and the Internet: going global with Unicode", keywords = "Internet; software development; Unicode", } @InProceedings{Leisher:1996:AIUb, author = "Mark Leisher", title = "An Adventure in Implementing {Unicode} Support on {Unix} Platforms", crossref = "UC:1996:SDI", pages = "8", month = sep, year = "1996", bibdate = "Thu Apr 23 10:10:03 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "ftp://crl.nmsu.edu/CLR/multiling/unicode/paper.ps.gz", acknowledgement = ack-rc, } @Book{Levine:1996:UDC, author = "John R. Levine", title = "The {UNIX} dictionary of commands, terms, and acronyms", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "x + 314", year = "1996", ISBN = "0-07-037643-3 (hardcover), 0-07-037644-1 (paperback)", ISBN-13 = "978-0-07-037643-4 (hardcover), 978-0-07-037644-1 (paperback)", LCCN = "QA76.76.O63 U545134 1996", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Book{Lewis:1996:TPG, author = "Bil Lewis and Daniel J. Berg", title = "Threads Primer: {A} Guide to Multithreaded Programming", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxvi + 319", year = "1996", ISBN = "0-13-443698-9", ISBN-13 = "978-0-13-443698-2", LCCN = "QA76.642 .L478 1996", bibdate = "Fri Apr 11 17:06:46 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sun BluePrints Program", acknowledgement = ack-nhfb, } @Book{Lions:1996:LCU, author = "John Lions", title = "{Lions'} Commentary on {UNIX 6th Edition}, with Source Code", publisher = "Peer-to-Peer Communications", address = "San Jose, CA 95164-0218, USA", pages = "254", year = "1996", ISBN = "1-57398-013-7", ISBN-13 = "978-1-57398-013-5", LCCN = "????", bibdate = "Fri Jun 26 10:43:09 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "With forewords by Dennis M. Ritchie and Ken Thompson. Prefatory notes by Peter H. Salus and Michael Tilson; a Historical Note by Peter H. Salus; and Appreciations by Greg Rose, Mike O'Dell, Berny Goodheart, Peter Collinson, and Peter Reintjes. Originally circulated as two restricted-release volumes: ``UNIX Operating System Source Code Level Six'', and ``A Commentary on the UNIX Operating System''.", price = "US\$29.96; CAN\$41.95", series = "Computer classics revisited", URL = "http://www.peer-to-peer.com/catalog/opsrc/lions.html", acknowledgement = ack-nhfb, } @Book{Lund:1996:IUP, author = "William Lund", title = "Integrating {UNIX} and {PC} network operating systems: {NetWare}, {AppleTalk}, and {LAN} Manager on {UNIX}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xiv + 172", year = "1996", ISBN = "0-13-207374-9", ISBN-13 = "978-0-13-207374-5", LCCN = "QA76.76.O63 L86 1996", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Hewlett--Packard professional books", acknowledgement = ack-nhfb, keywords = "computer networks; operating systems (computers); UNIX (computer file)", } @Book{McKusick:1996:DIO, author = "Marshall Kirk McKusick and Keith Bostic and Michael J. Karels and John S. Quarterman", title = "The Design and Implementation of the 4.4{BSD} Operating System", publisher = pub-AW, address = pub-AW:adr, pages = "xxvi + 580", year = "1996", ISBN = "0-201-54979-4", ISBN-13 = "978-0-201-54979-9", LCCN = "QA76.76.O63D4743 1996", bibdate = "Wed Aug 21 17:23:30 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$44.95", acknowledgement = ack-nhfb, } @Manual{McKusick:1996:UKIa, author = "Marshall Kirk McKusick and Michael J. Karels", title = "{UNIX} kernel internals: implementation, tuning, and networking: {May 13--17, 1996, Engineering 819.235}", publisher = "University of California", address = "Los Angeles, University Extension, Dept. of Engineering, Information Systems, and Technical Management, Short Course Program", pages = "various", year = "1996", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Manual{McKusick:1996:UKIb, author = "Marshall Kirk McKusick", title = "{UNIX} kernel internals: {October 14--18, 1996, Engineering 819.235}", publisher = "University of California", address = "Los Angeles, University Extension, Dept. of Engineering, Information Systems, and Technical Management, Short Course Program", pages = "various", year = "1996", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Moore:1996:DGF, author = "Johanna D. Moore and Vibhu O. Mittal", title = "Dynamically Generated Follow-up Questions", journal = j-COMPUTER, volume = "29", number = "7", pages = "75--86", month = jul, year = "1996", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Mon Feb 3 07:40:15 MST 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliation = "Univ of Pittsburgh", affiliationaddress = "Pittsburgh, PA, USA", classification = "722.2; 722.4; 723.2; 723.4; 723.4.1; 723.5", journalabr = "Computer", keywords = "Algorithms; Computer aided instruction; Computer simulation; Direct manipulation interface; Interactive computer systems; Knowledge based systems; Natural language processing systems; Patient education system; Question generator; Surface realization module; Text planning module; UNIX; User interfaces", } @Book{Morris:1996:WPD, author = "Mary E. S. Morris and Randy J. Hinrichs", title = "{Web} Page Design: {A} Different Multimedia", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxix + 306", year = "1996", ISBN = "0-13-239880-X", ISBN-13 = "978-0-13-239880-0", LCCN = "QA76.76.H94 M65 1996", bibdate = "Fri Apr 11 17:08:58 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sun BluePrints Program", URL = "http://www.sun.com/books/catalog/morris2/index.html", acknowledgement = ack-nhfb, } @Book{Muster:1996:UME, author = "John Muster", title = "{UNIX} made easy", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, edition = "Second", pages = "xviii + 1061", year = "1996", ISBN = "0-07-882173-8", ISBN-13 = "978-0-07-882173-8", LCCN = "QA76.76.O63 U545 1996", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Book{Northrup:1996:PUT, author = "Charles J. Northrup", title = "Programming with {UNIX} Threads", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xv + 399", year = "1996", ISBN = "0-471-13751-0 (paperback)", ISBN-13 = "978-0-471-13751-1 (paperback)", LCCN = "QA76.76.O63 N674 1996", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Book{Orwant:1996:PIC, author = "John Orwant", title = "{Perl} 5 interactive course", publisher = pub-WAITE-GROUP, address = pub-WAITE-GROUP:adr, pages = "xli + 938", year = "1996", ISBN = "1-57169-064-6", ISBN-13 = "978-1-57169-064-7", LCCN = "QA76.73.P22 O79 1996", bibdate = "Fri Sep 03 05:50:57 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Osman:1996:SCC, author = "Mohamed (Mohamed S.) Osman", title = "Successful {C} for commercial {UNIX} developers", publisher = pub-ARTECH, address = pub-ARTECH:adr, pages = "xiv + 369", year = "1996", ISBN = "0-89006-642-6", ISBN-13 = "978-0-89006-642-3", LCCN = "QA76.73.C15 O817 1996", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "The Artech House computer science library", acknowledgement = ack-nhfb, keywords = "C (computer program language); computer software -- development; UNIX (computer file)", } @Book{Pabrai:1996:UI, author = "Uday O. Pabrai", title = "{UNIX} internetworking", publisher = pub-ARTECH, address = pub-ARTECH:adr, edition = "Second", pages = "xix + 454", year = "1996", ISBN = "0-89006-778-3", ISBN-13 = "978-0-89006-778-9", LCCN = "TK5105.5 .P32 1996", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "The Artech House telecommunications library", acknowledgement = ack-nhfb, keywords = "computer networks; internetworking (telecommunication); UNIX (computer file)", } @Book{Palnitkar:1996:VHG, author = "Samir Palnitkar", title = "{Verilog HDL}: {A} Guide to Digital Design and Synthesis", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxxviii + 396", year = "1996", ISBN = "0-13-451675-3", ISBN-13 = "978-0-13-451675-2", LCCN = "TK7885.7.P35 1996", bibdate = "Fri Apr 11 17:07:45 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sun BluePrints Program", URL = "http://www.sun.com/books/catalog/palnitkar/index.html", acknowledgement = ack-nhfb, } @Book{Pate:1996:UIP, author = "Steve D. Pate", title = "{UNIX} Internals: {A} Practical Approach", publisher = pub-AW-LONGMAN, address = pub-AW-LONGMAN:adr, pages = "xxii + 654", year = "1996", ISBN = "0-201-87721-X", ISBN-13 = "978-0-201-87721-2", LCCN = "QA76.76.O63P3776 1996", bibdate = "Tue May 25 06:50:52 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "This books discusses UNIX internals for SCO UNIX, derived from AT\&T System V.3 UNIX, running on Intel x86 hardware.", price = "US\$45.75", acknowledgement = ack-nhfb, } @Book{Poniatowski:1996:HUX, author = "Marty Poniatowski", title = "{HP-UX 10.x} system administration: ``how to'' book", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xx + 383", year = "1996", ISBN = "0-13-125873-7", ISBN-13 = "978-0-13-125873-0", LCCN = "QA76.8.H48 P658 1996", bibdate = "Wed Oct 5 06:18:05 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Hewlett Packard professional books", acknowledgement = ack-nhfb, subject = "Hewlett--Packard computers; Programming; UNIX (Computer file)", } @Book{Probst:1996:PLL, author = "Stefan Probst and Ralf Flaxa", title = "The power {Linux}: {Linux} 1.2, {LST}-distribution 2.1", publisher = pub-SV, address = pub-SV:adr, pages = "vi + 196", year = "1996", ISBN = "3-540-14556-7", ISBN-13 = "978-3-540-14556-1", LCCN = "QA76.76.O63P758 1996", bibdate = "Sat May 4 18:45:07 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; Operating systems (Computers)", } @Book{Purcell:1996:LBG, editor = "John Purcell and Amanda Robinson", title = "The {Linux} Bible: The {GNU} Testament", publisher = pub-YGGDRASIL, address = pub-YGGDRASIL:adr, edition = "Fourth", pages = "1176 (??)", year = "1996", ISBN = "1-883601-10-X (??), 1-883601-20-7", ISBN-13 = "978-1-883601-10-2 (??), 978-1-883601-20-1", LCCN = "QA76.76.O63 L5458 1996", bibdate = "Sun Oct 12 11:59:30 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD ROM.", price = "US\$39.95", acknowledgement = ack-nhfb, } @InProceedings{Rannenberg:1996:SUU, author = "W. Rannenberg", title = "Supporting {Unicode} on a {UNIX} System", crossref = "UC:1996:PCT", pages = "C5--??", year = "1996", bibdate = "Fri Apr 24 11:08:57 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, annote = "Vols 1-2 contain the conference proceedings and the 3rd pt contains pre-conference tutorials proceedings. Theme title: Software development and the Internet: going global with Unicode", keywords = "Internet; software development; Unicode", } @Book{Robbins:1996:PUP, author = "Kay A. Robbins and Steven Robbins", title = "Practical {UNIX} programming: a guide to concurrency, communication, and multithreading", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xiv + 658", year = "1996", ISBN = "0-13-443706-3", ISBN-13 = "978-0-13-443706-4", LCCN = "QA76.76.O63 R615 1996", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "microcomputers -- programming; UNIX (computer file)", } @Book{Rosen:1996:USV, author = "Kenneth H. Rosen", title = "{UNIX System V}, release 4: an introduction", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, edition = "Second", pages = "xliii + 1175", year = "1996", ISBN = "0-07-882130-4", ISBN-13 = "978-0-07-882130-1", LCCN = "QA76.76.O63 R67 1996", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "UNIX System V (computer file)", } @Book{Rule:1996:GFF, author = "Keith Rule", title = "{3D} Graphics File Formats: {A} Programmer's Reference", publisher = pub-AW, address = pub-AW:adr, pages = "xii + 530", year = "1996", ISBN = "0-201-48835-3", ISBN-13 = "978-0-201-48835-7", LCCN = "T385 .R86 1996", bibdate = "Sat Oct 10 12:47:20 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", price = "US\$39.95", acknowledgement = ack-nhfb, } @Book{Stevens:1996:TII, author = "W. Richard Stevens", title = "{TCP\slash IP} Illustrated, Volume 3: {TCP} for Transactions, {HTTP}, {NNTP}, and the {UNIX Domain Protocols}", publisher = pub-AW, address = pub-AW:adr, pages = "xix + 328", year = "1996", ISBN = "0-201-63495-3", ISBN-13 = "978-0-201-63495-2", LCCN = "TK5105.55.S74 1994", bibdate = "Mon Sep 23 09:00:31 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$41.47", series = "Ad{\-d}i{\-s}on-Wes{\-l}ey Professional Computing Series", acknowledgement = ack-nhfb, } @Book{Strobel:1996:L, author = "Stefan Strobel and Thomas Uhl", title = "{Linux}", publisher = "Kossuth Konyvk", address = "Budapest, Hungary", pages = "366", year = "1996", ISBN = "963-09-3896-0", ISBN-13 = "978-963-09-3896-9", LCCN = "????", bibdate = "Fri Apr 30 10:47:31 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Hungarian translation by K. Papp Laszlone and Tarjan Gyorgy of \cite{Strobel:1996:LPW}. See also \cite{Strobel:1995:CLK}.", acknowledgement = ack-nhfb, } @Book{Strobel:1996:LPW, author = "Stefan Strobel and Volker Elling", title = "{Linux --- vom PC zur Workstation: Grundlagen, Installation und praktischer Einsatz}", publisher = pub-SV, address = pub-SV:adr, pages = "xiv + 521", year = "1996", ISBN = "3-540-60557-6, 3-540-58097-2", ISBN-13 = "978-3-540-60557-7, 978-3-540-58097-3", LCCN = "????", bibdate = "Fri Apr 30 10:48:50 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Also available in English \cite{Strobel:1997:LUW} and Hungarian \cite{Strobel:1996:L} translations.", acknowledgement = ack-nhfb, } @InProceedings{Sun:1996:DIC, author = "Y. Sun", title = "Design and Implementation of the {CJK} Unified Character Set on {UNIX} System", crossref = "UC:1996:PCT", pages = "B6--??", year = "1996", bibdate = "Fri Apr 24 11:08:57 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, annote = "Vols 1-2 contain the conference proceedings and the 3rd pt contains pre-conference tutorials proceedings. Theme title: Software development and the Internet: going global with Unicode", keywords = "Internet; software development; Unicode", } @Book{Tackett:1996:SEU, author = "Jack {Tackett, Jr.} and David Gunter", title = "Special edition using {Linux}", publisher = "Que Corp.", address = "Indianapolis, IN, USA", edition = "Second", pages = "xxxvii + 792", year = "1996", ISBN = "0-7897-0742-X", ISBN-13 = "978-0-7897-0742-0", LCCN = "QA76.76.O63T28 1996", bibdate = "Fri Nov 29 10:27:23 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; Operating systems (computers)", } @Book{Tranter:1996:LMG, author = "Jeff Tranter", title = "{Linux} Multimedia Guide", publisher = pub-ORA, address = pub-ORA:adr, pages = "xx + 363", month = "Fall", year = "1996", ISBN = "1-56592-219-0", ISBN-13 = "978-1-56592-219-8", LCCN = "QA76.575 .T73 1996", bibdate = "Mon Apr 18 14:52:38 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", price = "US\$32.95", URL = "http://www.oreilly.com/catalog/9781565922198; http://www.oreilly.com/catalog/multilinux", acknowledgement = ack-nhfb, subject = "Multimedia systems; Linux", } @Book{Vahalia:1996:UI, author = "Uresh Vahalia", title = "{UNIX} Internals", publisher = pub-PH, address = pub-PH:adr, pages = "xxxiii + 601", year = "1996", ISBN = "0-13-101908-2", ISBN-13 = "978-0-13-101908-9", LCCN = "QA76.76.063V33 1996", bibdate = "Mon Sep 23 08:50:16 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$47.75", acknowledgement = ack-nhfb, } @Book{Volkerding:1996:LCI, author = "Patrick Volkerding and Kevin Reichard and Eric F. Johnson", title = "{Linux} configuration and installation", publisher = pub-MIS, address = pub-MIS:adr, edition = "Second", pages = "xix + 522", year = "1996", ISBN = "1-55828-492-3", ISBN-13 = "978-1-55828-492-0", LCCN = "QA76.76.O63 V64 1996", bibdate = "Fri Sep 03 05:53:21 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes two CD-ROMs.", price = "US\$39.95", URL = "http://www.mispress.com/", acknowledgement = ack-nhfb, keywords = "Linux; Operating systems (Computers)", } @Book{Volkerding:1996:LP, author = "Patrick Volkerding and Eric F. Johnson and Kevin Reichard", title = "{Linux} programming", publisher = pub-MIS, address = pub-MIS:adr, edition = "Second", pages = "xxi + 374", year = "1996", ISBN = "1-55828-507-5", ISBN-13 = "978-1-55828-507-1", LCCN = "QA76.76.O63 V65 1996", bibdate = "Fri Sep 03 05:53:46 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", price = "US\$34.95", acknowledgement = ack-nhfb, keywords = "Linux; Operating systems (Computers)", } @Article{Waldegg:1996:MAU, author = "D. Bourges Waldegg and N. Lagha and J.-P. {Le Narzul}", title = "Multimedia Applications on a {Unix SVR4} Kernel: Performance Study", journal = j-LECT-NOTES-COMP-SCI, volume = "1185", pages = "232--??", year = "1996", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", bibdate = "Fri Aug 22 11:59:49 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Wallace:1996:FPG, author = "C. S. Wallace", title = "Fast pseudorandom generators for normal and exponential variates", journal = j-TOMS, volume = "22", number = "1", pages = "119--127", month = mar, year = "1996", CODEN = "ACMSCU", ISSN = "0098-3500 (print), 1557-7295 (electronic)", bibdate = "Sat Aug 31 16:07:02 MDT 1996", bibsource = "http://www.acm.org/pubs/contents/journals/toms/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://doi.acm.org/10.1145/225545.225554; http://www.acm.org/pubs/citations/journals/toms/1996-22-1/p119-wallace/", abstract = "Fast algorithms for generating pseudorandom numbers from the unit-normal and unit-exponential distributions are described. The methods are unusual in that they do not rely on a source of uniform random numbers, but generate the target distributions directly by using their maximal-entropy properties. The algorithms are fast. The normal generator is faster than the commonly used Unix library uniform generator ``random'' when the latter is used to yield real values. Their statistical properties seem satisfactory, but only a limited suite of tests has been conducted. They are written in C and as written assume 32-bit integer arithmetic. The code is publicly available as C source and can easily be adopted for longer word lengths and/or vector processing.", acknowledgement = ack-nhfb, keywords = "algorithms; design; performance", subject = "{\bf G.3}: Mathematics of Computing, PROBABILITY AND STATISTICS, Random number generation. {\bf G.3}: Mathematics of Computing, PROBABILITY AND STATISTICS, Statistical computing.", } @Article{Wang:1996:PEI, author = "X. Wang and E. K. Blum", title = "Parallel Execution of Iterative Computations on Workstation Clusters", journal = j-J-PAR-DIST-COMP, volume = "34", number = "2", pages = "218--226", day = "1", month = may, year = "1996", CODEN = "JPDCER", DOI = "http://dx.doi.org/10.1006/jpdc.1996.0058", ISSN = "0743-7315 (print), 1096-0848 (electronic)", bibdate = "Thu Mar 9 09:18:59 MST 2000", bibsource = "http://www.idealibrary.com/servlet/useragent?func=showAllIssues&curIssueID=jpdc; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.idealibrary.com/links/doi/10.1006/jpdc.1996.0058/production; http://www.idealibrary.com/links/doi/10.1006/jpdc.1996.0058/production/pdf", acknowledgement = ack-nhfb, classification = "B0290H (Linear algebra); B6150M (Protocols); B6210L (Computer communications); C1230D (Neural nets); C4140 (Linear algebra); C5470 (Performance evaluation and testing); C5620L (Local area networks); C5640 (Protocols)", corpsource = "Compbionics Inc., Los Angeles, CA, USA", keywords = "cluster of workstation; clusters; communication issues; equations; interprocess communication; iterative computations; Jacobi method; Jacobian matrices; linear; local area network; local area networks; neural nets; neural networks; nodes; parallel execution; PC; performance evaluation; performance tests; sequential programs; single Ethernet bus segment; transport protocols; UNIX TCP/IP socket commands; workstation", treatment = "A Application; P Practical", } @Book{Welsh:1996:RL, author = "Matt Welsh and Lar Kaufman", title = "Running {Linux}", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xviii + 630", month = "Summer", year = "1996", ISBN = "1-56592-151-8", ISBN-13 = "978-1-56592-151-1", LCCN = "QA76.76.O63W465 1996", bibdate = "Fri Nov 29 10:27:54 1996", bibsource = "ftp://ftp.ora.com/pub/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", acknowledgement = ack-nhfb, keywords = "Linux; Operating systems (Computers)", } @Book{Wright:1996:OSC, author = "Richard S. {Wright, Jr.} and Michael Sweet", title = "{OpenGL} superbible: the complete guide to {OpenGL} programming for {Windows NT} and {Windows 95}", publisher = pub-WAITE-GROUP, address = pub-WAITE-GROUP:adr, pages = "xxix + 714", year = "1996", ISBN = "1-57169-073-5", ISBN-13 = "978-1-57169-073-9", LCCN = "T385 .W73 1996", bibdate = "Sat Mar 28 08:17:00 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Zeller:1996:DFG, author = "Andreas Zeller and Dorothea L{\"u}tkehaus", title = "{DDD}---{A} Free Graphical Front-End for {UNIX} Debuggers", journal = j-SIGPLAN, volume = "31", number = "1", pages = "22--27", month = jan, year = "1996", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:14 MST 2003", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliation = "Abteiling Softwaretechnol., Tech. Univ. Braunschweig, Germany", } @Article{Zuffo:1996:PEH, author = "Marcelo Kn{\"o}rich Zuffo and Andrew J. Grant and Roseli de Deus Lopes and Eduardo Toledo Santos and Jo{\~a}o Antonio Zuffo", title = "A programming environment for high-performance volume visualization applications", journal = j-COMPUTERS-AND-GRAPHICS, volume = "20", number = "3", pages = "385--394", month = may # "--" # jun, year = "1996", CODEN = "COGRD2", ISSN = "0097-8493", bibdate = "Tue Oct 5 21:17:42 MDT 1999", bibsource = "Compendex database; http://www.elsevier.com/cgi-bin/cas/tree/store/cag/cas_free/browse/browse.cgi?year=1996&volume=20&issue=3; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.elsevier.com/cgi-bin/cas/tree/store/cag/cas_sub/browse/browse.cgi?year=1996&volume=20&issue=3&aid=9600007", acknowledgement = ack-nhfb, affiliation = "Escola Politecnica da Universidade de Sao Paulo", affiliationaddress = "Sao Paulo, Braz", classification = "722.2; 722.4; 723.1; 723.2; 723.5", journalabr = "Comput Graphics (Pergamon)", keywords = "Algorithms; Application programming interface; Computer programming; Computer software portability; Distributed memory parallel computers; High performance computing; Interactive computer graphics; Multiprocessing systems; Natural sciences computing; Parallel processing systems; Parallel volume visualization; Scientific applications; Scientific visualization; Shared memory parallel computers; Three dimensional computer graphics; UNIX; Visualization", } @Article{Zuquete:1996:TAC, author = "Andre Zuquete and Paulo Guedes", title = "Transparent Authentication and Confidentiality for Stream Sockets --- Ensuring private network communications for {Unix} and {Windows} systems", journal = j-IEEE-MICRO, volume = "16", number = "3", pages = "34--41", month = jun, year = "1996", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/40.502404", ISSN = "0272-1732 (print), 1937-4143 (electronic)", bibdate = "Mon Apr 7 14:39:59 MDT 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliation = "IST\slash INESC", affiliationaddress = "Lisboa, Port", classcodes = "B6210L (Computer communications); C6130S (Data security); C5620L (Local area networks); C6150N (Distributed systems software)", classification = "716.1; 722; 722.3; 723; 723.2", corpsource = "INESC, Lisbon, Portugal", journalabr = "IEEE Micro", keywords = "authentication; authorisation; client-server; client-server systems; Communication channels (information theory); Computer architecture; Computer networks; confidentiality; Cryptography; Data communication systems; network privacy; Network protocols; Privacy enhanced sockets (PES); public domain; secure; Security of data; Stream sockets; stream sockets; transmission channels", treatment = "P Practical", } @Book{Abrahams:1997:UHI, author = "Paul W. Abrahams and Bruce R. Larson", title = "{UNIX} for the Hyper-Impatient", publisher = pub-AW, address = pub-AW:adr, pages = "????", year = "1997", ISBN = "0-201-41991-2", ISBN-13 = "978-0-201-41991-7", LCCN = "????", bibdate = "Thu Dec 14 11:15:06 1995", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Entire book comes on one CD-ROM.", price = "US\$29.00", acknowledgement = ack-nhfb, } @Book{Abrahams:1997:UI, author = "Paul W. Abrahams and Bruce R. Larson", title = "{UNIX} for the impatient", publisher = pub-AW, address = pub-AW:adr, edition = "Second, {CD-ROM} version", pages = "xxxvi + 824", year = "1997", ISBN = "0-201-41992-0 (CD-ROM), 0-201-41979-3 (Book/CD-ROM)", ISBN-13 = "978-0-201-41992-4 (CD-ROM), 978-0-201-41979-5 (Book/CD-ROM)", LCCN = "QA76.76.O63 A27 1997", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Book{Abrahams:1997:UIC, author = "Paul W. Abrahams and Bruce R. Larson", title = "{UNIX} for the Impatient: {CD}-{ROM} Version", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xxxvi + 824 + CD-31", year = "1997", ISBN = "0-201-41979-3", ISBN-13 = "978-0-201-41979-5", LCCN = "QA76.76.O63 A27 1992", bibdate = "Fri Dec 19 10:57:11 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.00", acknowledgement = ack-nhfb, } @Manual{Allman:1997:FTB, author = "Mark Allman", title = "Fixing two {BSD TCP} bugs", number = "204151", publisher = pub-NTIS, address = pub-NTIS:adr, pages = "????", year = "1997", LCCN = "DOC NAS 1.26:204151 mf11 Microcopy", bibdate = "Tue Sep 17 05:44:14 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Prepared under contract NAS3-27121. Shipping list no. 99-0025-M.", series = "NASA contractor report", acknowledgement = ack-nhfb, keywords = "communication networks; computer networks", } @Book{Alomari:1997:OUP, author = "Ahmed Alomari", title = "{Oracle} and {UNIX} performance tuning", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxiii + 255", year = "1997", ISBN = "0-13-849167-4", ISBN-13 = "978-0-13-849167-3", LCCN = "QA76.9.D3 A52 1997", bibdate = "Mon Jun 29 14:07:41 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Oracle (computer file); relational databases; UNIX (computer file)", } @Book{Angel:1997:ICG, author = "Edward Angel", title = "Interactive computer graphics: a top-down approach with {OpenGL}", publisher = pub-AW, address = pub-AW:adr, pages = "xxxvi + 521", year = "1997", ISBN = "0-201-85571-2", ISBN-13 = "978-0-201-85571-5", LCCN = "T385 .A514 1997", bibdate = "Sat Mar 28 08:19:40 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Arthur:1997:USP, author = "Lowell Jay Arthur and Ted Burns", title = "{UNIX} shell programming", publisher = pub-WILEY, address = pub-WILEY:adr, edition = "Fourth", pages = "x + 518", year = "1997", ISBN = "0-471-16894-7 (paper)", ISBN-13 = "978-0-471-16894-2 (paper)", LCCN = "QA76.76.O63 A76 1997", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "UNIX (computer file); UNIX shells", } @Book{Bourne:1997:CSI, author = "Philip E. Bourne", title = "A cookbook for serving the {Internet}: {UNIX} version", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxix + 303", year = "1997", ISBN = "0-13-519992-1", ISBN-13 = "978-0-13-519992-3", LCCN = "QA76.9.C55 B68 1997", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "client/server computing; Internet (computer network); UNIX (computer file)", } @Article{Brankin:1997:ARF, author = "R. W. Brankin and I. Gladwell", title = "{Algorithm 771}. {\tt rksuite\_90}: {Fortran} Software for Ordinary Differential Equation Initial Value Problems", journal = j-TOMS, volume = "23", number = "3", pages = "402--415", month = sep, year = "1997", CODEN = "CACMA2", ISSN = "0001-0782 (print), 1557-7317 (electronic)", bibdate = "Wed May 6 11:23:41 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://doi.acm.org/10.1145/275323.275328; http://www.acm.org/pubs/citations/journals/toms/1997-23-3/p402-brankin/", abstract = "We present Fortran 90 software for the initial-value problem in ordinary differential equations, including the interfaces and how Fortran 90 language features afford the opportunity to address different types and structures of variables and to provide additional functionality. A novel feature of this software is the availability of Unix scripts which enable presentation of the software for multiple problem types.", accepted = "January 1997", acknowledgement = ack-rfb # " and " # ack-kr, keywords = "algorithms, complex, recursion", subject = "{\bf D.3.2}: Software, PROGRAMMING LANGUAGES, Language Classifications, Fortran 90. {\bf G.1.7}: Mathematics of Computing, ORDINARY DIFFERENTIAL EQUATIONS, Initial value problems. {\bf G.4}: Mathematics of Computing, MATHEMATICAL SOFTWARE.", } @Book{Brown:1997:ODA, author = "Lynnwood Brown", title = "{Oracle} database administration on {UNIX} systems", publisher = pub-PH, address = pub-PH:adr, pages = "xxi + 189", year = "1997", ISBN = "0-13-244666-9", ISBN-13 = "978-0-13-244666-2", LCCN = "QA76.9.D3 B7826 1997", bibdate = "Mon Jun 29 14:07:41 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "database management; Oracle (computer file); UNIX (computer file)", } @Book{Burk:1997:UUa, author = "Robin Burk and David B. Horvath", title = "{UNIX} unleashed", publisher = pub-SAMS, address = pub-SAMS:adr, edition = "Second {Internet}", pages = "li + 1114", year = "1997", ISBN = "0-672-31205-0", ISBN-13 = "978-0-672-31205-2", LCCN = "QA76.76.O63 B867 1997", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Book{Burk:1997:UUb, author = "Robin Burk and David B. Horvath", title = "{UNIX} unleashed", publisher = pub-SAMS, address = pub-SAMS:adr, edition = "Second System Administrator's", pages = "li + 1342", year = "1997", ISBN = "0-672-30952-1", ISBN-13 = "978-0-672-30952-6", LCCN = "QA76.76.O63 B867 1997b", bibdate = "Thu Oct 31 18:25:16 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "CD-ROM includes: an assortment of third-party tools and product demos; entire text of this book in electronic format; and an electronic version of UNIX unleashed, Internet edition.", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Book{Butenhof:1997:PPT, author = "David R. Butenhof", title = "Programming with {POSIX} threads", publisher = pub-AW, address = pub-AW:adr, pages = "xviii + 381", year = "1997", ISBN = "0-201-63392-2", ISBN-13 = "978-0-201-63392-4", LCCN = "QA76.76.T55B88 1997", bibdate = "Mon Sep 01 08:53:12 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$31.95", URL = "http://www.amazon.com/exec/obidos/ASIN/0201633922/ref=sim_books/002-4892305-5599452", acknowledgement = ack-nhfb, } @Book{Butzen:1997:LD, author = "Fred Butzen and Dorothy Forbes", title = "The {Linux} Database", publisher = pub-MIS, address = pub-MIS:adr, pages = "xiv + 561", year = "1997", ISBN = "1-55828-491-5", ISBN-13 = "978-1-55828-491-3", LCCN = "QA76.9.D3B893 1997", bibdate = "Mon Oct 13 09:58:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.95, CDN\$55.95", series = "The MIS:Press slackware series", URL = "http://www.mispress.com/", acknowledgement = ack-nhfb, } @Book{Chan:1997:USP, author = "Terrence Chan", title = "{UNIX} system programming using {C++}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xv + 598", year = "1997", ISBN = "0-13-331562-2", ISBN-13 = "978-0-13-331562-2", LCCN = "QA76.73.C153 C46 1997", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "C (computer program language); UNIX (computer file)", } @Article{Cherlin:1997:BLB, author = "Edward Cherlin", title = "Breaking the Language Barrier: {Java}, with no legacy code, is pushing the pace of adoption of {Unicode}, the only global character set", journal = j-UNIX-DEVELOPER, volume = "1", number = "1", pages = "56--59", month = jan # "\slash " # feb, year = "1997", ISSN = "1090-2279", bibdate = "Thu Jan 16 17:23:49 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Chu:1997:SRT, author = "H.-H. Chu and K. Nahrstedt", title = "A Soft Real Time Scheduling Server in {UNIX} Operating System", journal = j-LECT-NOTES-COMP-SCI, volume = "1309", pages = "153--??", year = "1997", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", bibdate = "Tue Apr 28 08:51:33 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Misc{comp-lang-awk:1997:CLA, key = "comp.lang.awk", title = "comp.lang.awk", howpublished = "Internet mailing list", year = "1997", bibdate = "Fri Jul 01 14:49:19 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "news:comp.lang.awk", abstract = "The Usenet newsgroup comp.lang.awk is in the general topic area of computer-related topics and covers the specific topic of the AWK programming language. This group is an open forum", acknowledgement = ack-nhfb, } @Book{Costales:1997:S, author = "Bryan Costales and Eric Allman", title = "sendmail", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xxv + 1021", year = "1997", ISBN = "1-56592-222-0", ISBN-13 = "978-1-56592-222-8", LCCN = "HE6239.E54 C67 1997", bibdate = "Wed Jul 23 14:54:43 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.95", URL = "http://www.ora.com/catalog/sendmail2/; http://www.oreilly.com/catalog/sendmail2", acknowledgement = ack-nhfb, } @Book{Costales:1997:SDR, author = "Bryan Costales", title = "sendmail Desktop Reference", publisher = pub-ORA, address = pub-ORA:adr, pages = "viii + 68", year = "1997", ISBN = "1-56592-278-6", ISBN-13 = "978-1-56592-278-5", LCCN = "????", bibdate = "Wed Jul 23 14:54:43 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$6.95", URL = "http://www.ora.com/catalog/sendmailqr/; http://www.oreilly.com/catalog/sendmailqr", acknowledgement = ack-nhfb, } @Book{David:1997:EIO, author = "Olaf David", title = "{Entwurf und Implementation einer objektorientierten {UNIX}-Shell: ein Prototyping-orientierter Ansatz}. ({German}) [Development and Implementation of an Object-Oriented {UNIX} Shell: {A} Prototyping-Oriented Introduction]", volume = "6", publisher = "Friedrich-Schiller-Universit{\"a}t, Institut f{\"u}r Geographie, Selbstverlag", address = "Jena, Germany", pages = "ix + 66", year = "1997", ISSN = "0944-9795", LCCN = "QA76.64 .D38 1997", bibdate = "Mon Jan 8 06:35:48 MST 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Jenaer geographische Schriften", acknowledgement = ack-nhfb, language = "German", remark = "Originally presented as the author's doctoral thesis, Friedrich-Schiller-Universit{\"a}t Jena, 1996.", subject = "Object-oriented programming (Computer science); UNIX Shells", } @Book{DeRoest:1997:AVS, author = "James W. DeRoest", title = "{AIX} version 4: system and administration guide", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xxv + 591", year = "1997", ISBN = "0-07-036688-8", ISBN-13 = "978-0-07-036688-6", LCCN = "QA76.76.O63D4725 1997", bibdate = "Tue May 25 06:47:16 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$44.95", acknowledgement = ack-nhfb, } @Article{Do:1997:LEU, author = "James Do and Muhammed Mudawwar", title = "Letters to the Editor: {Unicode} Misunderstood", journal = j-COMPUTER, volume = "30", number = "6", pages = "6, 9", month = jun, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Wed Jun 04 08:59:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Response and rebuttal to \cite{Mudawwar:1997:MTM}.", acknowledgement = ack-nhfb, } @Article{Donkers:1997:IL, author = "Arthur Donkers", title = "{ISDN} and {Linux}", journal = j-SYS-ADMIN, volume = "6", number = "10", pages = "51--53, 55, 57--60", month = oct, year = "1997", CODEN = "SYADE7", ISSN = "1061-2688", bibdate = "Wed Sep 24 06:56:02 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Donkers:1997:WLD, author = "Arthur Donkers", title = "Writing {Linux} Device Drivers", journal = j-SYS-ADMIN, volume = "6", number = "1", pages = "8--??", month = jan, year = "1997", CODEN = "SYADE7", ISSN = "1061-2688", bibdate = "Mon May 12 17:14:49 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Dougherty:1997:SA, author = "Dale Dougherty and Arnold Robbins", title = "{\tt sed} and {\tt awk}", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xxii + 407", month = feb, year = "1997", ISBN = "1-56592-225-5", ISBN-13 = "978-1-56592-225-9", LCCN = "QA76.76.U84 D69 1997", bibdate = "Mon May 11 11:08:26 1998", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", URL = "http://www.oreilly.com/catalog/sed2", acknowledgement = ack-nhfb, } @Book{ESRI:1997:AML, author = "{Environmental Systems Research Institute (Redlands, CA)}", title = "{ARC} macro language: developing {ARC\slash INFO} menus and macros with {AML}: self-study workbook: version 7.1.1 for {UNIX} and {Windows NT}", publisher = pub-WILEY, address = pub-WILEY:adr, edition = "Second", pages = "various", year = "1997", ISBN = "1-86242-044-0", ISBN-13 = "978-1-86242-044-1", LCCN = "G70.212 .A73 1997", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "CD-ROM includes sample programs, data and exercise solutions for the workbook.", acknowledgement = ack-nhfb, keywords = "ARC/INFO (computer program); geographic information systems; geographic information systems -- software", } @Book{ESRI:1997:UGA, author = "{Environmental Systems Research Institute (Redlands, CA)}", title = "Understanding {GIS}: the {ARC\slash INFO} method: self-study workbook: version 7.1 for {UNIX} and {Windows NT}", publisher = pub-WILEY, address = pub-WILEY:adr, edition = "Fourth", pages = "various", year = "1997", ISBN = "1-86242-033-5", ISBN-13 = "978-1-86242-033-5", LCCN = "G70.2 .U535 1997", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes index.", acknowledgement = ack-nhfb, keywords = "arc/info; geographic information systems", } @Book{Foster-Johnson:1997:UPT, author = "Eric Foster-Johnson", title = "{UNIX} programming tools", publisher = pub-MT, address = pub-MT:adr, pages = "xviii + 346", year = "1997", ISBN = "1-55851-482-1", ISBN-13 = "978-1-55851-482-9", LCCN = "QA 76.76 O63 J627 1997", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Book{Friedl:1997:MRE, author = "Jeffrey E. F. Friedl", title = "Mastering regular expressions: powerful techniques for {Perl} and other tools", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxiv + 342", year = "1997", ISBN = "1-56592-257-3", ISBN-13 = "978-1-56592-257-0", LCCN = "QA76.73.P22 F75 1997; QA76.9.D3G728 1997", bibdate = "Mon Apr 18 14:53:04 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", price = "US\$29.95", series = "A Nutshell handbook", URL = "http://www.ora.com/catalog/regex/; http://www.oreilly.com/catalog/9781565922570; http://www.oreilly.com/catalog/regex", acknowledgement = ack-nhfb, subject = "Perl (Computer program language)", } @Article{Garber:1997:NBC, author = "Lee Garber", title = "News Briefs: Crucial Compromise Launches Digital {TV}. {US} Encryption Agreement in Jeopardy. Warning Issued about {UNIX} Flaw. {WIPO} Discusses Cyberspace Copyrights. {IT} Issues Could Threaten {European Monetary Union}. {COBOL} Programmers in Demand Again. Chip Alliance Formed. Semiconductor Film Grown in Space. Survey Reveals Security Fears and Vulnerability. Taxing the {Internet}", journal = j-COMPUTER, volume = "30", number = "2", pages = "18, 19, 22", month = feb, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Tue Mar 4 18:25:03 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Gillett:1997:UMC, author = "Richard Gillett and Richard Kaufmann", title = "Using the {Memory Channel Network} --- Using a cluster of standard {PCI-based} servers with a low-cost network to improve communication performance", journal = j-IEEE-MICRO, volume = "17", number = "1", pages = "19--25", month = jan # "\slash " # feb, year = "1997", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/40.566189", ISSN = "0272-1732 (print), 1937-4143 (electronic)", bibdate = "Mon Apr 7 14:39:59 MDT 1997", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliation = "Digital Equipment Corp", affiliationaddress = "MA, USA", classcodes = "C5610N (Network interfaces); C5620 (Computer networks and techniques)", classification = "716.1; 722.1; 722.3; 722.4; 723.1; 723.2", corpsource = "Digital Equip. Corp., USA", journalabr = "IEEE Micro", keywords = "Bandwidth; clusters; Coding errors; Communication channels (information theory); Computer networks; computer networks; Computer software; Data communication systems; Data handling; Data storage equipment; Data transfer; DEC computers; Digital; Latency; Lock acquisition; Lock release; Memory channel; Memory Channel; Memory Channel Network; Message passing; Message size; message-passing; network for; network interfaces; Parallel processing systems; PCI bus; Performance; Raw message passing; Storage allocation (computer); Universal message passing; UNIX", treatment = "P Practical", } @Book{Gray:1997:ICU, author = "John Shapeley Gray", title = "Interprocess Communications in {UNIX}: The Nooks and Crannies", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "x + 364", year = "1997", ISBN = "0-13-186891-8", ISBN-13 = "978-0-13-186891-5", LCCN = "QA76.76.O63 G729 1997", bibdate = "Wed Jun 17 06:54:47 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.phptr.com", acknowledgement = ack-nhfb, } @Book{Gunter:1997:WNU, author = "David Gunter and Steven Burnett and Lola Gunter", title = "{Windows NT} and {UNIX} Integration Guide", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, pages = "xxvi + 450", year = "1997", ISBN = "0-07-882395-1", ISBN-13 = "978-0-07-882395-4", LCCN = "QA76.76.O63G868 1997", bibdate = "Fri Apr 11 06:47:09 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", acknowledgement = ack-nhfb, } @Article{Harchol--Balter:1997:EPL, author = "Mor Harchol-Balter and Allen B. Downey", title = "Exploiting Process Lifetime Distributions for Dynamic Load Balancing", journal = j-TOCS, volume = "15", number = "3", pages = "253--285", month = aug, year = "1997", CODEN = "ACSYEC", ISSN = "0734-2071", bibdate = "Wed Jan 13 18:36:53 MST 1999", bibsource = "http://www.acm.org/pubs/contents/journals/tocs/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80/pubs/citations/journals/tocs/1997-15-3/p253-harchol-balter/", abstract = "We consider policies for CPU load balancing in networks of workstations. We address the question of whether preemptive migration (migrating active processes) is necessary, or whether remote execution (migrating processes only at the time of birth) is sufficient for load balancing. We show that resolving this issue is strongly tied to understanding the process lifetime distribution. Our measurements indicate that the distribution of lifetimes for a UNIX process is Pareto (heavy-tailed), with a consistent functional form over a variety of workloads. We show how to apply this distribution to derive a preemptive migration policy that requires no hand-tuned parameters. We used a trace-driven simulation to show that our preemptive migration strategy is far more effective than remote execution, even when the memory transfer cost is high.", acknowledgement = ack-nhfb, keywords = "algorithms; design; measurement; performance", subject = "{\bf C.2.3} Computer Systems Organization, COMPUTER-COMMUNICATION NETWORKS, Network Operations, Network management. {\bf C.2.4} Computer Systems Organization, COMPUTER-COMMUNICATION NETWORKS, Distributed Systems. {\bf C.4} Computer Systems Organization, PERFORMANCE OF SYSTEMS. {\bf C.5.3} Computer Systems Organization, COMPUTER SYSTEM IMPLEMENTATION, Microcomputers. {\bf G.3} Mathematics of Computing, PROBABILITY AND STATISTICS. {\bf G.m} Mathematics of Computing, MISCELLANEOUS. {\bf I.6.0} Computing Methodologies, SIMULATION AND MODELING, General. {\bf C.2.3} Computer Systems Organization, COMPUTER-COMMUNICATION NETWORKS, Network Operations, Network monitoring.", } @Book{Hekman:1997:LND, author = "Jessica Perry Hekman", title = "{Linux} in a Nutshell: a desktop quick reference", publisher = pub-ORA, address = pub-ORA:adr, pages = "xi + 424", year = "1997", ISBN = "1-56592-167-4", ISBN-13 = "978-1-56592-167-2", LCCN = "QA76.76.O63 H453 1997", bibdate = "Mon Apr 18 14:52:04 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", price = "US\$19.95", URL = "http://www.oreilly.com/catalog/9781565921672; http://www.oreilly.com/catalog/linuxnut", acknowledgement = ack-nhfb, subject = "GNU/Linux; Operating systems (Computers)", } @Book{James:1997:UE, author = "Scott D. James", title = "{UNIX} for engineers", publisher = pub-AW, address = pub-AW:adr, pages = "vi + 122", year = "1997", ISBN = "0-8053-6488-9", ISBN-13 = "978-0-8053-6488-0", LCCN = "QA 76.76 O63 J36 1997", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "engineering -- data processing; UNIX (computer file)", } @Book{Josey:1997:GSA, author = "Andrew Josey", title = "Go {Solo 2}: the authorized guide to version 2 of the {Single UNIX} specification", publisher = pub-PH, address = pub-PH:adr, pages = "xxxiv + 578", year = "1997", ISBN = "0-13-575689-8", ISBN-13 = "978-0-13-575689-8", LCCN = "QA76.76.O63 G618 1997", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Book{Joy:1997:BU, author = "Mike Joy", title = "Beginning {UNIX}", publisher = pub-ITCP, address = pub-ITCP:adr, edition = "Second", pages = "ix + 242", year = "1997", ISBN = "1-85032-263-5", ISBN-13 = "978-1-85032-263-4", LCCN = "QA76.76.O63 J69 1997", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Tutorial guides in computing and information systems", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Book{Kempf:1997:ORM, author = "Renate Kempf and Chris Frazier and {OpenGL Architecture Review Board}", title = "{OpenGL} reference manual: the official reference document to {OpenGL}, version 1.1", publisher = pub-AWDP, address = pub-AWDP:adr, edition = "Second", pages = "x + 490", year = "1997", ISBN = "0-201-46140-4", ISBN-13 = "978-0-201-46140-4", LCCN = "T385 .O642 1997", bibdate = "Tue May 25 08:28:35 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Kern:1997:NNE, author = "Harris Kern and Randy Johnson and Michael W. Hawkins and Howie Lyke and William Kennedy and Mark Cappel", title = "Networking the new enterprise: the proof not the hype", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xx + 264", year = "1997", ISBN = "0-13-263427-9", ISBN-13 = "978-0-13-263427-4", LCCN = "HD30.37 .N48 1997", bibdate = "Fri Apr 11 16:01:28 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sun BluePrints Program", acknowledgement = ack-nhfb, } @Book{Kurani:1997:XO, author = "Bharat Kurani", title = "Applied {Unix} programming", volume = "2", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xviii + 1250", year = "1997", ISBN = "0-13-304338-X (vol. 1), 0-13-304346-0 (vol. 2)", ISBN-13 = "978-0-13-304338-9 (vol. 1), 978-0-13-304346-4 (vol. 2)", LCCN = "QA76.76.O63 K86 1994", bibdate = "Thu Sep 19 09:23:41 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Two volumes.", acknowledgement = ack-nhfb, keywords = "X/Open", } @Book{Levine:1997:UD, author = "John R. Levine and Margaret Levine Young", title = "{UNIX} for dummies", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, edition = "Third", pages = "xxvi + 376", year = "1997", ISBN = "0-7645-0130-5", ISBN-13 = "978-0-7645-0130-2", LCCN = "QA76.76.O63 L486 1997", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "UNIX (computer file)", } @Book{Loukides:1997:PGS, author = "Mike Loukides and Andy Oram", title = "Programming with {GNU} Software", publisher = pub-ORA, address = pub-ORA:adr, pages = "xiv + 244", year = "1997", ISBN = "1-56592-112-7", ISBN-13 = "978-1-56592-112-2", LCCN = "QA76.76.O63L65 1997", bibdate = "Wed Jul 23 14:54:43 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", price = "US\$39.95", URL = "http://www.ora.com/catalog/prognu/; http://www.oreilly.com/catalog/prognu", acknowledgement = ack-nhfb, } @Book{Madell:1997:DFM, author = "Tom Madell", title = "Disk and file management tasks on {HP-UX}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xvii + 176", year = "1997", ISBN = "0-13-518861-X", ISBN-13 = "978-0-13-518861-3", LCCN = "QA76.9.H35 M33 1997", bibdate = "Wed Oct 5 06:18:05 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Hewlett--Packard Professional Books", acknowledgement = ack-nhfb, subject = "Hard disk management; File organization (Computer science); HP-UX", } @Book{Mauerer:1997:TLU, author = "Wolfgang Mauerer", title = "Textverarbeitung mit {\LaTeXe} unter {UNIX}", publisher = pub-HANSER, address = pub-HANSER:adr, pages = "xiv + 361", year = "1997", ISBN = "3-446-18909-2", ISBN-13 = "978-3-446-18909-6", LCCN = "????", bibdate = "Sat Mar 07 09:31:31 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "DM 49,80", series = "UNIX easy", acknowledgement = ack-nhfb, } @Manual{McKusick:1997:UKIa, author = "Marshall Kirk McKusick", title = "{UNIX} kernel internals: {September 22-26, 1997, Engineering 819.235}", publisher = "University of California", address = "Los Angeles, University Extension, Dept. of Engineering, Information Systems, and Technical Management, Short Course Program", pages = "various", year = "1997", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Manual{McKusick:1997:UKIb, author = "Marshall Kirk McKusick", title = "{UNIX} kernel internals: {October 20--24, 1997, Engineering 819.235}", publisher = "University of California", address = "Los Angeles, University Extension, Dept. of Engineering, Information Systems, and Technical Management, Short Course Program", pages = "various", year = "1997", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Merusi:1997:WNU, author = "Donald Merusi", title = "{Windows NT\slash 95} for {Unix} professionals", publisher = pub-DP, address = pub-DP:adr, pages = "ix + 177", year = "1997", ISBN = "1-55558-181-1 (paperback)", ISBN-13 = "978-1-55558-181-7 (paperback)", LCCN = "QA76.76.O63 M465 1997", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Microsoft Windows (computer file); Microsoft Windows NT; operating systems (computers)", } @Book{Mione:1997:CMP, author = "Antonino N. Mione", title = "{CDE}\ldots{} {Motif}: a practical primer", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "523", year = "1997", ISBN = "0-13-760828-4", ISBN-13 = "978-0-13-760828-7", LCCN = "QA76.9.U83M57 1997", bibdate = "Thu Feb 26 11:01:07 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.00", acknowledgement = ack-nhfb, } @Book{Morin:1997:MML, author = "Rich Morin", title = "{MkLinux}: Microkernel {Linux} for the {Power Macintosh}", publisher = pub-PRIME-TIME-FREEWARE, address = pub-PRIME-TIME-FREEWARE:adr, pages = "322", year = "1997", ISBN = "1-881957-24-1", ISBN-13 = "978-1-881957-24-9", LCCN = "????", bibdate = "Mon Sep 01 09:07:13 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", price = "US\$50.00", acknowledgement = ack-nhfb, } @Article{Mudawwar:1997:MTM, author = "Muhammed F. Mudawwar", title = "{Multicode}: {A} Truly Multilingual Approach to Text Encoding: {Unicode} was designed to extend {ASCII} for encoding text in different languages, but it still have several important drawbacks. Multicode overcomes those drawbacks.", journal = j-COMPUTER, volume = "30", number = "4", pages = "37--43", month = apr, year = "1997", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Thu Apr 29 17:59:51 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "See also response and rebuttal \cite{Do:1997:LEU} and letter \cite{Clinton:1998:LBM}.", acknowledgement = ack-nhfb, classification = "B6120B (Codes); C6130 (Data handling techniques)", corpsource = "Dept. of Comput. Sci., American Univ., Cairo, Egypt", keywords = "ASCII; character sets; code conversion; code standards; computer industry acceptance; DP industry; future; Multicode; multilingual approach; programming ease; reserved character set; text encoding; Unicode file representation; unified fonts; variable length codes", treatment = "G General Review; P Practical", } @Article{Ni:1997:ETT, author = "David Chi-Liang Ni", title = "Enumeration and traceability tools for {UNIX}{\TM} and {WINDOWS}{\TM} environments", journal = j-J-SYST-SOFTW, volume = "39", number = "1", pages = "15--25", month = oct, year = "1997", CODEN = "JSSODM", ISSN = "0164-1212", bibdate = "Thu Sep 9 05:51:45 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sciencedirect.com/science/journal/01641212", acknowledgement = ack-nhfb, } @Book{Oualline:1997:DL, author = "Steve Oualline", title = "Discover {Linux}", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xxvi + 438", year = "1997", ISBN = "0-7645-3105-0", ISBN-13 = "978-0-7645-3105-7", LCCN = "QA76.76.O63O83 1997", bibdate = "Thu Feb 26 11:02:37 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$24.99", acknowledgement = ack-nhfb, } @Book{Peek:1997:UPT, author = "Jerry Peek and Tim O'Reilly and Mike Loukides and Linda Mui and others", title = "{UNIX} Power Tools", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xliii + 1073", year = "1997", ISBN = "1-56592-260-3", ISBN-13 = "978-1-56592-260-0", LCCN = "QA76.76.O63 P44 1997", bibdate = "Fri Dec 22 06:46:51 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$59.95", URL = "http://www.ora.com/catalog/upt2/; http://www.oreilly.com/catalog/upt2", acknowledgement = ack-nhfb, } @Article{Ponder:1997:OUD, author = "Carl Ponder", title = "Organizing {UNIX} directories as lattices", journal = j-OPER-SYS-REV, volume = "31", number = "4", pages = "72--77", month = oct, year = "1997", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:52 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Poniatowski:1997:LHU, author = "Marty Poniatowski", title = "Learning the {HP-UX} operating system", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxi + 313", year = "1997", ISBN = "0-13-258534-0", ISBN-13 = "978-0-13-258534-7", LCCN = "QA76.76.O63 P65 1997", bibdate = "Wed Oct 5 06:08:40 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Hewlett--Packard professional books", acknowledgement = ack-nhfb, subject = "Operating systems (Computers); HP-UX", } @Book{Poniatowski:1997:WNH, author = "Marty Poniatowski", title = "The {Windows NT} and {HP-UX} system administrator's ``how-to'' book", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxvi + 576", year = "1997", ISBN = "0-13-861709-0 (paperback)", ISBN-13 = "978-0-13-861709-7 (paperback)", LCCN = "QA76.76.O63 P655 1997", bibdate = "Wed Oct 5 06:12:57 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Microsoft Windows NT; HP-UX; Operating systems (Computers)", } @Book{Quigley:1997:USE, author = "Ellie Quigley", title = "{UNIX} shells by example", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "x + 644", year = "1997", ISBN = "0-13-460866-6", ISBN-13 = "978-0-13-460866-2", LCCN = "QA76.76.O63 Q54 1997", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "UNIX (computer file); UNIX shells", } @Book{Reichard:1997:UPE, author = "Kevin Reichard and Eric Foster-Johnson", title = "{UNIX} in plain English", publisher = pub-MIS, address = pub-MIS:adr, edition = "Second", pages = "v + 438", year = "1997", ISBN = "1-55828-549-0 (paperback)", ISBN-13 = "978-1-55828-549-1 (paperback)", LCCN = "QA76.76.O63 R4448 1997", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Article{Remy:1997:PSH, author = "Martin Remy", title = "Portable Signal Handling Under {UNIX}", journal = j-CCCUJ, volume = "15", number = "3", pages = "23--??", month = mar, year = "1997", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Sat May 17 18:16:21 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @MastersThesis{Sakaguchi:1997:UUS, author = "Takeyuki Sakaguchi", title = "{UNISEX-C}: a {UNIx}-based symbolic {EXecutor} for standard {C}", type = "Thesis (M.S.)", school = "University of California, Santa Barbara", address = "Santa Barbara, CA, USA", year = "1997", LCCN = "QA76.27.C2 S25 SAKT 1997 Sci-Eng", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "dissertations, academic -- UCSB -- computer science", } @Article{Salus:1997:TYA, author = "Peter H. Salus", title = "Twenty Years Ago in {{\em UNIX NEWS}}", journal = j-LOGIN, volume = "22", number = "5", pages = "??--??", month = oct, year = "1997", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:35:55 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/contents/contents.oct97.html", acknowledgement = ack-nhfb, } @Book{Scheifler:1997:XWSa, author = "Robert W. Scheifler and James Gettys", title = "{X Window System}: core and extension protocols: {X} version 11, releases 6 and 6.1", publisher = pub-DP, address = pub-DP:adr, pages = "xix + 996", year = "1997", ISBN = "1-55558-148-X", ISBN-13 = "978-1-55558-148-0", LCCN = "QA76.76.W56S342 1997", bibdate = "Tue May 25 06:51:24 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Edited by Al Mento and Donna Converse.", acknowledgement = ack-nhfb, } @Book{Scheifler:1997:XWSb, author = "Robert W. Scheifler and James Gettys", title = "{X Window System}: core library and standards: {X} version 11, releases 6 and 6.1", publisher = pub-DP, address = pub-DP:adr, pages = "xix + 798", year = "1997", ISBN = "1-55558-154-4", ISBN-13 = "978-1-55558-154-1", LCCN = "QA76.76.W56S342 1997", bibdate = "Tue May 25 06:51:24 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Edited by Al Mento and Donna Converse.", acknowledgement = ack-nhfb, } @InProceedings{Sedgewick:1997:FAS, author = "R. Sedgewick and J. Bentley", title = "Fast Algorithms for Sorting and Searching Strings", crossref = "ACM:1997:PEA", pages = "360--369", year = "1997", bibdate = "Tue Dec 06 08:48:26 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "This is the fourth of four key papers behind the {\tt bzip2} compression tools. The others are \cite{Hirschberg:1990:EDP,Burrows:1994:BSL,Wheeler:1997:UB}.", URL = "http://www.cs.princeton.edu/~rs/talks/strings.ps", acknowledgement = ack-nhfb, } @Book{Snyder:1997:TUS, author = "Garth Snyder and Trent R. Hein and Evi Nemeth", title = "Tools for {UNIX} system administrators", publisher = pub-PH, address = pub-PH:adr, year = "1997", ISBN = "0-13-665431-2", ISBN-13 = "978-0-13-665431-5", LCCN = "QA76.76.O63 T45 1997", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Companion CD-ROM to {\em UNIX system administration handbook, 2nd ed.}.", acknowledgement = ack-nhfb, keywords = "computer networks; computer programs; computer security; electronic mail systems; GNU; Internet (computer network) -- security measures; operating systems (computers); TCP/IP (computer network protocol); UNIX (computer file); utilities (computer programs)", } @Book{Sobell:1997:PGL, author = "Mark G. Sobell", title = "A Practical Guide to {Linux}", publisher = pub-AW, address = pub-AW:adr, pages = "xlvii + 1015", year = "1997", ISBN = "0-201-89549-8", ISBN-13 = "978-0-201-89549-0", LCCN = "QA76.76.O63S5948 1997", bibdate = "Mon Sep 01 09:06:35 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Forward by Linus Torvalds.", price = "US\$37.61", acknowledgement = ack-nhfb, } @Book{Strobel:1997:LUW, author = "Stefan Strobel and Volker Elling", title = "{Linux}, unleashing the workstation in your {PC}", publisher = pub-SV, address = pub-SV:adr, pages = "xv + 587", year = "1997", ISBN = "0-387-94880-5", ISBN-13 = "978-0-387-94880-5", LCCN = "QA76.5 .S78513 1997", bibdate = "Tue Jul 07 09:50:33 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Foreword by Jurgen Gulbins. Translated by Robert Bach and Aileen Darling from the German edition \cite{Strobel:1996:LPW}.", price = "US\$30", acknowledgement = ack-nhfb, } @Book{SysAdmin:1997:UPT, editor = "{Sys Admin Editors}", title = "{UNIX} Performance Tuning", publisher = pub-R-D-BOOKS, address = pub-R-D-BOOKS:adr, pages = "viii + 236", year = "1997", ISBN = "0-87930-470-7", ISBN-13 = "978-0-87930-470-6", LCCN = "????", bibdate = "Wed Dec 02 17:24:58 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes floppy disk.", price = "US\$29.95", acknowledgement = ack-nhfb, } @Book{SysAdmin:1997:US, editor = "{Sys Admin Editors}", title = "{UNIX} Security", publisher = pub-R-D-BOOKS, address = pub-R-D-BOOKS:adr, pages = "viii + 246", year = "1997", ISBN = "0-87930-471-5", ISBN-13 = "978-0-87930-471-3", LCCN = "????", bibdate = "Wed Dec 02 17:24:58 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @Book{Tanenbaum:1997:OSD, author = "Andrew S. Tanenbaum and Albert S. Woodhull", title = "Operating Systems\emdash Design and Implementation", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "xvii + 939", year = "1997", ISBN = "0-13-638677-6", ISBN-13 = "978-0-13-638677-3", LCCN = "QA76.76.O63T36 1997", bibdate = "Wed Dec 31 08:29:24 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", price = "US\$62.00", } @Book{Tuthill:1997:SID, author = "Bill Tuthill and David Smallberg", title = "{Solaris} International Developer's Guide", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, edition = "Second", pages = "xxiii + 382", year = "1997", ISBN = "0-13-494493-3", ISBN-13 = "978-0-13-494493-7", LCCN = "QA76.76.O63T888 1997", bibdate = "Fri Apr 11 15:37:20 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sun BluePrints Program", URL = "http://www.sun.com/books/catalog/tuthill/index.html", acknowledgement = ack-nhfb, } @Article{Vogt:1997:VUS, author = "Carsten Vogt", title = "Visualizing {UNIX} synchronization operations", journal = j-OPER-SYS-REV, volume = "31", number = "3", pages = "52--64", month = jul, year = "1997", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:47 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Volkerding:1997:LCI, author = "Patrick Volkerding and Kevin Reichard and Eric F. Johnson", title = "{Linux} Configuration and Installation", publisher = pub-MIS, address = pub-MIS:adr, edition = "Third", pages = "xxix + 512", year = "1997", ISBN = "1-55828-566-0", ISBN-13 = "978-1-55828-566-8", LCCN = "QA76.76.O63V64 1997", bibdate = "Tue Mar 09 16:57:02 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes two CD-ROMs.", price = "US\$39.95, CDN\$55.95", series = "The MIS:Press slackware series", URL = "http://smartbooks.com/bw708linuxconfg.htm; http://www.mispress.com/", acknowledgement = ack-nhfb, } @Book{Volkerding:1997:LIS, author = "Patrick Volkerding and Kevin Reichard and Eric Foster-Johnson", title = "The {Linux Internet} Server", publisher = pub-MIS, address = pub-MIS:adr, pages = "xxi + 530", year = "1997", ISBN = "1-55828-545-8", ISBN-13 = "978-1-55828-545-3", LCCN = "QA76.9.C55R444 1997", bibdate = "Mon Oct 13 09:57:14 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", price = "US\$39.95, CDN\$55.95", series = "The MIS:Press slackware series", URL = "http://www.mispress.com/", acknowledgement = ack-nhfb, } @Book{Volkerding:1997:LP, author = "Patrick Volkerding and Kevin Reichard and Eric Foster-Johnson", title = "{Linux} Programming", publisher = pub-MIS, address = pub-MIS:adr, pages = "xxi + 374", year = "1997", ISBN = "1-55828-507-5", ISBN-13 = "978-1-55828-507-1", LCCN = "QA76.76.O63V65 1997", bibdate = "Mon Oct 13 09:58:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", price = "US\$39.95, CDN\$55.95", series = "The MIS:Press slackware series", URL = "http://www.mispress.com/", acknowledgement = ack-nhfb, } @Book{Volkerding:1997:LPE, author = "Patrick Volkerding and Kevin Reichard and Eric Foster-Johnson", title = "{Linux} in Plain {English}", publisher = pub-MIS, address = pub-MIS:adr, pages = "iv + 571", year = "1997", ISBN = "1-55828-542-3", ISBN-13 = "978-1-55828-542-2", LCCN = "QA76.76.O63V645 1997", bibdate = "Mon Oct 13 09:58:03 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$14.95, CDN\$20.95", series = "The MIS:Press slackware series", URL = "http://www.mispress.com/", acknowledgement = ack-nhfb, } @Article{Volkman:1997:CCSc, author = "Victor R. Volkman", title = "{C/C++} Sources: {UNIX} and Database Resources on the {Internet}", journal = j-CCCUJ, volume = "15", number = "3", pages = "89--??", month = mar, year = "1997", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Thu Jun 26 14:46:19 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Wall:1997:PRK, author = "Larry Wall and Clay Irving and Nate Patwardhan and Ellen Siever and Brian Jepson", title = "The {Perl} Resource Kit --- {UNIX} Edition", publisher = pub-ORA, address = pub-ORA:adr, pages = "1700 (est.)", year = "1997", ISBN = "1-56592-370-7", ISBN-13 = "978-1-56592-370-6", LCCN = "????", bibdate = "Thu Feb 18 09:44:21 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$149.95", URL = "http://www.ora.com/catalog/prkunix/; http://www.oreilly.com/catalog/prkunix", acknowledgement = ack-nhfb, } @Article{Walli:1997:WTT, author = "Stephen Walli", title = "{Win32} {Tcl\slash Tk} {GUIs} on {UNIX} Apps on {Windows NT}", journal = j-LOGIN, volume = "22", number = "6", pages = "??--??", month = nov, year = "1997", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:25 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/contents/contents.nov97.html", URL = "http://www.usenix.org/publications/login/1997-11/guis.html", acknowledgement = ack-nhfb, remark = "Special Issue on Windows NT.", } @MastersThesis{Weidner:1997:GPE, author = "Jeff Robert Weidner", title = "A general purpose extended attribute service as a file system layer: with an example client that implements {POSIX.6} access control lists", type = "M.S.", number = "970024", school = "UCLA Computer Science Dept.", address = "Los Angeles, CA", pages = "32", year = "1997", LCCN = "QA 75.5 R46 no 970024 1997", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "CSD", acknowledgement = ack-nhfb, } @Book{Welch:1997:PPT, author = "Brent B. Welch", title = "Practical programming in {Tcl} and {Tk}", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Second", pages = "xlvi + 630", year = "1997", ISBN = "0-13-616830-2", ISBN-13 = "978-0-13-616830-0", LCCN = "QA76.73.T44W45", bibdate = "Tue Jan 20 12:56:09 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.phptr.com/ptrbooks/ptr_0136168302.html", acknowledgement = ack-nhfb, } @TechReport{Wheeler:1997:UBM, author = "David Wheeler", title = "Upgrading {\tt bred} with multiple tables", type = "Report", institution = "The Computer Laboratory, Cambridge University", address = "Cambridge, UK", month = apr, year = "1997", bibdate = "Tue Dec 06 08:44:00 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "This is the third of four key papers behind the {\tt bzip2} compression tools. The others are \cite{Hirschberg:1990:EDP,Burrows:1994:BSL,Sedgewick:1997:FAS}.", URL = "tp://ftp.cl.cam.ac.uk/users/djw3/bred3.ps", acknowledgement = ack-nhfb, } @Article{Wiil:1997:HHS, author = "Uffe K. Wiil and John J. Leggett", title = "{Hyperform}: {A} Hypermedia System Development Environment", journal = j-TOIS, volume = "15", number = "1", pages = "1--31", month = jan, year = "1997", CODEN = "ATISET", ISSN = "1046-8188", ISSN-L = "0734-2047", bibdate = "Sat Jan 16 19:04:41 MST 1999", bibsource = "Compendex database; http://www.acm.org/pubs/tois/toc.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80/tois/abstracts/wiil.html", abstract = "Development of hypermedia systems is a complex matter. The current trend toward open, extensible, and distributed multiuser hypermedia systems adds additional complexity to the development process. As a means of reducing this complexity, there has been an increasing interest in hyperbase management systems that allow hypermedia system developers to abstract from the intricacies and complexity of the hyperbase layer and fully attend to application and user interface issues. Design, development, and deployment experiences of a dynamic, open, and distributed multiuser hypermedia system development environment called Hyperform is presented. Hyperform is based on the concepts of extensibility, tailorability, and rapid prototyping of hypermedia system services. Open, extensible hyperbase management systems permit hypermedia system developers to tailor hypermedia functionality for specific applications and to serve as a platform for research. The Hyperform development environment is comprised of multiple instances of four component types: (1) a hyperbase management system server, (2) a tool integrator, (3) editors, and (4) participating tools. Hyperform has been deployed in Unix environments, and experiments have shown that Hyperform greatly reduces the effort required to provide customized hyperbase management system support for distributed multiuser hypermedia systems.", acknowledgement = ack-nhfb, affiliation = "Aalborg Univ", affiliationaddress = "Den", classification = "722.4; 723.1; 723.2; 723.3; 723.5; 903.3", journalabr = "ACM Trans Inf Syst", keywords = "Advanced hypermedia system architecture; Computational complexity; Computer architecture; Data structures; Database systems; Extensible hyperbase management system; Hyperform; Information retrieval systems; Object oriented extension language; Object oriented programming; Rapid prototyping; System theory", } @Book{Woo:1997:OPG, author = "Mason Woo and Jackie Neider and Tom Davis and {OpenGL Architecture Review Board}", title = "{OpenGL} programming guide: the official guide to learning {OpenGL}, version 1.1", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xxxviii + 650", year = "1997", ISBN = "0-201-46138-2", ISBN-13 = "978-0-201-46138-1", LCCN = "T385 .N435 1997", bibdate = "Sat Mar 28 08:11:22 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Xiao:1997:UTA, author = "Hong Xiao", title = "Using Templates Across {UNIX} Platforms", journal = j-CCCUJ, volume = "15", number = "3", pages = "33--??", month = mar, year = "1997", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Sat May 17 18:16:21 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Alexandrov:1998:UPG, author = "Albert D. Alexandrov and Maximilian Ibel and Klaus E. Schauser and Chris J. Scheiman", title = "{Ufo}: {A} Personal Global File System Based on User-Level Extensions to the Operating System", journal = j-TOCS, volume = "16", number = "3", pages = "207--233", month = aug, year = "1998", CODEN = "ACSYEC", ISSN = "0734-2071", bibdate = "Wed Jan 13 18:36:53 MST 1999", bibsource = "http://www.acm.org/pubs/contents/journals/tocs/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80/pubs/citations/journals/tocs/1998-16-3/p207-alexandrov/", abstract = "In this article we show how to extend a wide range of functionality of standard operation systems completely at the user level. Our approach works by intercepting selected system calls at the user level, using tracing facilities such as the /proc file system provided by many Unix operating systems. The behavior of some intercepted system calls is then modified to implement new functionality. This approach does not require any relinking or recompilation of existing applications. In fact, the extensions can even be dynamically ``installed'' into already running processes. The extensions work completely at the user level and install without system administrator assistance. Individual users can choose what extensions to run, in effect creating a personalized operating system view for themselves. We used this approach to implement a global file system, called Ufo, which allows users to treat remote files exactly as if they were local. Currently, Ufo supports file access through the FTP and HTTP protocols and allows new protocols to be plugged in. While several other projects have implemented global file system abstractions, they all require either changes to the operating system or modifications to standard libraries. The article gives a detailed performance analysis of our approach to extending the OS and establishes that Ufo introduces acceptable overhead for common applications even though intercepting individual system calls incurs a high cost.", acknowledgement = ack-nhfb, keywords = "performance", subject = "{\bf D.4.3} Software, OPERATING SYSTEMS, File Systems Management. {\bf D.4.3} Software, OPERATING SYSTEMS, File Systems Management, Distributed file systems. {\bf D.4.3} Software, OPERATING SYSTEMS, File Systems Management, Access methods.", } @Book{Alomari:1998:OUP, author = "Ahmed Alomari", title = "{Oracle8} and {UNIX} performance tuning", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxiii + 315", year = "1998", ISBN = "0-13-907676-X", ISBN-13 = "978-0-13-907676-3", LCCN = "QA76.9.D3 A519 1998", bibdate = "Tue Mar 09 14:29:21 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.95", URL = "http://www.prenhall.com/allbooks/ptr_013907676x.html", acknowledgement = ack-nhfb, } @Book{Anonymous:1998:FFB, author = "Anonymous", title = "{FreeBSD 2.2.6}: a full {4.4 BSD lite} based 32-bit operating system", publisher = "Walnut Creek CDROM", address = "Walnut Creek, CA, USA", year = "1998", ISBN = "1-57176-079-2", ISBN-13 = "978-1-57176-079-1", LCCN = "QA76.76.O63", bibdate = "Tue Sep 17 07:01:34 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes four CD-ROMs.", acknowledgement = ack-nhfb, } @Article{Anonymous:1998:LOS, author = "Anonymous", title = "The {Linux} Operating System", journal = j-IEEE-SOFTWARE, volume = "15", number = "5", pages = "17--17", month = sep # "\slash " # oct, year = "1998", CODEN = "IESOEG", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Fri Oct 30 06:18:38 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://dlib.computer.org/so/books/so1998/pdf/s5017.pdf", acknowledgement = ack-nhfb, } @Article{Anonymous:1998:NTS, author = "Anonymous", title = "New Tools: Software Development: {Uniscape}'s Internationalization Library; {Global Technologies}' {Unix-to-NT} Solution; {KAI}'s Multithreaded {Java} Debugging Tool; {Price Systems}' Parametric Forecasting Tool", journal = j-COMPUTER, volume = "31", number = "6", pages = "98, 102", month = jun, year = "1998", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Thu Jun 4 08:22:02 MDT 1998", bibsource = "http://computer.org/computer/co1998/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://dlib.computer.org/co/books/co1998/pdf/r6098.pdf", acknowledgement = ack-nhfb, } @Book{Anonymous:1998:UCB, author = "Anonymous", title = "The {UNIX CD} bookshelf: 6 bestselling books on {CD-ROM}", publisher = pub-ORA, address = pub-ORA:adr, pages = "????", year = "1998", ISBN = "1-56592-001-5", ISBN-13 = "978-1-56592-001-9", LCCN = "QA76.76.O63 U5453 1992", bibdate = "Mon May 06 05:56:41 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes: {\em UNIX in a nutshell: a desktop quick reference for System V Release 4 and Solaris 2.0}, {\em UNIX power tools}, {\em Sed \& awk}, {\em Learning the Korn shell}, {\em Learning Vi}, and {\em Learning the UNIX operating system}", acknowledgement = ack-nhfb, } @Book{Asente:1998:XWS, author = "Paul J. Asente and Donna Converse and Ralph R. Swick", title = "{X Window System} toolkit: the complete programmer's guide and specification: {X} version 11, releases 6 and 6.1", publisher = pub-DP, address = pub-DP:adr, edition = "Second", pages = "xxxii + 1131", year = "1998", ISBN = "1-55558-178-1", ISBN-13 = "978-1-55558-178-7", LCCN = "QA76.76.W56A74 1998", bibdate = "Tue May 25 06:48:58 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Bambara:1998:MUS, author = "Richard Bambara", title = "{MVS} and {UNIX}: a survival handbook for users, developers, and managers in a multiplatform environment", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xxii + 521", year = "1998", ISBN = "0-07-006663-9", ISBN-13 = "978-0-07-006663-2", LCCN = "QA76.76.O63B362 1998", bibdate = "Tue Mar 09 14:33:21 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$65.00", acknowledgement = ack-nhfb, } @Article{Beardsley:1998:BRU, author = "Reginald Beardsley", title = "Book Review: {{\em UNIX Power Tools}, Second Edition}", journal = j-LOGIN, volume = "23", number = "1", pages = "??--??", month = feb, year = "1998", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:29 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/contents/contents.feb98.html", acknowledgement = ack-nhfb, } @Book{Beck:1998:LKI, author = "Michael Beck and others", title = "{Linux} kernel internals", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xvi + 480", year = "1998", ISBN = "0-201-33143-8", ISBN-13 = "978-0-201-33143-1", LCCN = "QA76.76.O63L54813 1998", bibdate = "Fri Dec 22 06:40:57 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM. Translation of the German edition {\em Linux-Kernel-Programmierung}.", acknowledgement = ack-nhfb, } @Book{Blacharski:1998:NSM, author = "Dan Blacharski", title = "Network security in a mixed environment", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xxiv + 408", year = "1998", ISBN = "0-7645-3152-2", ISBN-13 = "978-0-7645-3152-1", LCCN = "TK5105.59 .B55 1998", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Covers Windows NT, UNIX, and NetWare Networks.", acknowledgement = ack-nhfb, keywords = "computer networks -- security measures; computer security", } @Book{Blair:1998:SIU, author = "John D. Blair and {The Samba Team}", title = "{Samba}: Integrating {UNIX} and {Windows}", publisher = pub-SSC, address = pub-SSC:adr, pages = "xviii + 298", month = jun, year = "1998", ISBN = "1-57831-006-7", ISBN-13 = "978-1-57831-006-7", LCCN = "????", bibdate = "Wed Jun 17 06:25:11 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "From the publisher: ``Includes CD-ROM containing version 1.9.18 of the Samba server, a library of useful tools and scripts, the Samba mailing list archives, and all examples discussed in the book.''", price = "US\$29.95", URL = "http://www.clbooks.com/sqlnut/SP/search/gtsumt?source=&isbn=1578310067; http://www.ssc.com/ssc/samba/", acknowledgement = ack-nhfb, } @Book{Bourne:1998:UOU, author = "Philip E. Bourne and Richard Holstein and Joseph McMullen", title = "{UNIX} for {OpenVMS} users", publisher = pub-DP, address = pub-DP:adr, edition = "Second", pages = "xix + 428", year = "1998", ISBN = "1-55558-155-2 (paperback)", ISBN-13 = "978-1-55558-155-8 (paperback)", LCCN = "QA76.76.O63 B669 1998", bibdate = "Mon Jul 3 19:09:24 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/description/els033/98035518.html; http://www.loc.gov/catdir/toc/els032/98035518.html", acknowledgement = ack-nhfb, subject = "UNIX (Computer file); Operating systems (Computers); OpenVMS", } @Book{Braun:1998:BMF, author = "J{\"o}rg Braun", title = "{BSD mit Methode: [die freien Berkeley-Software-Distributionen]}", publisher = "C\&L, Computer- und Literaturverlag", address = "Vaterstetten, Germany", pages = "856 (est.)", year = "1998", ISBN = "3-932311-31-0", ISBN-13 = "978-3-932311-31-4", LCCN = "????", bibdate = "Tue Sep 17 06:57:24 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, language = "German", } @Book{Brown:1998:BPU, author = "Martin C. Brown", title = "{BeOS}: porting {UNIX} applications", publisher = pub-MORGAN-KAUFMANN, address = pub-MORGAN-KAUFMANN:adr, pages = "xii + 484", year = "1998", ISBN = "1-55860-532-0 (paperback)", ISBN-13 = "978-1-55860-532-9 (paperback)", LCCN = "QA76.76.O63 B756 1998", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "application software porting; BeOS (computer file); operating systems (computers); UNIX (computer file)", } @Book{Cameron:1998:GEP, author = "Debra Cameron", title = "{GNU Emacs} Pocket Reference", publisher = pub-ORA, address = pub-ORA:adr, pages = "iii + 58", year = "1998", ISBN = "1-56592-496-7", ISBN-13 = "978-1-56592-496-3", LCCN = "QA76.76.T49 C348 1998", bibdate = "Thu Feb 18 06:52:10 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$6.95", URL = "http://www.oreilly.com/catalog/gnupr", acknowledgement = ack-nhfb, keywords = "GNU Emacs; text editors (computer programs); UNIX (computer file)", } @Book{Card:1998:LKB, author = "Remy Card and Eric Dumas and Franck Mevel", title = "The {Linux} Kernel book", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxx + 518", year = "1998", ISBN = "0-471-98141-9", ISBN-13 = "978-0-471-98141-1", LCCN = "QA76.76.O63 C374 1998", bibdate = "Tue Mar 09 14:23:43 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Translated by Chris Skrimshire.", price = "US\$44.99", acknowledgement = ack-nhfb, } @Article{Christenson:1998:BRCb, author = "Nick Christenson", title = "Book Review: {{\em Configuration and Capacity Planning for Solaris Servers}}", journal = j-LOGIN, volume = "23", number = "4", pages = "??--??", month = jun, year = "1998", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:33 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/contents/contents.jun98.html", URL = "http://www.usenix.org/publications/login/1998-6/wong.html", acknowledgement = ack-nhfb, } @Book{Chukran:1998:AAP, author = "Rudy Chukran", title = "Accelerating {AIX}: Performance Tuning for Programmers and System Administrators", publisher = pub-AW, address = pub-AW:adr, pages = "xix + 217", year = "1998", ISBN = "0-201-63382-5", ISBN-13 = "978-0-201-63382-5", LCCN = "QA76.76.O63C495 1998", bibdate = "Wed May 27 07:09:50 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.95", acknowledgement = ack-nhfb, } @Article{Clinton:1998:LBM, author = "Terry Clinton and Tom Parsons and Capers Jones and William Adams and Garth Klatt and Eric Haines and Ted Lewis and Philip Machanik and Stig Nilsson and Karl Reed and Howard R. Stearns and Neville Holmes and John Brownie", title = "Letters: The Benefits of Model-Based Integration; Documentation is Not Green; Picking on the Overdog; Buggy, Slow Windoze; There's No Such Thing as Free Software; {Linus}' Law of Open Source Development; Bug-Free Development? No Way; Governmental {IT} Planning and the {Computer Society}; Text Encoding Questions; Encoding the World's Languages", journal = j-COMPUTER, volume = "31", number = "11", pages = "4, 5--7, 11", month = nov, year = "1998", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Mon Nov 09 06:08:41 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Two letters discuss Unicode and Multicode \cite{Mudawwar:1997:MTM}.", URL = "http://dlib.computer.org/co/books/co1998/pdf/ry004.pdf", acknowledgement = ack-nhfb, } @Book{Cockcroft:1998:SPT, author = "Adrian Cockcroft", title = "{Sun} Performance and Tuning: {SPARC} and {Solaris}", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Second", pages = "xxxvi + 587", year = "1998", ISBN = "0-13-095249-4", ISBN-13 = "978-0-13-095249-3", LCCN = "QA76.8.S86C63 1998", bibdate = "Fri Jan 22 09:54:46 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.fdds.com/books/catalog/books_comingsoon.html; http://www.sun.com/books/catalog/Cockcroft/index.html", acknowledgement = ack-nhfb, } @Article{Cook:1998:LHF, author = "Anthony L. Cook", title = "{Linux}-Hosted Frame Relay", journal = j-SYS-ADMIN, volume = "7", number = "1", pages = "8, 10, 14, 16, 18--19", month = jan, year = "1998", CODEN = "SYADE7", ISSN = "1061-2688", bibdate = "Mon Dec 15 11:22:51 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.samag.com/", abstract = "The author describes how to install and configure a Linux-based WAN router.", acknowledgement = ack-nhfb, } @Article{Crowe:1998:PTC, author = "William L. Crowe", title = "A Pseudo-Terminal Class for Unix", journal = j-CCCUJ, volume = "16", number = "3", pages = "??--??", month = mar, year = "1998", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:14 MDT 2002", bibsource = "http://www.cuj.com/articles/1998/9803/9803toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "One way to talk to old software is to type at it, preferably from another program, and maybe over a network.", acknowledgement = ack-nhfb, } @Article{Donkers:1998:ULO, author = "Arthur Donkers", title = "Using {Linux} in an Office Environment", journal = j-SYS-ADMIN, volume = "7", number = "1", pages = "45--46, 48, 50, 51", month = jan, year = "1998", CODEN = "SYADE7", ISSN = "1061-2688", bibdate = "Mon Dec 15 11:22:51 MST 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.samag.com/", abstract = "Donkers describes the setup and maintenance requirements of a corporate Linux system.", acknowledgement = ack-nhfb, } @Article{Edwards:1998:ITC, author = "John Edwards", title = "Industry Trends: The Changing Face of Freeware", journal = j-COMPUTER, volume = "31", number = "10", pages = "11--13", month = oct, year = "1998", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Tue Oct 6 18:50:08 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://dlib.computer.org/co/books/co1998/pdf/rx011.pdf", acknowledgement = ack-nhfb, annote = "Includes discussion of the Free Software Foundation, the GNU Project, GNU/Linux, and Apache.", } @Book{Freeze:1998:SPR, author = "Wayne S. Freeze", title = "The {SQL} programmer's reference: {Windows 95\slash NT} and {UNIX}", publisher = pub-VENTANA, address = pub-VENTANA:adr, pages = "liv + 298", year = "1998", ISBN = "1-56604-760-9", ISBN-13 = "978-1-56604-760-9", LCCN = "QA76.73.S67 F74 1998", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Microsoft Windows (computer file); SQL (computer program language); UNIX (computer file)", } @Article{Gertner:1998:TOD, author = "Abigail S. Gertner and Bonnie L. Webber", title = "{TraumaTIQ}: Online decision support for trauma management", journal = j-IEEE-EXPERT, volume = "13", number = "1", pages = "32--39", month = jan # "--" # feb, year = "1998", CODEN = "IEEXE7", ISSN = "0885-9000", bibdate = "Tue Sep 28 07:51:05 MDT 1999", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, affiliation = "Univ of Pittsburgh", affiliationaddress = "Pittsburgh, USA", classification = "722.2; 722.4; 723; 723.1.1; 723.4.1; 912.2", journalabr = "IEEE Expert", keywords = "Artificial intelligence; Common Lisp; Decision support systems; Expert systems; Health care; Language generator; Lisp (programming language); Medical applications; Online systems; Patient treatment; Plan evaluator; Plan recognizer; Real time systems; Trauma management; UNIX; User interfaces", } @Book{Gilly:1998:UND, author = "Daniel Gilly and others", title = "{UNIX} in a Nutshell", publisher = pub-ORA, address = pub-ORA:adr, edition = "Deluxe", pages = "444 (est.)", month = jul, year = "1998", ISBN = "1-56592-406-1", ISBN-13 = "978-1-56592-406-2", LCCN = "????", bibdate = "Sat May 02 14:17:36 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$69.95", URL = "http://www.oreilly.com/catalog/unixdeluxe", acknowledgement = ack-nhfb, } @Book{Gray:1998:ICU, author = "John Shapeley Gray", title = "Interprocess Communications in {UNIX}: The Nooks and Crannies", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Second", pages = "xi + 462", year = "1998", ISBN = "0-13-899592-3", ISBN-13 = "978-0-13-899592-8", LCCN = "QA76.76.O63G729 1998", bibdate = "Fri Oct 30 20:33:05 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$45.00", URL = "http://www.phptr.com/ptrbooks/ptr_0138995923.html", acknowledgement = ack-nhfb, } @Article{Gray:1998:LSC, author = "Bob Gray", title = "Loading Source Code {UNIX} on the {PC}", journal = j-LOGIN, volume = "23", number = "5", pages = "??--??", month = aug, year = "1998", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:37 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/contents/contents.aug98.html", URL = "http://www.usenix.org/publications/login/1998-8/source.html", acknowledgement = ack-nhfb, } @Article{Gray:1998:PHS, author = "Bob Gray", title = "{PC} Hardware for Source Code {UNIX}", journal = j-LOGIN, volume = "23", number = "4", month = jun, year = "1998", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:35 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/contents/contents.jun98.html", URL = "http://www.usenix.org/publications/login/1998-6/source.html", acknowledgement = ack-nhfb, } @Article{Gray:1998:SCUa, author = "Robert Gray", title = "Source Code {UNIX} for {PCs}", journal = j-LOGIN, volume = "23", number = "2", pages = "??--??", month = apr, year = "1998", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:31 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/contents/contents.apr98.html", URL = "http://www.usenix.org/publications/login/1998-4/source.html", acknowledgement = ack-nhfb, } @Article{Gray:1998:SCUb, author = "Bob Gray", title = "Source Code {UNIX} on the {PC}", journal = j-LOGIN, volume = "23", number = "6", pages = "??--??", month = oct, year = "1998", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:39 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/contents/contents.oct98.html", URL = "http://www.usenix.org/publications/login/1998-10/sourcecode.html", acknowledgement = ack-nhfb, } @Article{Gray:1998:SCUc, author = "Bob Gray", title = "Source Code {UNIX}: Help a Friend Get Online, Cheap", journal = j-LOGIN, volume = "23", number = "7", pages = "??--??", month = dec, year = "1998", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:41 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/contents/contents.dec98.html", URL = "http://www.usenix.org/publications/login/1998-12/sourcecode.html", acknowledgement = ack-nhfb, } @Article{Hamlin:1998:IAA, author = "J. H. Hamlin and W. D. Potter", title = "An Intelligent Agent To Aid in {Unix} System Administration", journal = j-LECT-NOTES-COMP-SCI, volume = "1416", pages = "252--260", year = "1998", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", bibdate = "Wed Sep 15 17:59:26 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/lncs1998a.bib; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "AIE; applied artificial; artificial intelligence; expert systems; IEA; intelligence", } @Book{Harrison:1998:ETT, author = "Mark Harrison and Michael McLennan", title = "Effective {Tcl\slash Tk} programming: writing better programs with {Tcl} and {Tk}", publisher = pub-AW, address = pub-AW:adr, pages = "xv + 405", year = "1998", ISBN = "0-201-63474-0", ISBN-13 = "978-0-201-63474-7", LCCN = "QA76.73.T44H37 1998", bibdate = "Fri Dec 19 10:57:35 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$38.50", acknowledgement = ack-nhfb, } @Book{Heath:1998:NUP, author = "Steve Heath", title = "{Newnes UNIX} pocket book", publisher = "Newnes", address = "Boston, MA, USA", edition = "Third", pages = "x + 340", year = "1998", ISBN = "0-7506-4108-8", ISBN-13 = "978-0-7506-4108-1", LCCN = "QA76.76.O63 H43 1998", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX System V (computer file)", } @Book{Horvath:1998:UME, author = "David B. Horvath", title = "{Unix} for the mainframer: the essential reference for commands, conversions, and {TCP\slash IP}", publisher = pub-PH, address = pub-PH:adr, pages = "xxi + 392", year = "1998", ISBN = "0-13-632837-7 (paperback)", ISBN-13 = "978-0-13-632837-7 (paperback)", LCCN = "QA76.76.O63 H6744 1998", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "IBM computers -- programming; operating systems (computers); TCP/IP (computer network protocol); UNIX (computer file)", } @Book{Hughes:1998:LDQ, author = "Phil Hughes", title = "{Linux} for dummies quick reference", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, edition = "Second", pages = "xvi + 219", year = "1998", ISBN = "0-7645-0422-3 (paperback)", ISBN-13 = "978-0-7645-0422-8 (paperback)", LCCN = "QA76.76.O63 H844 1998", bibdate = "Thu Jun 3 09:50:27 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "For dummies", acknowledgement = ack-nhfb, keywords = "Linux; Operating systems (Computers)", } @Article{Jeffery:1998:LAP, author = "Clinton Jeffery and Wenyi Zhou and Kevin Templer and Michael Brazell", title = "A Lightweight Architecture for Program Execution Monitoring", journal = j-SIGPLAN, volume = "33", number = "7", pages = "67--74", month = jul, year = "1998", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Sun Dec 14 09:17:49 MST 2003", bibsource = "Compendex database; http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "The Alamo monitor architecture significantly reduces the development cost of writing program execution monitors such as special-purpose profilers, bug-detectors, and visualizations. The design has been realized by monitor frameworks for two very different programming language implementations. Monitor performance under Alamo is quite attractive when the available static and dynamic means of reducing the number of reported events are employed. However, Alamo architecture has no support for real-time or shared-memory multiprocessor-based parallel applications.", acknowledgement = ack-nhfb, affiliation = "Univ of Texas at San Antonio", affiliationaddress = "San Antonio, TX, USA", classification = "723; 723.1; 723.1.1; 723.5", conference = "Proceedings of the 1998 ACM SIGPLAN\slash SIGSOFT Workshop on Program Analysis for Software Tools and Engineering", journalabr = "ACM SIGPLAN SIGSOFT Workshop Program Anal Software Tools Eng", keywords = "Alamo monitor architecture; C (programming language); Computer aided software engineering; Computer architecture; Computer software selection and evaluation; Program profiling; UNIX", meetingaddress = "Montreal, Can", meetingdate = "Jun 16 1998", meetingdate2 = "06/16/98", sponsor = "ACM", } @Book{Johnson:1998:LAD, author = "Michael K. Johnson and Erik W. Troan", title = "{Linux} Application Development", publisher = pub-AW, address = pub-AW:adr, pages = "576", year = "1998", ISBN = "0-201-30821-5", ISBN-13 = "978-0-201-30821-1", LCCN = "QA76.76.O63J635 1998", bibdate = "Wed May 27 07:07:48 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$45.95", acknowledgement = ack-nhfb, } @Book{Kaluzny:1998:SUM, author = "Stephen P. Kaluzny and Silvia C. Vega and Tamre P. Cardoso and Alice A. Shelly", title = "{S+SpatialStats}: User's manual for {Windows} and {UNIX}", publisher = pub-SV, address = pub-SV:adr, pages = "xvi + 327", year = "1998", ISBN = "0-387-98226-4", ISBN-13 = "978-0-387-98226-7", LCCN = "QA278.2 .S18 1998", bibdate = "Tue Aug 05 15:35:10 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Kern:1998:BNE, author = "Harris Kern and Randy Johnson and Stuart Galup and Dennis Horgan and Mark Cappel", title = "Building the New Enterprise: People, Processes, and Technology", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xvi + 382", year = "1998", ISBN = "0-13-079671-9", ISBN-13 = "978-0-13-079671-4", LCCN = "HD30.37.B843 1998", bibdate = "Fri Apr 11 15:11:17 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sun BluePrints Program", URL = "http://www.sun.com/books/catalog/Kern4/", acknowledgement = ack-nhfb, } @Book{Komarinski:1998:LSA, author = "Mark F. Komarinski and Cary Collett", title = "{Linux} System Administration Handbook", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "416", year = "1998", ISBN = "0-13-680596-5", ISBN-13 = "978-0-13-680596-0", LCCN = "QA76.76.O63 K6483 1998", bibdate = "Wed Jun 24 19:20:11 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", price = "US\$39.95", URL = "http://www.phptr.com/", acknowledgement = ack-nhfb, } @Book{Kuo:1998:SEU, author = "Peter Kuo", title = "Special edition using {Unix}", publisher = pub-QUE, address = pub-QUE:adr, edition = "Third", pages = "xvi + 816", year = "1998", ISBN = "0-7897-1747-6 (paperback)", ISBN-13 = "978-0-7897-1747-4 (paperback)", LCCN = "QA76.76.O63 K86 1998", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Article{Lawgon:1998:NBA, author = "George Lawgon", title = "News Briefs: Alliance Wants to Give Voice to the Net; {Intel} Pushes for {Unix} Standards; Groups Seek to End Browser Wars; Initiative Hopes to Drive Basic Chip Research; {HTML+TIME} Promises Better Multimedia; Keyword Browsing Promises Simple {Web} Access", journal = j-COMPUTER, volume = "31", number = "12", pages = "21--23", month = dec, year = "1998", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Wed Dec 2 14:13:05 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://dlib.computer.org/co/books/co1998/pdf/rz021.pdf", acknowledgement = ack-nhfb, } @Article{Levin:1998:RAS, author = "Stewart A. Levin", title = "Remark on {Algorithm 622}: a simple macroprocessor", journal = j-TOMS, volume = "24", number = "3", pages = "336--340", month = sep, year = "1998", CODEN = "ACMSCU", ISSN = "0098-3500 (print), 1557-7295 (electronic)", bibdate = "Tue Mar 09 10:17:52 1999", bibsource = "http://www.acm.org/pubs/contents/journals/toms/1998-24/; http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "See \cite{Rice:1984:ASM}.", URL = "http://doi.acm.org/10.1145/292395.292448; http://www.acm.org:80/pubs/citations/journals/toms/1998-24-3/p336-levin/", abstract = "A number of updates to the macroprocessor are described that bring the code into line with the Fortran 77 standard. This is followed by an outline of how the macroprocessor was used for the rapid porting of geophysical software from a 64-bit supercomputer environment to a number of different Unix workstations. Finally a number of deficiencies remaining in the macroprocessor are noted and workarounds suggested where possible.", acknowledgement = ack-nhfb, keywords = "algorithms", subject = "{\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, Macro and assembly languages. {\bf D.3.2} Software, PROGRAMMING LANGUAGES, Language Classifications, FORTRAN 77. {\bf D.3.4} Software, PROGRAMMING LANGUAGES, Processors, Preprocessors.", } @Book{Levine:1998:UD, author = "John Levine and Margaret Levine Young", title = "{UNIX} for Dummies", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, edition = "Fourth", pages = "xxviii + 376", year = "1998", ISBN = "0-7645-0419-3", ISBN-13 = "978-0-7645-0419-8", LCCN = "xxviii + 376", bibdate = "Sat Jan 10 09:23:32 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$21.99", acknowledgement = ack-nhfb, } @Book{Lewis:1998:MPP, author = "Bil Lewis and Daniel J. Berg", title = "Multithreaded programming with pthreads", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxx + 382", year = "1998", ISBN = "0-13-680729-1", ISBN-13 = "978-0-13-680729-2", LCCN = "QA76.76.T55 L49 1998", bibdate = "Fri Apr 11 16:00:05 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sun BluePrints Program", URL = "http://www.sun.com/books/catalog/lewis2/index.html", acknowledgement = ack-nhfb, } @Book{McCarthy:1998:ISS, author = "Linda McCarthy", title = "Intranet security: stories from the trenches", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxv + 260", year = "1998", ISBN = "0-13-894759-7", ISBN-13 = "978-0-13-894759-0", LCCN = "TK5105.59 .M33 1998", bibdate = "Fri Apr 11 15:50:58 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sun BluePrints Program", acknowledgement = ack-nhfb, } @Book{Millard:1998:EPU, author = "Steven P. Millard", title = "{EnvironmentalStats} for {S-PLUS}: user's manual for {Windows} and {UNIX}", publisher = pub-SV, address = pub-SV:adr, pages = "xii + 381", year = "1998", ISBN = "0-387-98486-0", ISBN-13 = "978-0-387-98486-5", LCCN = "GE45.S73 M55 1998", bibdate = "Tue Sep 22 08:25:09 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Environmental sciences -- Statistical methods -- Data processing; S-Plus", } @Book{Mohr:1998:LUR, author = "James Mohr", title = "{Linux} user's resource: developer's resource", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxxv + 795", year = "1998", ISBN = "0-13-842378-4", ISBN-13 = "978-0-13-842378-0", LCCN = "QA76.76.O63 M7453 1998", bibdate = "Thu Sep 10 10:43:19 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.prenhall.com/allbooks/ptr_0138423784.htm", acknowledgement = ack-nhfb, } @Article{Nadelson:1998:RTE, author = "Mark Nadelson", title = "Real-time Error Processing on a {Unix} Network", journal = j-CCCUJ, volume = "16", number = "3", pages = "??--??", month = mar, year = "1998", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:14 MDT 2002", bibsource = "http://www.cuj.com/articles/1998/9803/9803toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "A cry for help should not go unattended. The trick is to find the right communication channel over which to yell.", acknowledgement = ack-nhfb, } @Book{Newham:1998:LTB, author = "Cameron Newham and Bill Rosenblatt", title = "Learning the {\tt bash} Shell", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second (revised and updated)", pages = "xvi + 318", year = "1998", ISBN = "1-56592-347-2", ISBN-13 = "978-1-56592-347-8", LCCN = "QA76.76.O63N458 1998", bibdate = "Sat May 02 13:45:22 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", URL = "http://www.oreilly.com/catalog/bash2", acknowledgement = ack-nhfb, keywords = "UNIX (Computer file); UNIX shells; User interfaces (Computer systems)", } @Book{OReilly:1998:CWN, author = "{O'Reilly} and others", title = "The Complete {Windows NT} \& {UNIX} System Administration Pack", publisher = pub-ORA, address = pub-ORA:adr, pages = "?? + ??", year = "1998", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Sat Sep 11 09:42:51 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/", price = "US\$149.00", URL = "http://www.oreilly.com/catalog/hp12pack", acknowledgement = ack-nhfb, } @Article{Pavlidis:1998:UCX, author = "Theo Pavlidis and Kevin Hunter", title = "Using Color in the {X Window System} versus {Microsoft Windows}: Part 1", journal = j-IEEE-CGA, volume = "18", number = "6", pages = "64--73", month = nov # "\slash " # dec, year = "1998", CODEN = "ICGADZ", DOI = "http://dx.doi.org/10.1109/38.734981", ISSN = "0272-1716 (print), 1558-1756 (electronic)", ISSN-L = "0272-1716", bibdate = "Thu Oct 29 06:59:37 MST 1998", bibsource = "http://computer.org/cga/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://computer.org/cga/cg1998/g6064abs.htm; http://dlib.computer.org/cg/books/cg1998/pdf/g6064.pdf", acknowledgement = ack-nhfb, } @Book{Peek:1998:LUO, author = "Jerry D. Peek and Grace Todino and John Strang", title = "Learning the {UNIX} operating system", publisher = pub-ORA, address = pub-ORA:adr, edition = "Fourth", pages = "xi + 92", year = "1998", ISBN = "1-56592-390-1", ISBN-13 = "978-1-56592-390-4", LCCN = "QA76.76.O63 T62 1998", bibdate = "Mon Apr 18 14:54:41 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", note = "Additions and revisions by Jerry Peek.", price = "US\$10.95", series = "Nutshell handbook", URL = "http://www.oreilly.com/catalog/9781565923904; http://www.oreilly.com/catalog/lunix4", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", remark = "Todino's name appears first on the previous ed.", subject = "UNIX (Computer file); Operating systems (Computers)", xxauthor = "Grace Todino and Jerry D. Peek and John Strang", } @Book{Petersen:1998:LCR, author = "Richard Petersen", title = "{Linux}: The Complete Reference", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, edition = "Second", pages = "xxvi + 1059", year = "1998", ISBN = "0-07-882461-3", ISBN-13 = "978-0-07-882461-6", LCCN = "QA76.76.O63 P523 1998", bibdate = "Thu Feb 26 11:05:38 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.99", acknowledgement = ack-nhfb, } @Book{Petersen:1998:LPR, author = "Richard Petersen", title = "{Linux} programmer's reference", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, pages = "xiv + 303", year = "1998", ISBN = "0-07-882587-3", ISBN-13 = "978-0-07-882587-3", LCCN = "QA76.76.O63 P525 1998", bibdate = "Tue Mar 09 14:21:48 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$16.99", acknowledgement = ack-nhfb, } @Book{Petersen:1998:UCE, author = "Richard Petersen", title = "{UNIX} Clearly Explained", publisher = pub-AP-PROFESSIONAL, address = pub-AP-PROFESSIONAL:adr, pages = "xviii + 691", year = "1998", ISBN = "0-12-552130-8", ISBN-13 = "978-0-12-552130-7", LCCN = "QA76.76.O63P524 1999", bibdate = "Tue Mar 09 16:34:53 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.95", acknowledgement = ack-nhfb, } @Book{Poniatowski:1998:HUS, author = "Marty Poniatowski", title = "{HP-UX} System Administration Handbook and Toolkit", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxxii + 691", year = "1998", ISBN = "0-13-905571-1", ISBN-13 = "978-0-13-905571-3", LCCN = "QA76.76.O63P648 1998", bibdate = "Fri Sep 03 16:01:58 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.phptr.com/ptrbooks/ptr_0139055711.html", acknowledgement = ack-nhfb, } @Book{Rajagopal:1998:WNU, author = "Raj Rajagopal", title = "{Windows NT}, {UNIX}, {NetWare} migration and coexistence: a professional's guide", publisher = pub-CRC, address = pub-CRC:adr, pages = "249", year = "1998", ISBN = "0-8493-1669-3", ISBN-13 = "978-0-8493-1669-2", LCCN = "QA76.76.O63 R343 1998", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Microsoft Windows NT; Netware (computer file); UNIX (computer file)", } @Book{Raymond:1998:LU, editor = "Eric Raymond", title = "{Linux} Undercover: {Linux} Secrets from the {LDP}", publisher = pub-RED-HAT, address = pub-RED-HAT:adr, pages = "2018", year = "1998", ISBN = "1-888172-05-3", ISBN-13 = "978-1-888172-05-8", LCCN = "????", bibdate = "Thu Mar 04 17:49:20 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "UK\pounds34.99, US\$39.99", URL = "http://genesis.ukpost.com/undercover.html", acknowledgement = ack-nhfb, } @Book{Reichard:1998:UB, author = "Kevin Reichard", title = "{UNIX}: the basics", publisher = pub-MIS, address = pub-MIS:adr, edition = "Second", pages = "xiii + 273", year = "1998", ISBN = "1-55828-583-0", ISBN-13 = "978-1-55828-583-5", LCCN = "QA76.76.O63 R446 1998", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Article{Rossmeyer:1998:BIL, author = "Brian Rossmeyer", title = "Bookshelf: Intermediate Level {Linux} Guide", journal = j-IEEE-SOFTWARE, volume = "15", number = "4", pages = "90--90", month = jul # "\slash " # aug, year = "1998", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/MS.1998.687955", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Tue Jul 7 08:58:23 MDT 1998", bibsource = "http://computer.org/software/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://dlib.computer.org/so/books/so1998/pdf/s4087.pdf", acknowledgement = ack-nhfb, } @Book{Rubini:1998:LDD, author = "Alessandro Rubini", title = "{Linux} Device Drivers", publisher = pub-ORA, address = pub-ORA:adr, pages = "xviii + 421", year = "1998", ISBN = "1-56592-292-1", ISBN-13 = "978-1-56592-292-1", LCCN = "QA76.76.D49 R92 1998; QA87.76.O63 R82 1998", bibdate = "Mon Apr 18 14:53:27 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", price = "US\$29.95", series = "Nutshell handbook", URL = "http://www.ora.com/catalog/linuxdrive/; http://www.oreilly.com/catalog/9781565922921; http://www.oreilly.com/catalog/linuxdrive", acknowledgement = ack-nhfb, subject = "Linux device drivers (Computer programs)", } @Article{Sanders:1998:ELO, author = "James Sanders", title = "Edgewatch: {Linux}, Open Source, and Software's Future", journal = j-IEEE-SOFTWARE, volume = "15", number = "5", pages = "88--91", month = sep # "\slash " # oct, year = "1998", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/52.714831", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Fri Oct 30 06:18:38 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://dlib.computer.org/so/books/so1998/pdf/s5088.pdf", acknowledgement = ack-nhfb, } @Book{Schwartz:1998:MML, author = "Alan Schwartz", title = "Managing Mailing Lists: {Majordomo}, {LISTSERV}, {Listproc}, and {SmartList}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xiv + 282", month = mar, year = "1998", ISBN = "1-56592-259-X", ISBN-13 = "978-1-56592-259-4", LCCN = "ZA4480 .S39 1998", bibdate = "Tue Jun 30 07:05:45 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", URL = "http://www.oreilly.com/catalog/mailing; http://www.oreilly.com/catalog/mailing/noframes.html", acknowledgement = ack-nhfb, keywords = "Electronic discussion groups --- Management; Electronic mail systems --- Management", } @Book{Stevens:1998:UNP, author = "W. Richard Stevens", title = "{UNIX} Network Programming: Networking {APIs}: Sockets and {XTI}", volume = "1", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Second", pages = "xx + 1009", year = "1998", ISBN = "0-13-490012-X", ISBN-13 = "978-0-13-490012-4", LCCN = "QA76.76.O63S755 1998", bibdate = "Tue Dec 13 05:45:21 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$59.00", URL = "http://www.phptr.com/ptrbooks/ptr_013490012X.html", acknowledgement = ack-nhfb, } @Book{Taylor:1998:STY, author = "Dave Taylor and James C. {Armstrong, Jr.}", title = "{Sams} teach yourself {UNIX} in 24 hours", publisher = pub-SAMS, address = pub-SAMS:adr, edition = "Second", pages = "ix + 529", year = "1998", ISBN = "0-672-31480-0", ISBN-13 = "978-0-672-31480-3", LCCN = "QA76.76.O63 T3888 1998", bibdate = "Thu Oct 31 18:25:42 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Book{Todino:1998:LUO, author = "Grace Todino and Jerry D. Peek and John Strang", title = "Learning the {UNIX} operating system", publisher = pub-ORA, address = pub-ORA:adr, edition = "Fourth", pages = "xi + 92", year = "1998", ISBN = "1-56592-390-1", ISBN-13 = "978-1-56592-390-4", LCCN = "QA76.76.O63 T62 1998", bibdate = "Sat May 2 13:24:24 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Additions and revisions by Jerry Peek.", series = "Nutshell handbook", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Book{Vickery:1998:USP, author = "Christopher Vickery", title = "{UNIX} Shell Programmer's Interactive Workbook", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "496", year = "1998", ISBN = "0-13-020064-6", ISBN-13 = "978-0-13-020064-8", LCCN = "QA76.76.O63V44 1998", bibdate = "Wed Dec 02 17:33:37 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.phptr.com/bookseri/unix.html; http://www.phptr.com/ptrbooks/ptr_0130200646.html", price = "US\$34.99", acknowledgement = ack-nhfb, } @Book{Walker:1998:CSP, author = "Kathryn M. Walker and Linda Croswhite Cavanaugh", title = "Computer Security Policies and {SunScreen} Firewalls", publisher = pub-SUN, address = pub-SUN:adr, pages = "xviii + 121", year = "1998", ISBN = "0-13-096015-2", ISBN-13 = "978-0-13-096015-3", LCCN = "TK5105.59 .W35 1998", bibdate = "Fri Sep 03 08:03:54 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.phptr.com/ptrbooks/ptr_0130960152.html; http://www.sun.com/books/catalog/walker/index.html", price = "US\$32.00", acknowledgement = ack-nhfb, } @Book{Weitsch:1998:DUS, author = "John R. Weitsch", title = "Distributed {UNIX} System Administrator", publisher = pub-R-D-BOOKS, address = pub-R-D-BOOKS:adr, pages = "xiv + 317", year = "1998", ISBN = "0-87930-540-1", ISBN-13 = "978-0-87930-540-6", LCCN = "????", bibdate = "Wed Dec 02 17:24:06 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes floppy disk.", price = "US\$49.95", acknowledgement = ack-nhfb, } @Book{Welch:1998:CTT, author = "Brent Welch", title = "The Complete {Tcl\slash Tk} Training Course", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xlvi + 630", year = "1998", ISBN = "0-13-080756-7", ISBN-13 = "978-0-13-080756-4", LCCN = "QA76.73.T44 W45 1998", bibdate = "Sat Oct 31 09:20:31 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.phptr.com/ptrbooks/ptr_0130807567.html", acknowledgement = ack-nhfb, } @MastersThesis{Williams:1998:MLU, author = "James D. Williams", title = "A methodology for {Linux} as a user process based on {Solaris Minix} on the {SPARC} architecture", type = "Thesis ({M.S.})", school = "New Mexico State University", address = "as Cruces, NM 88003-8001, USA", pages = "xiii + 141", year = "1998", bibdate = "Wed Apr 12 06:09:29 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Williams:1998:WNU, author = "G. Robert Williams and Ellen Beck Gardner", title = "{Windows NT} and {UNIX}: administration, coexistence,integration, and migration", publisher = pub-AW, address = pub-AW:adr, pages = "784", year = "1998", ISBN = "0-201-18536-9", ISBN-13 = "978-0-201-18536-2", LCCN = "QA76.76.O63W5547 1998", bibdate = "Thu Feb 26 17:40:39 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.95", acknowledgement = ack-nhfb, } @Book{Wong:1998:CCP, author = "Brian L. Wong", title = "Configuration and capacity planning for {Solaris} servers", publisher = pub-SUN, address = pub-SUN:adr, pages = "vii + 428", year = "1998", ISBN = "0-13-349952-9", ISBN-13 = "978-0-13-349952-0", LCCN = "QA76.76.C69W66 1997", bibdate = "Thu Sep 10 10:59:22 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.prenhall.com/allbooks/ptr_0133499529.html; http://www.sun.com/books/catalog/wong/", acknowledgement = ack-nhfb, } @Book{Zimmer:1998:TTP, author = "J. Adrian Zimmer", title = "{Tcl\slash Tk} for Programmers, with Solved Exercises that Work with {Unix} and {Windows}", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "450", year = "1998", ISBN = "0-8186-8515-8", ISBN-13 = "978-0-8186-8515-6", LCCN = "QA76.73.T44Z56 1998", bibdate = "Wed Oct 07 07:36:13 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$45.00", acknowledgement = ack-nhfb, } @Book{Anderson:1999:KG, author = "Todd Anderson and Laurie Petrycki and Sarah Kearns", title = "{KDE} guide", publisher = pub-NEW-RIDERS, address = pub-NEW-RIDERS:adr, pages = "????", year = "1999", ISBN = "0-7357-0015-7 (??invalid ISBN??)", ISBN-13 = "978-0-7357-0015-4 (??invalid ISBN??)", LCCN = "????", bibdate = "Sat Oct 21 12:00:09 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Edited by Laurie Petrycki and Sarah Kearns.", acknowledgement = ack-nhfb, } @Book{Angel:1999:ICG, author = "Edward Angel", title = "Interactive computer graphics: a top-down approach with {OpenGL}", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xlii + 612", year = "1999", ISBN = "0-201-38597-X", ISBN-13 = "978-0-201-38597-7", LCCN = "T385 .A514 1999", bibdate = "Fri Sep 03 06:05:33 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Anonymous:1999:FLE, author = "Anonymous", title = "Focus: {Linux} --- Essay", journal = j-IEEE-SOFTWARE, volume = "16", number = "1", pages = "??--??", month = jan # "\slash " # feb, year = "1999", CODEN = "IESOEG", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Thu Apr 1 16:52:57 MST 1999", bibsource = "http://computer.org/software/so1999/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Anonymous:1999:FLN, author = "Anonymous", title = "Focus: {Linux} --- Nuts \& Bolts", journal = j-IEEE-SOFTWARE, volume = "16", number = "1", pages = "??--??", month = jan # "\slash " # feb, year = "1999", CODEN = "IESOEG", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Thu Apr 1 16:52:57 MST 1999", bibsource = "http://computer.org/software/so1999/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Anonymous:1999:FLT, author = "Anonymous", title = "Focus: {Linux} --- From the Trenches", journal = j-IEEE-SOFTWARE, volume = "16", number = "1", pages = "??--??", month = jan # "\slash " # feb, year = "1999", CODEN = "IESOEG", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Thu Apr 1 16:52:57 MST 1999", bibsource = "http://computer.org/software/so1999/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Artymiak:1999:STY, author = "Jacek Artymiak", title = "{Sams} teach yourself {Sed} and {Awk} in 24 hours", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "400 (est.)", year = "1999", ISBN = "0-672-31737-0", ISBN-13 = "978-0-672-31737-8", LCCN = "????", bibdate = "Fri Jul 01 14:44:54 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Bailey:1999:SCC, author = "Patrick Bailey", title = "A Signal Command and Control Class for Unix", journal = j-CCCUJ, volume = "17", number = "3", pages = "??--??", month = mar, year = "1999", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:19 MDT 2002", bibsource = "http://www.cuj.com/articles/1999/9903/9903toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Signals are a useful way to communicate under Unix, provided you have enough to go around.", acknowledgement = ack-nhfb, } @Book{Ball:1999:STY, author = "Bill Ball", title = "{Sams}' teach yourself {Linux} in 24 hours", publisher = pub-SAMS, address = pub-SAMS:adr, edition = "Second", pages = "xv + 574", year = "1999", ISBN = "0-672-31526-2", ISBN-13 = "978-0-672-31526-8", LCCN = "QA76.76.O63 B358 1999", bibdate = "Thu Jun 3 09:50:27 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Edited by Jeff Koch and Jane Brownlow.", acknowledgement = ack-nhfb, keywords = "Linux (Computer file)", } @Book{Bialaski:1999:SGW, author = "Tom Bialaski", title = "{Solaris} Guide for {Windows NT} Administrators", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xiv + 15--168", year = "1999", ISBN = "0-13-025854-7", ISBN-13 = "978-0-13-025854-0", LCCN = "QA76.76.O63B52 1999", bibdate = "Fri Apr 11 12:03:24 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sun.com/blueprints/", note = "Part No. 805-7622-10 June 1999, Revision A.", series = "Sun BluePrints Program", URL = "books/ssg.pdf; http://www.phptr.com/ptrbooks/ptr_0130258547.html; http://www.sun.com/books/catalog/bialaski/", abstract = "Just a few years ago, personal computers (PCs) were networked together in their own little islands using network services such as NetWare and LAN Manager to share printers and files. As these islands grew in size, administrators were appointed to take care of them. At the time, these administrators only needed to be concerned with the PC network protocols being used within their departments.\par With the introduction of Windows NT, a new class of PC servers began to emerge. Instead of just providing file and print services, other services such as email and database applications were provided on PC servers running the Windows NT operating system. PC servers were no longer separate islands and began making their way into the datacenter.\par Unix servers, on the other hand, grew up in the datacenter as many mainframe functions were offloaded to UNIX servers. These UNIX servers were administered by trained UNIX administrators who had little contact with PC server administrators.\par The arrival of PC servers in the datacenter heralded the arrival of the PC server administrators. Since maintaining two different system administration organizations is expensive, the trend in IT departments is to cross-train the staff. This may seem like a formidable task. However, with a little guidance, experienced PC server administrators can leverage what they know about Windows NT.\par Specifically, the Solaris Guide for Windows NT Administrators BluePrint covers: \begin{itemize} \item Understanding Solaris User Account Management \item Service and Task Management \item TCP/IP Administration \item File Sharing Administration \item Printer Administration \item Email Administration \item Web Services Administration \end{itemize}", acknowledgement = ack-nhfb, } @Book{Blommers:1999:AES, author = "John Blommers", title = "Architecting enterprise solutions with {UNIX} networking", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "352", year = "1999", ISBN = "0-13-792706-1", ISBN-13 = "978-0-13-792706-7", LCCN = "QA76.76.O63B595 1998", bibdate = "Mon Nov 30 10:51:27 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$44.99", URL = "http://www.phptr.com/ptrbooks/ptr_0137927061.html", acknowledgement = ack-nhfb, } @Article{Bokhari:1999:LDW, author = "Shahid H. Bokhari and Rafeequr Rehman", title = "{Linux} and the Developing World", journal = j-IEEE-SOFTWARE, volume = "16", number = "1", pages = "58--64", month = jan # "\slash " # feb, year = "1999", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/52.744570", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Thu Apr 1 16:52:57 MST 1999", bibsource = "http://computer.org/software/so1999/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://computer.org/software/so1999/s1058abs.htm; http://dlib.computer.org/so/books/so1999/pdf/s1058.pdf", acknowledgement = ack-nhfb, } @Article{Bollinger:1999:GEI, author = "Terry Bollinger and Peter H. Beckman", title = "{Guest Editors}' Introduction: {Linux} on the Move", journal = j-IEEE-SOFTWARE, volume = "16", number = "1", pages = "30--35", month = jan # "\slash " # feb, year = "1999", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/MS.1999.744564", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Thu Apr 1 16:52:57 MST 1999", bibsource = "http://computer.org/software/so1999/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://dlib.computer.org/so/books/so1999/pdf/s1030.pdf", acknowledgement = ack-nhfb, } @Article{Bollinger:1999:LPO, author = "Terry Bollinger", title = "{Linux} in Practice: An Overview of Applications", journal = j-IEEE-SOFTWARE, volume = "16", number = "1", pages = "72--79", month = jan # "\slash " # feb, year = "1999", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/52.744572", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Thu Apr 1 16:52:57 MST 1999", bibsource = "http://computer.org/software/so1999/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://computer.org/software/so1999/s1072abs.htm; http://dlib.computer.org/so/books/so1999/pdf/s1072.pdf", acknowledgement = ack-nhfb, } @Article{Brutch:1999:IUH, author = "Paul C. Brutch and Tasneem G. Brutch and Udo Pooch", title = "Indicators of {UNIX} Host Compromise", journal = j-LOGIN, volume = "24", number = "5s", pages = "??--??", month = sep, year = "1999", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:53 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/1999-9/index.html", note = "Special issue on intrusion detection.", URL = "http://www.usenix.org/publications/login/1999-9/features/compromise.html", acknowledgement = ack-nhfb, } @Book{Buyya:1999:HPC, editor = "Rajkumar Buyya", title = "High Performance Cluster Computing, Volume 1: Architecture and Systems", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "881", year = "1999", ISBN = "0-13-013784-7", ISBN-13 = "978-0-13-013784-5", LCCN = "QA76.88.H489 1999", bibdate = "Sun Jun 27 09:07:08 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.dgs.monash.edu.au/~rajkumar/cluster/index.html; http://www.phptr.com/ptrbooks/ptr_0130137847.html", acknowledgement = ack-nhfb, } @Book{Cannon:1999:SA, author = "Casey Cannon and Scott Trent and Carolyn Jones", title = "Simply {AIX 4.3}", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Second", pages = "368", year = "1999", ISBN = "0-13-021344-6", ISBN-13 = "978-0-13-021344-0", LCCN = "QA76.76.O63C3725 1999", bibdate = "Sun Jun 27 08:43:48 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.phptr.com/ptrbooks/ptr_0130213446.html", acknowledgement = ack-nhfb, } @Book{Carasik:1999:USS, author = "Anne H. Carasik", title = "{Unix} Secure Shell", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xxv + 339", year = "1999", ISBN = "0-07-134933-2 (paperback)", ISBN-13 = "978-0-07-134933-8 (paperback)", LCCN = "QA76.76.O63 C37294 1999", bibdate = "Mon Jan 8 06:35:48 MST 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "McGraw-Hill tools series", acknowledgement = ack-nhfb, subject = "UNIX (Computer file); UNIX shells; Data encryption (Computer science); Computer networks; Security measures", } @Book{Carter:1999:STY, author = "Gerald Carter and Richard Sharpe", title = "{Sams} Teach Yourself {Samba} in 24 Hours", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xv + 490", month = apr, year = "1999", ISBN = "0-672-31609-9", ISBN-13 = "978-0-672-31609-8", LCCN = "QA76.9.C55C36 1999", bibdate = "Mon Nov 22 16:07:38 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$24.99", acknowledgement = ack-nhfb, } @Book{Cheek:1999:DUS, author = "Matthew Cheek", title = "{Digital UNIX} system administrator's guide", publisher = pub-DP, address = pub-DP:adr, pages = "x + 402", year = "1999", ISBN = "1-55558-199-4", ISBN-13 = "978-1-55558-199-2", LCCN = "QA76.76.O63C4573 1999", bibdate = "Tue Mar 09 14:31:07 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.95", acknowledgement = ack-nhfb, } @Article{Cooke:1999:UBI, author = "Daniel Cooke and Joseph Urban and Scott Hamilton", title = "{Unix} and Beyond: An Interview with {Ken Thompson}", journal = j-COMPUTER, volume = "32", number = "5", pages = "58--64", month = may, year = "1999", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Thu May 6 06:17:23 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://dlib.computer.org/co/books/co1999/pdf/r5058.pdf; http://www.computer.org/computer/co1999/r5058abs.htm", acknowledgement = ack-nhfb, } @Book{Dalheimer:1999:PQW, author = "Matthias Kalle Dalheimer", title = "Programming with {Qt}: Writing Portable {GUI} applications on {UNIX} and {Win32}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xix + 361", year = "1999", ISBN = "1-56592-588-2", ISBN-13 = "978-1-56592-588-5", LCCN = "QA76.9.U83 D355 1999", bibdate = "Fri Sep 03 08:04:11 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$32.95", URL = "http://www.oreilly.com/catalog/prowqt/", acknowledgement = ack-nhfb, } @Book{DeRoest:1999:SUN, author = "James DeRoest", title = "{Samba}: {Unix} and {NT} internetworking", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xv + 303", year = "1999", ISBN = "0-07-135104-3", ISBN-13 = "978-0-07-135104-1", LCCN = "QA76.76.O63 D4727 1999", bibdate = "Mon Nov 22 16:38:04 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Finkel:1999:EUS, author = "Raphael A. Finkel and Brian Sturgill and Harlan Stenn", title = "Experience with a {Unix} system-administration tool", journal = j-SPE, volume = "29", number = "11", pages = "953--971", month = sep, year = "1999", CODEN = "SPEXBL", ISSN = "0038-0644 (print), 1097-024X (electronic)", bibdate = "Sat Sep 18 18:25:59 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www3.interscience.wiley.com/cgi-bin/abstract?ID=63501202; http://www3.interscience.wiley.com/cgi-bin/fulltext?ID=63501202&PLACEBO=IE.pdf", acknowledgement = ack-nhfb, } @Book{Fogel:1999:OSD, author = "Karl Fogel", title = "Open source development with {CVS}", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "xviii + 316", year = "1999", ISBN = "1-57610-490-7", ISBN-13 = "978-1-57610-490-3", LCCN = "QA76.76.D47 F63 1999", bibdate = "Thu Sep 19 14:49:22 2002", bibsource = "http://cvsbook.red-bean.com/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, annote = "Selected chapters of the book are available in HTML, PDF, PostScript, and TeXinfo form at the book's Web site.", } @Article{Garber:1999:NBL, author = "Lee Garber", title = "News Briefs: {Linux} Support Ranges from {GUI} to {Big Blue}; New {XML} Standards; Partnership for Advanced Computational Infrastructure", journal = j-COMPUTER, volume = "32", number = "5", pages = "20--22", month = may, year = "1999", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Thu May 6 06:17:23 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://dlib.computer.org/co/books/co1999/pdf/r5020.pdf", acknowledgement = ack-nhfb, } @Book{Gay:1999:STY, author = "Warren W. Gay", title = "{Sams}' teach yourself {Linux} programming in 24 hours: complete starter kit", publisher = pub-MACMILLAN-COMPUTER, address = pub-MACMILLAN-COMPUTER:adr, pages = "xviii + 526", year = "1999", ISBN = "0-672-31582-3", ISBN-13 = "978-0-672-31582-4", LCCN = "QA76.76.O63 G398 1999", bibdate = "Thu Jun 3 09:50:27 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Edited by Brian Gill, Ron Gallagher, and Gus Miklos.", acknowledgement = ack-nhfb, keywords = "Linux (Computer file)", } @Book{Giampaolo:1999:PFS, author = "Dominic Giampaolo", title = "Practical file system design with the {BE} file system", publisher = pub-MORGAN-KAUFMANN, address = pub-MORGAN-KAUFMANN:adr, pages = "x + 237", year = "1999", ISBN = "1-55860-497-9", ISBN-13 = "978-1-55860-497-1", LCCN = "QA76.9.F5 G49 1999", bibdate = "Tue Mar 09 14:19:47 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes comparison with Apple Macintosh, Linux, and Microsoft Windows file systems.", price = "US\$34.95", acknowledgement = ack-nhfb, } @Book{Glaeser:1999:OGO, author = "Georg Glaeser and Hellmuth Stachel", title = "Open geometry: {OpenGL} $+$ advanced geometry", publisher = pub-SV, address = pub-SV:adr, pages = "xii + 377", year = "1999", ISBN = "0-387-98599-9", ISBN-13 = "978-0-387-98599-2", LCCN = "T385 .G576 1998", bibdate = "Tue May 29 17:51:52 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", price = "US\$39.95", acknowledgement = ack-nhfb, } @Article{Glass:1999:NBL, author = "Robert L. Glass", title = "News Briefs: Loyal Opposition: Of Open Source, {Linux} \ldots{} \ldots{} and Hype", journal = j-IEEE-SOFTWARE, volume = "16", number = "1", pages = "128--??", month = jan # "\slash " # feb, year = "1999", CODEN = "IESOEG", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Thu Apr 1 16:52:57 MST 1999", bibsource = "http://computer.org/software/so1999/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://dlib.computer.org/so/books/so1999/pdf/s1128.pdf", acknowledgement = ack-nhfb, } @Book{Glass:1999:UPU, author = "Graham Glass and King Ables", title = "{UNIX} for programmers and users", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "xviii + 622", year = "1999", ISBN = "0-13-681685-1", ISBN-13 = "978-0-13-681685-0", LCCN = "QA76.76.O63 G583 1999", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems; UNIX (computer file)", } @Article{Gray:1999:SCUb, author = "Bob Gray", title = "Source Code {UNIX}: Security on a Source Code {UNIX} System", journal = j-LOGIN, volume = "24", number = "3", pages = "??--??", month = jun, year = "1999", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:49 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/1999-6/index.html", URL = "http://www.usenix.org/publications/login/1999-6/features/sourcecode.html", acknowledgement = ack-nhfb, } @Article{Gray:1999:SCUc, author = "Bob Gray", title = "Source Code {UNIX}: What's Your Data Worth?", journal = j-LOGIN, volume = "24", number = "4", pages = "??--??", month = aug, year = "1999", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:51 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/1999-8/index.html", URL = "http://www.usenix.org/publications/login/1999-8/features/sourcecode.html", acknowledgement = ack-nhfb, } @Article{Gray:1999:SCUd, author = "Bob Gray", title = "Source Code {UNIX}", journal = j-LOGIN, volume = "24", number = "6", pages = "??--??", month = dec, year = "1999", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:59 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/1999-12/index.html", URL = "http://www.usenix.org/publications/login/1999-12/features/sourcecode.html", acknowledgement = ack-nhfb, } @Book{Hall:1999:RLD, author = "Jon Hall and Paul G. Sery", title = "{Red Hat Linux} for Dummies with {CDROM}: {The} Complete Version of {Red Hat Linux 6.1} on 2 {CD-ROMs}", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xxiv + 374", year = "1999", ISBN = "0-7645-0663-3", ISBN-13 = "978-0-7645-0663-5", LCCN = "QA76.76.O63 H34349 2000", bibdate = "Fri May 25 10:59:16 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; Operating systems (Computers)", } @Article{Hallen:1999:LW, author = "Jacob Hall{\'e}n and Anders Hammarqvist and Fredrik Juhlin and Anders Chrigstr{\"o}m", title = "{Linux} in the Workplace", journal = j-IEEE-SOFTWARE, volume = "16", number = "1", pages = "52--57", month = jan # "\slash " # feb, year = "1999", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/52.744569", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Thu Apr 1 16:52:57 MST 1999", bibsource = "http://computer.org/software/so1999/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://computer.org/software/so1999/s1052abs.htm; http://dlib.computer.org/so/books/so1999/pdf/s1052.pdf", acknowledgement = ack-nhfb, } @Book{Haviland:1999:USP, author = "Keith Haviland and Dina Gray and Ben Salama", title = "{UNIX} system programming: a programmer's guide to software development", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xx + 350", year = "1999", ISBN = "0-201-87758-9", ISBN-13 = "978-0-201-87758-8", LCCN = "QA76.76.O63H383 1999", bibdate = "Tue Mar 09 16:53:34 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.awl-he.com/titles/11268.html", acknowledgement = ack-nhfb, } @Book{Herold:1999:LUS, author = "Helmut Herold", title = "{Linux- Unix- Systemprogrammierung}", publisher = pub-AW-MUNCHEN, address = pub-AW-MUNCHEN:adr, pages = "xi + 1179", year = "1999", ISBN = "3-8273-1512-3", ISBN-13 = "978-3-8273-1512-0", LCCN = "????", bibdate = "Tue May 09 14:37:31 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "DM 99,90; EUR 51,08", acknowledgement = ack-nhfb, } @Book{Hunt:1999:LNS, author = "Craig Hunt", title = "{Linux} network servers 24 $\times$ seven", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xxvi + 626", year = "1999", ISBN = "0-7821-2506-9", ISBN-13 = "978-0-7821-2506-1", LCCN = "QA76.9.C55 H86 1999", bibdate = "Thu Jun 3 09:50:27 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Operating systems (Computers)", } @Book{Jacobs:1999:DDG, author = "Jon Jacobs", title = "{Delphi} developer's guide to {OpenGL}", publisher = pub-WORDWARE, address = pub-WORDWARE:adr, pages = "????", year = "1999", ISBN = "1-55622-657-8", ISBN-13 = "978-1-55622-657-1", LCCN = "T385 .J334 1999", bibdate = "Fri Sep 03 06:03:58 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Jepson:1999:OPT, author = "Brian Jepson and Larry Wall", title = "{O'Reilly Perl} Toolkit for {Linux} and {Solaris}", publisher = pub-ORA, address = pub-ORA:adr, pages = "120", year = "1999", ISBN = "1-56592-604-8", ISBN-13 = "978-1-56592-604-2", LCCN = "????", bibdate = "Thu Feb 18 08:33:11 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.95", URL = "http://www.oreilly.com/catalog/perltkit/", acknowledgement = ack-nhfb, } @Book{Jones:1999:OSL, author = "Christopher A. Jones and Drew Batchelor", title = "Open source {Linux Web} programming", publisher = pub-IDG, address = pub-IDG:adr, pages = "xxi + 476", year = "1999", ISBN = "0-7645-4619-8", ISBN-13 = "978-0-7645-4619-8", LCCN = "QA76.76.O63 J662 1999", bibdate = "Thu Sep 21 10:17:17 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.99", acknowledgement = ack-nhfb, } @Book{Kaplenk:1999:USA, author = "Joe Kaplenk", title = "{UNIX} System Administrator's Interactive Workbook", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxiii + 588", year = "1999", ISBN = "0-13-081308-7", ISBN-13 = "978-0-13-081308-4", LCCN = "QA76.76.O63K3645 1999", bibdate = "Fri Sep 03 05:43:46 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.phptr.com/bookseri/unix.html; http://www.phptr.com/ptrbooks/ptr_0130813087.html", price = "US\$34.99", URL = "http://www.phptr.com/ptrbooks/ptr_0130813087.html", acknowledgement = ack-nhfb, publishersnote = "A quick, friendly, hands-on tutorial on becoming a UNIX sysadmin -- with exclusive access to an up-to-the-minute Web-based training site! This interactive workbook focuses on helping users develop the ``thinking skills'' and understanding that UNIX system administrators need. Step-by-step, with labs, exercises, review questions, simple projects and more.", } @Article{Kathan:1999:PCM, author = "Joseph Kathan", title = "Portable Control of Multiple Daemon Processes", journal = j-CCCUJ, volume = "17", number = "5", pages = "??--??", month = may, year = "1999", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:20 MDT 2002", bibsource = "http://www.cuj.com/articles/1999/9905/9905toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "The Unix and Windows process models are just different enough to present problems when writing portable code.", acknowledgement = ack-nhfb, } @Book{Ketkar:1999:WNS, author = "Priyadarshan Ketkar", title = "Working with {Netscape} Server on {HP-UX}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xviii + 251", year = "1999", ISBN = "0-13-095972-3", ISBN-13 = "978-0-13-095972-0", LCCN = "TK5105.8885.N495K38 1999", bibdate = "Mon Aug 02 14:24:12 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.phptr.com/ptrbooks/ptr_0130959723.html", acknowledgement = ack-nhfb, } @Article{Kiesling:1999:LYB, author = "Robert Kiesling", title = "{Linux} and the {Y2K} Bug", journal = j-SYS-ADMIN, volume = "8", number = "1", pages = "16, 18--20", month = jan, year = "1999", CODEN = "SYADE7", ISSN = "1061-2688", bibdate = "Thu Dec 24 06:35:28 MST 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.samag.com/", abstract = "Kiesling describes the time keeping functions that are available in the Linux C libraries, Version 5 and explores how to test Linux-based applications for date compliance.", acknowledgement = ack-nhfb, } @Book{Kobert:1999:GHA, author = "Jeannie Johnstone Kobert", title = "Guide to high availability: configuring {\tt boot\slash root\slash swap}", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xvi + 104", year = "1999", ISBN = "0-13-016306-6", ISBN-13 = "978-0-13-016306-6", LCCN = "QA76.8.S86K62 1999", bibdate = "Fri Apr 11 13:01:45 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Part No.: 805-7711-05 July 1999, Revision 50.", price = "US\$24.00", series = "Sun BluePrints Program", URL = "books/ha.pdf; http://www.phptr.com/ptrbooks/ptr_0130163066.html; http://www.sun.com/books/catalog/kobert/", acknowledgement = ack-nhfb, } @Article{Kroeker:1999:NTN, author = "Kirk L. Kroeker", title = "New Tools: Net Development: {Sun}'s {Java} Embedded Server; {MetaCreation}'s {Web}-Savvy Graphics Tool; {WebCompiler}'s {HTML} Packaging Tool. Component Technology: {ProtoVIew Development}'s Active{X} Tools; {Avilon Software}'s Load Balancing Component System. Software Development: {Verilog}'s Test Checker; {Red Hat} and {Metrowerks}' Development Tools for {Linux}; The {Object Factory}'s Optimization Tool; {Acumen Systems}'s {SDK} for Imaging; {Aonix}'s Process-Oriented Lifecycle Environment; {Baan}'s Embedded Software Development Suite", journal = j-COMPUTER, volume = "32", number = "5", pages = "103--107", month = may, year = "1999", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Thu May 6 06:17:23 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://dlib.computer.org/co/books/co1999/pdf/r5103.pdf", acknowledgement = ack-nhfb, } @Book{Kuo:1999:UUL, author = "Peter Kuo", title = "{Unix: das umfassende Lern- und Nachschlagewerk; zum effektiven Umgang mit Unix-Systemen; zur System- und Netzwerkadministration unter AIX, BSD, HP-UX, Linux, SCO-Unix, SVR 4, SVR 5, UnixWare und SunOS Solaris}", publisher = "Markt \& Technik, Buch- und Software-Verlag", address = "Munich, Germany", pages = "981 (est.)", year = "1999", ISBN = "3-8272-5532-5", ISBN-13 = "978-3-8272-5532-7", LCCN = "????", bibdate = "Tue Sep 17 06:55:46 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", acknowledgement = ack-nhfb, language = "German", } @Book{Lehey:1999:CF, author = "Greg Lehey", title = "The Complete {FreeBSD}", publisher = "Walnut Creek CD-ROM", address = "Walnut Creek, CA, USA", edition = "Third", pages = "xxxiv + 773", year = "1999", ISBN = "1-57176-246-9; 1-57176-079-2", ISBN-13 = "978-1-57176-246-7; 978-1-57176-079-1", LCCN = "QA76.76.O63", bibdate = "Tue Sep 17 06:27:04 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes four CD-ROMs.", acknowledgement = ack-nhfb, } @Article{Leibovitch:1999:BCL, author = "Evan Leibovitch", title = "The Business Case for {Linux}", journal = j-IEEE-SOFTWARE, volume = "16", number = "1", pages = "40--44", month = jan # "\slash " # feb, year = "1999", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/52.744567", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Thu Apr 1 16:52:57 MST 1999", bibsource = "http://computer.org/software/so1999/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://computer.org/software/so1999/s1040abs.htm; http://dlib.computer.org/so/books/so1999/pdf/s1040.pdf", acknowledgement = ack-nhfb, } @Article{Lewis:1999:BCA, author = "Ted Lewis", title = "Binary Critic: Asbestos Pajamas: An Open Source Dialogue", journal = j-COMPUTER, volume = "32", number = "4", pages = "112, 108--111", month = apr, year = "1999", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Thu Apr 1 07:09:15 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Continues the debate about open source software development, notably in GNU\slash Linux \cite{Lewis:1999:BCO}.", URL = "http://dlib.computer.org/co/books/co1999/pdf/r4112.pdf", acknowledgement = ack-nhfb, } @Article{Lewis:1999:BCO, author = "Ted Lewis", title = "Binary Critic: The Open Source Acid Test", journal = j-COMPUTER, volume = "32", number = "2", pages = "128, 125--127", month = feb, year = "1999", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Thu Feb 4 07:18:50 MST 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "See continuation in \cite{Lewis:1999:BCA}", URL = "http://dlib.computer.org/co/books/co1999/pdf/r2128.pdf", acknowledgement = ack-nhfb, } @Book{Lipkin:1999:LLV, author = "Bernice Sacks Lipkin", title = "{\LaTeX} for {Linux}: a vade mecum", publisher = pub-SV, address = pub-SV:adr, pages = "xxxi + 568", year = "1999", ISBN = "0-387-98708-8 (softcover)", ISBN-13 = "978-0-387-98708-8 (softcover)", LCCN = "Z 253.4 L38 L56 1999", bibdate = "Thu Sep 21 10:27:12 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.95", acknowledgement = ack-nhfb, keywords = "Computerized typesetting; LaTeX (Computer file)", } @Book{Lunde:1999:CIP, author = "Ken Lunde", title = "{CJKV} Information Processing: {Chinese}, {Japanese}, {Korean} \& {Vietnamese} Computing", publisher = pub-ORA, address = pub-ORA:adr, pages = "1174", year = "1999", ISBN = "1-56592-224-7", ISBN-13 = "978-1-56592-224-2", LCCN = "PL1074.5 .L85 1999", bibdate = "Sat Apr 07 10:38:11 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$64.95", URL = "http://www.oreilly.com/catalog/cjkvinfo/", acknowledgement = ack-nhfb # " and " # ack-kl, tableofcontents = " Foreword xv\\ Preface xvii\\ 1. CJKV Information Processing Overview 1\\ Multiple Writing Systems 2\\ Character Set Standards 7\\ Encoding Methods 8\\ Input Methods 10\\ Typography 14\\ Basic Concepts & Terminology 14\\ 2. Writing Systems 29\\ Latin Characters & Transliteration 30\\ Zhuyin 43\\ Kana 44\\ Hangul 50\\ Chinese Characters 52\\ Non-Chinese Chinese Characters 64\\ 3. Character Set Standards 69\\ Non-Coded Character Set Standards 70\\ Coded Character Set Standards 74\\ International Character Set Standards 124\\ Character Set Standard Oddities 134\\ Non-Coded Versus Coded Character Sets 136\\ Information Interchange Versus Professional Publishing 138\\ Advice to Developers 140\\ 4. Encoding Methods 143\\ Locale-Independent Encoding Methods 145\\ Locale-Specific Encoding Methods 176\\ Comparing CJKV Encoding Methods 194\\ International Encoding Methods 195\\ Charset Designations 206\\ Code Pages 209\\ Code Conversion 213\\ Repairing Unreadable CJKV Text 219\\ Beware of Little & Big Endian Issues 224\\ Advice to Developers 224\\ 5. Input Methods 227\\ Transliteration Techniques 229\\ Input Techniques 235\\ User Interface Concerns 249\\ Keyboard Arrays 249\\ Other Input Hardware 272\\ Input Method Software 273\\ 6. Font Formats 281\\ Typeface Design Issues 282\\ Bitmapped Fonts 283\\ Outline Fonts 289\\ Ruby Fonts 322\\ Host-Based Versus Printer-Resident Fonts 323\\ Creating Your Own Fonts 335\\ External Character Handling 339\\ Advice to Developers 350\\ 7. Typography 351\\ Rules, Rules, Rules... 352\\ Typographic Units & Measurements 353\\ Horizontal & Vertical Layout 357\\ Line Breaking & Word Wrapping 368\\ Character Spanning 372\\ Alternate Metrics 373\\ Kerning 380\\ Line Length Issues 381\\ Multilingual Text 383\\ Glyph Substitution 387\\ Annotations 389\\ Typographic Software 394\\ 8. Output Methods 405\\ Where Can Fonts Live? 406\\ Printer Output 407\\ PostScript CJKV Printers 407\\ Computer Monitor Output 412\\ Other Printing Methods 416\\ The Role of Printer Drivers 417\\ Output Tips & Tricks 420\\ Advice to Developers 422\\ 9. Information Processing Techniques 425\\ Language, Country & Script Codes 426\\ Programming Languages 429\\ Code Conversion Algorithms 433\\ Java Programming Examples 442\\ Miscellaneous Algorithms 446\\ Byte Versus Character Handling 452\\ Character Sorting 460\\ Natural Language Processing 462\\ Regular Expressions 464\\ Search Engines 467\\ Code Processing Tools 467\\ 10. Operating Systems, Text Editors & Word Processors 475\\ Viewing CJKV Text on Non-CJKV Systems 477\\ Operating Systems 477\\ Hybrid Environments 489\\ Text Editors 492\\ Word Processors 499\\ Dedicated Word Processors 503\\ 11. Dictionaries & Dictionary Software 505\\ Chinese Character Dictionary Indexes 505\\ Character Dictionaries 513\\ Other Useful Dictionaries 518\\ Dictionary Hardware 519\\ Dictionary Software 520\\ Machine Translation Software 528\\ Machine Translation Services 529\\ Learning Aids 530\\ 12. The Internet 533\\ Email 534\\ News 539\\ FTP & Telnet 540\\ Network Domains 542\\ Getting Connected 545\\ Internet Software 545\\ 13. The World Wide Web 553\\ Content Versus Presentation 553\\ Displaying Web Documents 556\\ Authoring HTML Documents 557\\ Authoring XML Documents 561\\ Authoring PDF Documents 562\\ Character References 564\\ CGI Programming Examples 565\\ Shall We Surf? 568\\ A. Code Conversion Tables 569\\ B. Notation Conversion Table 573\\ C. Vendor Character Set Standards 577\\ Chinese Vendor Character Sets -- China 578\\ Chinese Vendor Character Sets -- Taiwan 582\\ Chinese Vendor Character Sets -- Hong Kong 587\\ Japanese Vendor Character Sets 593\\ Korean Vendor Character Sets 623\\ D. Vendor Encoding Methods 635\\ Brief Overview of IBM Encodings 636\\ Chinese Vendor Encodings -- China 637\\ Chinese Vendor Encodings -- Taiwan 640\\ Chinese Vendor Encodings -- Hong Kong 643\\ Japanese Vendor Encodings 644\\ Korean Vendor Encodings 665\\ E. GB 2312-80 Table 671\\ F. GB/T 12345-90 Table 687\\ G. CNS 11643-1992 Table 703\\ CNS 11643-1992 Plane 1 703\\ CNS 11643-1992 Plane 2 715\\ CNS 11643-1992 Plane 3 729\\ CNS 11643-1992 Plane 4 741\\ CNS 11643-1992 Plane 5 755\\ CNS 11643-1992 Plane 6 771\\ CNS 11643-1992 Plane 7 783\\ CNS 11643-1986 Plane 15 795\\ H. Big Five Table 809\\ Big Five Level 1 809\\ Big Five Level 2 823\\ I. Hong Kong GCCS Table 841\\ J. JIS X 0208:1997 Table 851\\ K. JIS X 0212-1990 Table 865\\ L. KS X 1001:1992 Table 877\\ M. KS X 1002:1991 Hanja Table 893\\ N. Hangul Reading Table 899\\ O. TCVN 6056:1995 Table 913\\ P. Code Table Indexes 921\\ GB 2312-80 Level 1 Reading Index 921\\ GB 2312-80 Level 2 Radical Index 922\\ Big Five & CNS 11643-1992 Stroke Index 924\\ JIS X 0208:1997 Level 1 Reading Index 926\\ JIS Radical Index 926\\ KS Hanja Reading Index 933\\ Q. Character Lists & Mapping Tables 935\\ GB 2312-80 Versus GB/T 12345-90 935\\ CNS 11643-1986 Versus CNS 11643-1992 954\\ JIS C 6226-1978 Versus JIS X 0208-1983 956\\ JIS X 0208-1983 Versus JIS X 0208-1990 960\\ JIS X 0212-1990 Versus JIS C 6226-1978 962\\ Joyo Kanji 963\\ IBM Selected Kanji & Non-Kanji 967\\ Duplicate Hanja in KS X 1001:1992 971\\ R. Chinese Character Lists 979\\ Hanzi Lists From China 979\\ Hanzi Lists From Taiwan 983\\ Kanji Lists From Japan 994\\ Hanja Lists From Korea 999\\ S. Single-Byte Code Tables 1003\\ Non-CJKV Code Tables 1003\\ Chinese Code Tables 1005\\ Japanese Code Tables 1006\\ Korean Code Tables 1008\\ TCVN-Roman Code Tables 1009\\ T. Software & Document Sources 1015\\ Anonymous FTP 1015\\ Searching for Files 1016\\ Useful URLs 1016\\ Commercial Sources 1017\\ U. Mailing Lists 1035\\ General Mailing Lists 1035\\ Chinese Mailing Lists 1040\\ Japanese Mailing Lists 1040\\ Korean Mailing Lists 1045\\ V. Professional Organizations 1047\\ Oriental Language Computer Society 1047\\ International Macintosh Users Group 1047\\ The Localisation Industry Standards Association 1048\\ The Unicode Consortium 1048\\ W. Perl Code Examples 1049\\ Japanese Code Conversion 1049\\ Korean Code Conversion 1054\\ TRON Code Conversion 1056\\ Unicode Code Conversion 1058\\ Encoding Detection 1059\\ Repairing ISO-2022-JP Encoding 1061\\ Other Useful Transformations 1062\\ CJKV Encoding Templates 1062\\ Multiple-Byte Anchoring 1064\\ Multiple-Byte Processing 1065\\ X. Glossary 1067\\ Bibliography 1095\\ Index 1113", } @Article{Lutz:1999:NBF, author = "Michael J. Lutz", title = "New Books: Folding All Things Virtual into Urban Life; Performance Modeling in Network Design; Practical Automated Software Testing; {Java} Patterns; Testing Software Step by Step; Working with {UNIX} Shells", journal = j-COMPUTER, volume = "32", number = "11", pages = "119--119", month = nov, year = "1999", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Sat Mar 11 09:52:58 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes review of \cite{Quigley:1999:USE}.", URL = "http://dlib.computer.org/co/books/co1999/pdf/ry119.pdf", acknowledgement = ack-nhfb, } @Book{McCarty:1999:LDG, author = "Bill McCarty", title = "Learning {Debian GNU\slash Linux}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xiii + 343", year = "1999", ISBN = "1-56592-705-2", ISBN-13 = "978-1-56592-705-6", LCCN = "QA76.76.O63 M3758 1999", bibdate = "Mon Apr 18 14:58:16 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/; z3950.loc.gov:7090/Voyager", note = "Includes CD-ROM.", price = "US\$34.95", URL = "http://www.oreilly.com/catalog/9781565927056; http://www.oreilly.com/catalog/debian", acknowledgement = ack-nhfb, remark = "``A guide to Debian GNU/Linux for new users'' --- cover. ``Includes Debian GNU/Linux on CD-ROM' --- cover. Title on disc: Debian gnu-linux. Disc: Debian 2.1; bootable CD-ROM. Glossary (p. 319-321).", subject = "GNU/Linux; UNIX (Computer file); Operating systems (Computers)", xxnote = "This ISBN is for the 1999 edition: did a newer edition appear?? I found a 2002 entry in NRW-Verbundkatalog with this ISBN, but labeled first edition.", } @Book{McCarty:1999:LRL, author = "Bill McCarty", title = "Learning {Red Hat Linux}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xiii + 378", year = "1999", ISBN = "1-56592-627-7", ISBN-13 = "978-1-56592-627-1", LCCN = "QA76.76.O63 M379 1999", bibdate = "Mon Apr 18 14:57:23 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/; z3950.loc.gov:7090/Voyager", price = "US\$34.95", URL = "http://www.oreilly.com/catalog/9781565926271; http://www.oreilly.com/catalog/redhat", acknowledgement = ack-nhfb, subject = "GNU/Linux; Operating systems (Computers)", } @Book{McDougall:1999:RM, author = "Richard McDougall and Adrian Cockcroft and Evert Hoogendoorn and Enrique Vargas and Tom Bialaski", title = "Resource Management", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxviii + 334", year = "1999", ISBN = "0-13-025855-5", ISBN-13 = "978-0-13-025855-7", LCCN = "QA76.9.D3R472 1999", bibdate = "Fri Apr 11 12:03:24 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sun.com/blueprints/", note = "Part No. 805-7268-10 July 1999, Revision A.", price = "US\$40.00", series = "Sun BluePrints Program", URL = "books/rm.pdf; http://www.sun.com/books/catalog/mcdougall3/", abstract = "Ten years ago, the computing power of a single Unix system barely met the requirements of a typical application. This created a trend to use a large number of smaller systems, each running their own discrete application. Each system managed its own resources for its application. Today, however, the typical server is many times larger, so we often encourage running multiple applications on each system. Unix is a timeshare operating system and attempts to distribute the resources it manages among the applications which it hosts. However, the distribution of these resources does not always align with the requirements of a given application. This often means that required service and performance levels are not met due to conflicting requirements for the same resources.", acknowledgement = ack-nhfb, keywords = "Solaris Bandwidth Manager; Solaris Resource Manager; Sun Solaris", } @Book{McMullen:1999:UUI, author = "John Harvey McMullen", title = "{UNIX} User's Interactive Workbook", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxii + 598", year = "1999", ISBN = "0-13-099820-6", ISBN-13 = "978-0-13-099820-0", LCCN = "QA76.76.O63M3998 1999", bibdate = "Tue May 11 08:09:37 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.phptr.com/bookseri/unix.html; http://www.phptr.com/ptrbooks/ptr_0130998206.html", price = "US\$34.99", acknowledgement = ack-nhfb, } @TechReport{McNab:1999:BPL, author = "A. D. McNab", title = "{BSD Portals} for {LINUX 2.0}", institution = "????", address = "????", pages = "12", year = "1999", bibdate = "Tue Sep 17 07:17:36 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "NAS2-14303 ; RTOP 509-10-61", acknowledgement = ack-nhfb, } @Book{McNally:1999:AP, author = "Jim McNally", title = "Awk programming", publisher = "DDC Publishers", address = "New York, NY, USA", pages = "124", year = "1999", ISBN = "1-56243-981-2", ISBN-13 = "978-1-56243-981-1", LCCN = "????", bibdate = "Fri Jul 01 14:38:35 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$", acknowledgement = ack-nhfb, } @Book{Meadhra:1999:SLD, author = "Michael Meadhra", title = "{StarOffice} for {LINUX} for Dummies", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xxiv + 404", year = "1999", ISBN = "0-7645-0576-9", ISBN-13 = "978-0-7645-0576-8", LCCN = "A76.76.I57 M427 1999", bibdate = "Thu Sep 21 09:53:42 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$19.99", URL = "http://www.idgbooks.com/", acknowledgement = ack-nhfb, } @Book{Miller:1999:AUP, author = "Bonnie L. Miller", title = "{AIX} for {UNIX} Professionals", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "vi + 184", year = "1999", ISBN = "0-13-757246-8", ISBN-13 = "978-0-13-757246-5", LCCN = "QA76.76.O63M74519 1999", bibdate = "Thu Jan 21 18:58:23 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.phptr.com/ptrbooks/ptr_0137572468.html", acknowledgement = ack-nhfb, publishersnote = "``Miller has produced a small volume that reads well and appears to combine a tutorial with reference material for those working on RS/6000s. Miller's discussions of migration problems are quite illuminating.'' -- ;login: Magazine, December 1998", } @Book{Mohr:1999:UWS, author = "James Mohr", title = "{UNIX Web} Server Administrator's Interactive Workbook", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxi + 587", year = "1999", ISBN = "0-13-020065-4", ISBN-13 = "978-0-13-020065-5", LCCN = "TK5105.888.M642 1999", bibdate = "Fri Sep 03 05:43:44 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$34.99", URL = "http://www.phptr.com/ptrbooks/ptr_0130200654.html", acknowledgement = ack-nhfb, publishersnote = "Master the world's \#1 Web server, Apache! Start with step-by-step coverage of compiling, modifying, installing and configuring Apache. Develop and organize your site, add searching and indexing, graphics, image maps, frames, tables and forms!", xxnote = "Check pages and year??", } @Book{Nadelson:1999:MUW, author = "Mark Nadelson and Thomas Hagan", title = "Making {UNIX} and {Windows NT} Talk: Object-Oriented Inter-Platform Communication", publisher = pub-R-D-BOOKS, address = pub-R-D-BOOKS:adr, pages = "512", year = "1999", ISBN = "0-87930-584-3", ISBN-13 = "978-0-87930-584-0", LCCN = "????", bibdate = "Mon Apr 24 09:04:40 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", price = "US\$44.95", URL = "http://www.rdbooks.com/scripts/store/vsc/store/products/rd3104.htm?L+/htdocs/rdbooks/config/store+dwie8022", acknowledgement = ack-nhfb, } @Book{Northcutt:1999:NID, author = "Stephen Northcutt", title = "Network Intrusion Detection: An Analysts' Handbook", publisher = pub-QUE, address = pub-QUE:adr, pages = "267", year = "1999", ISBN = "0-7357-0868-1", ISBN-13 = "978-0-7357-0868-6", LCCN = "TK5105.59 .N475 1999", bibdate = "Sat Dec 06 08:38:49 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$45.00", acknowledgement = ack-nhfb, } @Book{Norton:1999:CGL, author = "Peter Norton", title = "{Peter Norton}'s Complete guide to {Linux}", publisher = pub-PH, address = pub-PH:adr, pages = "xv + 581", year = "1999", ISBN = "0-672-31573-4", ISBN-13 = "978-0-672-31573-2", LCCN = "QA76.76.O63 N67792 2000", bibdate = "Thu Jun 3 09:50:27 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Edited by Bryan Gambrel.", acknowledgement = ack-nhfb, keywords = "Linux (Computer file)", subject = "Linux; Operating systems (Computers)", } @Book{OReilly:1999:CWN, author = "{O'Reilly and Inc.} Associates", title = "Complete {Windows NT} \& {UNIX} System Administration Pack", publisher = pub-ORA, address = pub-ORA:adr, pages = "????", year = "1999", LCCN = "????", bibdate = "Wed Oct 30 16:15:17 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html", price = "US\$149.00", URL = "http://www.oreilly.com/catalog/hp12pack", acknowledgement = ack-nhfb, xxISBN = "none", } @Book{OReilly:1999:NCB, author = "{O'Reilly and Inc.} Associates", title = "The Networking {CD} Bookshelf", publisher = pub-ORA, address = pub-ORA:adr, pages = "456", year = "1999", ISBN = "1-56592-523-8", ISBN-13 = "978-1-56592-523-6", LCCN = "????", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Six O'Reilly networking books on CD-ROM. Issued in container and accompanied by a print ed. of DNS and BIND (3rd ed.). Contents: DNS and BIND (3rd ed.) -- TCP/IP network administration (2nd ed.) -- Building Internet firewalls -- Practical UNIX and Internet security (2nd ed.) -- Sendmail desktop reference -- Sendmail (2nd ed.).", price = "US\$79.95", URL = "http://www.oreilly.com/catalog/netcd/", acknowledgement = ack-nhfb, keywords = "computer networks; computer security; electronic mail systems; internet (computer network) -- security measures; TCP/IP (computer network protocol)", } @Book{Patsis:1999:UAS, author = "Peter Patsis", title = "{UNIX} {\tt awk} and {\tt sed} Programmer's Interactive Workbook", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xix + 622", year = "1999", ISBN = "0-13-082675-8", ISBN-13 = "978-0-13-082675-6", LCCN = "QA76.76.O63P3777 1999", bibdate = "Fri Sep 03 05:44:25 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.phptr.com/bookseri/unix.html; http://www.phptr.com/ptrbooks/ptr_0130826758.html", price = "US\$34.99", acknowledgement = ack-nhfb, } @Article{Pavlidis:1999:UCX, author = "Theo Pavlidis and Kevin Hunter", title = "Using Color in the {X Window System} versus {Microsoft Windows}: {Part} 2", journal = j-IEEE-CGA, volume = "19", number = "1", pages = "75--83", month = jan # "\slash " # feb, year = "1999", CODEN = "ICGADZ", DOI = "http://dx.doi.org/10.1109/38.736471", ISSN = "0272-1716 (print), 1558-1756 (electronic)", ISSN-L = "0272-1716", bibdate = "Wed Dec 23 16:21:26 MST 1998", bibsource = "http://computer.org/cga/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://computer.org/cga/cg1999/g1075abs.htm; http://dlib.computer.org/cg/books/cg1999/pdf/g1075.pdf", acknowledgement = ack-nhfb, } @Book{Petersen:1999:UCE, author = "Richard Petersen", title = "{UNIX} clearly explained", publisher = pub-AP-PROFESSIONAL, address = pub-AP-PROFESSIONAL:adr, pages = "xviii + 691", year = "1999", ISBN = "0-12-552130-8", ISBN-13 = "978-0-12-552130-7", LCCN = "QA76.76.O63 P524 1999", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Article{Piner:1999:RMT, author = "Mary-Louise G. Piner", title = "Report to Members: With Two New Awards, We Honor {Unix}, {RISC} Innovators", journal = j-COMPUTER, volume = "32", number = "5", pages = "11--13", month = may, year = "1999", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Thu May 6 06:17:23 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://dlib.computer.org/co/books/co1999/pdf/r5011.pdf", acknowledgement = ack-nhfb, } @Book{Poniatowski:1999:HUXa, author = "Marty Poniatowski", title = "{HP-UX 11.x} System Administration ``How To'' Book", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Second", pages = "xxxi + 817", year = "1999", ISBN = "0-13-012515-6", ISBN-13 = "978-0-13-012515-6", LCCN = "QA76.76.O63 P65 1999", bibdate = "Fri Sep 03 08:04:52 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.phptr.com/ptrbooks/ptr_0130125156.html", acknowledgement = ack-nhfb, } @Book{Poniatowski:1999:HUXb, author = "Marty Poniatowski", title = "The {HP-UX 11.x} System Administration Handbook and Toolkit", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxxvi + 1147", year = "1999", ISBN = "0-13-012514-8", ISBN-13 = "978-0-13-012514-9", LCCN = "QA76.76.O63P647 1999", bibdate = "Wed Oct 05 06:07:04 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", URL = "http://www.phptr.com/ptrbooks/ptr_0130125148.html", acknowledgement = ack-nhfb, } @Book{Preston:1999:UBR, author = "W. Curtis Preston", title = "{UNIX} Backup \& Recovery", publisher = pub-ORA, address = pub-ORA:adr, pages = "xix + 707", year = "1999", ISBN = "1-56592-642-0", ISBN-13 = "978-1-56592-642-4", LCCN = "QA76.9.D348 P73 1999", bibdate = "Thu Sep 21 10:26:24 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/", price = "US\$36.95", URL = "http://www.oreilly.com/catalog/unixbr", acknowledgement = ack-nhfb, } @Book{Pritchard:1999:LRC, author = "Kara J. Pritchard", title = "{Linux Red Hat} Certified Engineer Exam Cram", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "xxvii + 380", year = "1999", ISBN = "1-57610-487-7", ISBN-13 = "978-1-57610-487-3", LCCN = "QA76.3 .P75 1999", bibdate = "Thu Sep 21 10:03:32 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.99", acknowledgement = ack-nhfb, xxtitle = "{RHCE Linux} exam cram", } @Book{Quigley:1999:USE, author = "Ellie Quigley", title = "{UNIX} Shells by Example", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "xiv + 654", year = "1999", ISBN = "0-13-021222-9", ISBN-13 = "978-0-13-021222-1", LCCN = "QA76.76.O63 Q54 1999", bibdate = "Sat Mar 11 10:48:40 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.99", acknowledgement = ack-nhfb, } @Book{Ray:1999:STY, author = "William Ray", title = "{Sams} teach yourself {Unix} in 10 minutes", publisher = pub-PH, address = pub-PH:adr, pages = "vii + 210", year = "1999", ISBN = "0-672-31523-8", ISBN-13 = "978-0-672-31523-7", LCCN = "QA76.8.U65 R39 1999", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Book{Ray:1999:UVQ, author = "Deborah S. Ray and Eric J. Ray", title = "{UNIX}: {Visual QuickStart} Guide", publisher = pub-PEACHPIT, address = pub-PEACHPIT:adr, pages = "xi + 354", year = "1999", ISBN = "0-201-35395-4", ISBN-13 = "978-0-201-35395-2", LCCN = "QA76.76.O63 R37 1998", bibdate = "Tue Mar 09 16:38:10 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$17.99", URL = "http://www.peachpit.com/books/catalog/K5852.html", acknowledgement = ack-nhfb, } @Book{Raymond:1999:CBM, author = "Eric S. Raymond", title = "The Cathedral \& the Bazaar: Musings on {Linux} and {Open Source} by an Accidental Revolutionary", publisher = pub-ORA, address = pub-ORA:adr, pages = "xi + 268", year = "1999", ISBN = "1-56592-724-9", ISBN-13 = "978-1-56592-724-7", LCCN = "QA76.76.O63 R396 1999", bibdate = "Mon Apr 18 14:58:29 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/; z3950.loc.gov:7090/Voyager", price = "US\$19.95", URL = "http://www.oreilly.com/catalog/9781565927247; http://www.oreilly.com/catalog/cb", acknowledgement = ack-nhfb, subject = "GNU/Linux; Operating systems (Computers); Computer software; Development; Computer hackers", } @Article{Raymond:1999:ILO, author = "Eric Raymond", title = "Interview: {Linux} and Open-Source Success", journal = j-IEEE-SOFTWARE, volume = "16", number = "1", pages = "85--89", month = jan # "\slash " # feb, year = "1999", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/MS.1999.744574", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Thu Apr 1 16:52:57 MST 1999", bibsource = "http://computer.org/software/so1999/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://dlib.computer.org/so/books/so1999/pdf/s1085.pdf", acknowledgement = ack-nhfb, } @Book{Reichard:1999:UPE, author = "Kevin Reichard and Eric Foster-Johnson", title = "{UNIX} in plain English", publisher = pub-MIS, address = pub-MIS:adr, edition = "Third", pages = "xx + 379", year = "1999", ISBN = "0-7645-7011-0", ISBN-13 = "978-0-7645-7011-7", LCCN = "QA76.76.O63 R44 1999", bibdate = "Tue May 25 07:14:38 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Book{Ricart:1999:STY, author = "Manuel Alberto Ricart and Grace Buechlein and Gregory Harris and Laura Bulcher", title = "{Sams} Teach Yourself {Linux} in 10 minutes", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "vii + 212", year = "1999", ISBN = "0-672-31524-6", ISBN-13 = "978-0-672-31524-4", LCCN = "QA76.76.O63R3918 1999", bibdate = "Tue May 11 08:10:03 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$12.99", acknowledgement = ack-nhfb, } @Book{Robbins:1999:UND, author = "Arnold Robbins", title = "{UNIX} in a Nutshell: {A} Desktop Quick Reference for {SVR4} and {Solaris 7}", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "xvi + 598", year = "1999", ISBN = "1-56592-427-4", ISBN-13 = "978-1-56592-427-7", LCCN = "QA76.76.O63 R6214 1999", bibdate = "Sat Oct 21 12:18:05 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/", price = "US\$24.95", URL = "http://www.oreilly.com/catalog/unixnut3", acknowledgement = ack-nhfb, } @Book{Robbins:1999:UNS, author = "Arnold Robbins", title = "{UNIX} in a Nutshell: {A} Desktop Quick Reference for {SVR4} and {Solaris 7}", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "616", year = "1999", ISBN = "1-56592-427-4", ISBN-13 = "978-1-56592-427-7", LCCN = "QA76.76.O63 R623 1999", bibdate = "Wed Nov 17 09:10:28 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/", price = "US\$24.95", URL = "http://www.oreilly.com/catalog/unixnut3", acknowledgement = ack-nhfb, } @Book{Robbins:1999:VEK, author = "Arnold Robbins", title = "{Vi-Editor: kurz and gut}", publisher = pub-ORA, address = pub-ORA:adr, pages = "62", year = "1999", ISBN = "3-89721-213-7 (paperback)", ISBN-13 = "978-3-89721-213-8 (paperback)", LCCN = "????", bibdate = "Thu Jul 15 17:54:45 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk", price = "DM 12.80, S 93.00", series = "O'Reillys Taschenbibliothek", acknowledgement = ack-nhfb, language = "German", remark = "German translation of \cite{Robbins:1999:VEP}.", } @Book{Robbins:1999:VEP, author = "Arnold Robbins", title = "{\tt vi} Editor Pocket Reference", publisher = pub-ORA, address = pub-ORA:adr, pages = "v + 66", year = "1999", ISBN = "1-56592-497-5", ISBN-13 = "978-1-56592-497-0", LCCN = "QA76.76.T49 R63 1999", bibdate = "Thu Apr 15 07:55:45 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$6.95", URL = "http://www.oreilly.com/catalog/vipr/", acknowledgement = ack-nhfb, } @Book{Rosenberg:1999:HKP, author = "Barry Rosenberg", title = "Hands-On {KornShell93} Programming", publisher = pub-AW-LONGMAN, address = pub-AW-LONGMAN:adr, pages = "xxvi + 444", year = "1999", ISBN = "0-201-31018-X", ISBN-13 = "978-0-201-31018-4", LCCN = "QA76.73.K67 R67 1999", bibdate = "Wed Mar 31 12:18:59 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, xxtitle = "Hands-On {KornShell 93} Programming", } @Article{Salus:1999:YAUa, author = "Peter H. Salus", title = "20 Years Ago in {UNIX}", journal = j-LOGIN, volume = "24", number = "1", pages = "??--??", month = feb, year = "1999", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:42:45 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/contents/contents.feb99.html", URL = "http://www.usenix.org/publications/login/1999-2/20yearsago.html", acknowledgement = ack-nhfb, } @Book{Sauers:1999:HUT, author = "Robert F. Sauers and Peter Weygant", title = "{HP-UX} Tuning and Performance: Concepts, Tools, and Methods", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxii + 296", year = "1999", ISBN = "0-13-102716-6", ISBN-13 = "978-0-13-102716-9", LCCN = "QA76.8.H48S28 1999", bibdate = "Mon Aug 02 14:19:41 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.phptr.com/ptrbooks/ptr_0131027166.html", acknowledgement = ack-nhfb, } @Book{Schwartz:1999:IU, author = "David I. Schwartz", title = "Introduction to {UNIX}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "150", year = "1999", ISBN = "0-13-095135-8", ISBN-13 = "978-0-13-095135-9", LCCN = "xvi + 133", bibdate = "Tue May 11 08:10:33 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$20.00", acknowledgement = ack-nhfb, } @Book{Sery:1999:RLS, author = "Paul G. Sery and Eric Harper", title = "{Red Hat Linux} in Small Business", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xxv + 392", year = "1999", ISBN = "0-7645-3335-5", ISBN-13 = "978-0-7645-3335-8", LCCN = "QA76.76.O63 S469 1999", bibdate = "Fri May 25 10:59:16 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://www.loc.gov/catdir/bios/wiley044/99038069.html; http://www.loc.gov/catdir/description/wiley038/99038069.html; http://www.loc.gov/catdir/toc/wiley031/99038069.html", acknowledgement = ack-nhfb, keywords = "Linux; Operating systems (Computers)", subject = "Linux; Operating systems (Computers); Small business; Data processing", xxauthor = "Eric Harper and Paul G. Sery", } @Book{Siever:1999:LND, author = "Ellen Siever and Jessica Perry Hekman", title = "{Linux} in a nutshell: a desktop quick reference", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xiv + 612", year = "1999", ISBN = "1-56592-585-8", ISBN-13 = "978-1-56592-585-4", LCCN = "QA76.76.O63 .S4 1999; QA76.76.O63 H453 1999", bibdate = "Mon Apr 18 14:56:57 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", price = "US\$24.95", URL = "http://www.oreilly.com/catalog/9781565925854", acknowledgement = ack-nhfb, keywords = "GNU/Linux; operating systems (computers)", remark = "Rev. ed. of: Linux in a nutshell / Jessica Perry Hekman. 1997.", subject = "GNU/Linux; Operating systems (Computers)", } @Book{Smart:1999:UCO, author = "Allan Smart and Erik Ratcliffe and Tim Bird and David Bandel", title = "Using {Caldera OpenLinux}, Special Edition", publisher = pub-QUE, address = pub-QUE:adr, pages = "xxii + 1208", year = "1999", ISBN = "0-7897-2058-2", ISBN-13 = "978-0-7897-2058-0", LCCN = "A76.76.O63 U7118 1999", bibdate = "Thu Sep 21 09:56:36 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.99", acknowledgement = ack-nhfb, } @Book{Smith:1999:UCW, author = "Roderick W. Smith", title = "Using Corel WordPerfect 8 for Linux", publisher = pub-PH, address = pub-PH:adr, pages = "xiii + 841", year = "1999", ISBN = "0-7897-2032-9", ISBN-13 = "978-0-7897-2032-0", LCCN = "Z52.5.W65 S6 1999", bibdate = "Thu Jun 3 09:50:27 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Edited by Jim Minatel.", acknowledgement = ack-nhfb, keywords = "Linux (Computer file); WordPerfect (Computer file)", xxtitle = "Special edition using {WordPerfect 8} for {Linux}", } @Book{Sobell:1999:PGS, author = "Mark G. Sobell", title = "A Practical Guide to {Solaris}", publisher = pub-AW, address = pub-AW:adr, pages = "1120", year = "1999", ISBN = "0-201-89548-X", ISBN-13 = "978-0-201-89548-3", LCCN = "QA76.76.O63S5949 1999", bibdate = "Tue May 11 06:06:00 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$44.95", acknowledgement = ack-nhfb, } @Book{Stephenson:1999:BLW, author = "Neal Stephenson", title = "In the beginning \ldots{} was the command line", publisher = pub-AVON, address = pub-AVON:adr, pages = "151", year = "1999", ISBN = "0-380-81593-1", ISBN-13 = "978-0-380-81593-7", LCCN = "QA76.76.O63 S7369 1999", bibdate = "Thu Sep 21 10:13:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$10.00", acknowledgement = ack-nhfb, keywords = "BeOS; GNU/Linux; UNIX", } @Book{Stevens:1999:UNP, author = "W. Richard Stevens", title = "{UNIX} Network Programming, Interprocess Communications", volume = "2", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "xvii + 558", year = "1999", ISBN = "0-13-081081-9", ISBN-13 = "978-0-13-081081-6", LCCN = "QA76.76.O63S755 1998", bibdate = "Tue Dec 13 05:45:50 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$54.00", URL = "http://www.phptr.com/ptrbooks/ptr_0130810819.html", acknowledgement = ack-nhfb, } @Book{Taber:1999:MLS, author = "Mark Taber and Randi Roger", title = "Maximum {Linux} security: a hacker's guide to protecting your {Linux} server and network", publisher = pub-MACMILLAN-COMPUTER, address = pub-MACMILLAN-COMPUTER:adr, pages = "xvii + 743", year = "1999", ISBN = "0-672-31670-6", ISBN-13 = "978-0-672-31670-8", LCCN = "QA76.9.A25 M387 2000", bibdate = "Thu Jun 3 09:50:27 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Computer security; Linux (Computer file)", } @Book{Thiem:1999:KAD, author = "Uwe Thiem", title = "{KDE} application development", publisher = pub-NEW-RIDERS, address = pub-NEW-RIDERS:adr, pages = "xiii + 189", year = "1999", ISBN = "1-57870-201-1", ISBN-13 = "978-1-57870-201-5", LCCN = "QA76.76.A65 T4713 1999", bibdate = "Fri Dec 15 06:49:16 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.newriders.com/books/title.cfm?isbn=1578702011", acknowledgement = ack-nhfb, keywords = "Application software--Development; Graphical user interfaces (Computer systems)", } @Article{Torvalds:1999:LE, author = "Linus Torvalds", title = "The {Linux} edge", journal = j-CACM, volume = "42", number = "4", pages = "38--39", month = apr, year = "1999", bibdate = "Thu Apr 8 06:53:09 MDT 1999", bibsource = "http://www.acm.org/pubs/contents/journals/cacm/1999-42/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80/pubs/citations/journals/cacm/1999-42-4/p38-torvalds/", acknowledgement = ack-nhfb, } @Book{Toth:1999:LNS, author = "Viktor Toth", title = "{Linux}: a network solution for your office", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xxii + 512", year = "1999", ISBN = "0-672-31628-5", ISBN-13 = "978-0-672-31628-9", LCCN = "QA76.76.O63 T6778 1999", bibdate = "Thu Jun 3 09:50:27 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Edited by Grace Buechlein and Laura Bulcher.", acknowledgement = ack-nhfb, keywords = "Linux (Computer file); Small business -- Computer network", subject = "Linux; Operating systems (Computers)", xxtitle = "{Linux} as a business {OS}", } @Book{Wall:1999:LPU, author = "Kurt Wall and Mark Watson and Mark Whitis", title = "{Linux} programming unleashed", publisher = pub-PH, address = pub-PH:adr, pages = "xxiv + 818", year = "1999", ISBN = "0-672-31607-2", ISBN-13 = "978-0-672-31607-4", LCCN = "QA76.76.O63 W3573 1999", bibdate = "Thu Jun 3 09:50:27 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Edited by Brian Gill and Ron Gallagher.", acknowledgement = ack-nhfb, keywords = "Linux (Computer file)", } @Article{Wall:1999:OCL, author = "Larry Wall", title = "The origin of the camel lot in the breakdown of the bilingual {Unix}", journal = j-CACM, volume = "42", number = "4", pages = "40--41", month = apr, year = "1999", bibdate = "Thu Apr 8 06:53:09 MDT 1999", bibsource = "http://www.acm.org/pubs/contents/journals/cacm/1999-42/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org:80/pubs/citations/journals/cacm/1999-42-4/p40-wall/", acknowledgement = ack-nhfb, } @Article{Weeks:1999:WUC, author = "John Weeks", title = "Webifying {UNIX} Commands", journal = j-SYS-ADMIN, volume = "8", number = "10", pages = "49--50, 52--54, 56--57, 59--60", month = oct, year = "1999", CODEN = "SYADE7", ISSN = "1061-2688", bibdate = "Sat Sep 18 19:04:11 MDT 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.samag.com/", abstract = "Weeks explains some of the issues surrounding the use of CGI Web interfaces for UNIX command line utilities.", acknowledgement = ack-nhfb, } @Book{Wells:1999:LDK, author = "Nicholas D. Wells", title = "{Linux}! {I} Didn't Know You Could Do That\ldots{}", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xiv + 283", year = "1999", ISBN = "0-7821-2612-X", ISBN-13 = "978-0-7821-2612-9", LCCN = "QA76.76.O63 W4638 2000", bibdate = "Tue Nov 07 19:16:56 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$19.99; CAN \$29.95; UK \pounds14.99", URL = "http://scooter.sybex.com/sybexbooks.nsf/2604971535a28b098825693d0053081b/f68011722d45db5c8825693d0057f9a6?OpenDocument&Highlight=0,0-7821-2612-X", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Book{Wells:1999:STYa, author = "Nicholas Wells and R. Dean Taylor", title = "{Sams}' teach yourself {StarOffice for Linux} in 24 hours", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xvi + 505", year = "1999", ISBN = "0-672-31412-6 (paperback)", ISBN-13 = "978-0-672-31412-4 (paperback)", LCCN = "QA76.73.I57W4637 1999", bibdate = "Mon Aug 30 19:15:06 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, alttitle = "Teach yourself StarOffice for Linux in 24 hours Sams teach yourself StarOffice 5 for Linux in 24 hours", keywords = "Business -- Computer programs; Electronic spreadsheets; Linux; Word processing", } @Book{Wells:1999:STYb, author = "Nicholas Wells", title = "{Sams} teach yourself {KDE} in 24 hours", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xiii + 457", year = "1999", ISBN = "0-672-31608-0", ISBN-13 = "978-0-672-31608-1", LCCN = "QA76.9.U83 W48 1999", bibdate = "Sat Oct 21 12:00:09 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", acknowledgement = ack-nhfb, keywords = "KDE (Computer file); LINUX; Operating systems (Computers); UNIX", } @Book{Welsh:1999:RL, author = "Matt Welsh and Matthias Kalle Dalheimer and Lar Kaufman", title = "Running {Linux}", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "xix + 730", year = "1999", ISBN = "1-56592-469-X", ISBN-13 = "978-1-56592-469-7", LCCN = "QA76.76.O63 W465 1999", bibdate = "Thu Sep 21 10:07:35 2000", bibsource = "ftp://ftp.ora.com/pub/products/catalogs/book.catalog; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$34.95", URL = "http://www.oreilly.com/catalog/runux2", acknowledgement = ack-nhfb, keywords = "Linux; Operating systems (Computers)", } @Book{Winsor:1999:SRG, author = "Janice Winsor", title = "{Solaris 7} reference guide", publisher = pub-PH, address = pub-PH:adr, pages = "1551", year = "1999", ISBN = "0-13-020048-4", ISBN-13 = "978-0-13-020048-8", LCCN = "QA76.76.O63W568 1999", bibdate = "Fri Sep 10 10:20:03 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$44.99", URL = "http://www.sun.com/books/catalog/winsor9/index.html", acknowledgement = ack-nhfb, } @Book{Woo:1999:OPG, author = "Mason Woo and others", title = "{OpenGL} programming guide: the official guide to learning {OpenGL}, version 1.2", publisher = pub-AW, address = pub-AW:adr, edition = "Third", pages = "xi + 730", year = "1999", ISBN = "0-201-60458-2", ISBN-13 = "978-0-201-60458-0", LCCN = "T385 .N435 1999", bibdate = "Tue May 29 17:52:44 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Anonymous:19xx:OOS, author = "Anonymous", title = "Opening Up ``{Open Systems}'': Moving toward True Interoperability among Library Software", volume = "1", publisher = "DataResearch", address = "????", pages = "????", year = "19xx", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "DataResearch Automation Guide Series", abstract = "The topic of open systems as it relates to the needs of libraries to establish interoperability between dissimilar computer systems can be clarified by an understanding of the background and evolution of the issue. The International Standards Organization developed a model to link dissimilar computers, and this model has evolved into consensus standards. The American library community has also developed a standard for interoperability, referred to as Z39.50. An operating system called Unix, developed by AT and T, is often specified as the system that can handle future software. Although there are benefits to the standard Unix, it is less efficient than some proprietary systems, and it lacks networking standards. Today computer manufacturers are beginning to make sure that their operating systems will comply with the new Portable Operating System Information Exchange (POSIX), a new standard developed by the U.S. government. Although librarians have already established a standard for interoperability, care must be taken to insure that vendors comply with the standard. It is concluded that the library's focus should be on linking systems without becoming too concerned about the operating system that a particular system uses. A list of CISC- and RISC-based hardware and compatible operating system software is appended, and a glossary is provided. (KRN)", acknowledgement = ack-nhfb, annote = "16p. For other reports in this series, see IR 054 212-213.", availability = "EDRS Price - MF01/PC01 Plus Postage.", ericno = "ED351017", identifiers = "Open Systems Interconnection; Vendors Data Research Associates, Inc., St. Louis, MO.", majordesc = "Computer Networks; Computer Software; Equipment Standards; Information Networks; Library Networks", minordesc = "Equipment Manufacturers; Library Planning", } @Article{Alexander:2000:LIC, author = "William F. Alexander", title = "A {Linux IEEE 1394} Configuration {ROM} Decoder", journal = j-DDJ, volume = "25", number = "8", pages = "80, 82, 84", month = aug, year = "2000", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Nov 9 08:25:16 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/ftp/2000/2000_08/linx1394.txt; http://www.ddj.com/ftp/2000/2000_08/linx1394.zip", abstract = "William's DumpRom program is designed to read and decode the configuration ROM of 1394 peripherals. He presents the Linux implementation of DumpRom using an OHCI 1394 controller. Additional resources include linx1394.rtf (listings) and linx1394.zip (source code).", acknowledgement = ack-nhfb, } @Article{Annis:2000:PSU, author = "William S. Annis", title = "Pithy Sayings for the {UNIX} Sysadmin", journal = j-LOGIN, volume = "25", number = "5", pages = "??--??", month = aug, year = "2000", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 10:21:08 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/2000-8/index.html", URL = "http://www.usenix.org/publications/login/2000-8/features/pithy.html", acknowledgement = ack-nhfb, } @Article{Anonymous:2000:BRU, author = "Anonymous", title = "Book Reviews: {Unix Backup and Recovery by Charles Curley; \LaTeX{} for Linux by Ben Crowder; The XML Handbook 2nd Edition, by Daniel Lazenby; Securing Linux, by Charles Curley; Building Linux and OpenBSD Firewalls, by Ralph Krause; Linux Programming Bible by Ben Crowder}", journal = j-LINUX-J, volume = "78", pages = "??--??", month = oct, year = "2000", CODEN = "LIJOFX", ISSN = "1075-3583 (print), 1938-3827 (electronic)", bibdate = "Thu Sep 21 07:44:14 MDT 2000", bibsource = "http://noframes.linuxjournal.com/lj-issues/issue78/index.html; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://noframes.linuxjournal.com/lj-issues/issue78/3839.html; http://noframes.linuxjournal.com/lj-issues/issue78/3872.html", acknowledgement = ack-nhfb, } @Book{Anonymous:2000:CDG, author = "Anonymous", title = "{Citius Debian GNU\slash Linux 2.2}", publisher = "Investigaci{\'o}n y Desarrolo Agora", address = "Navarra, Spain", year = "2000", ISBN = "84-607-1193-5", ISBN-13 = "978-84-607-1193-3", LCCN = "????", bibdate = "Fri Dec 09 06:22:39 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "One volume and ten CD-ROMs.", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Anonymous:2000:UCB, author = "Anonymous", title = "The {UNIX CD} bookshelf [computer file]: 6 bestselling books on {CD-ROM}: {UNIX} power tools; {UNIX} in a nutshell; Learning the {UNIX} operating system; {\tt sed} and {\tt awk}; Learning the {\tt vi} editor; Learning the {Korn} shell", publisher = pub-ORA, address = pub-ORA:adr, edition = "Version 2.1.", pages = "624", month = feb, year = "2000", ISBN = "0-596-00000-6", ISBN-13 = "978-0-596-00000-4", LCCN = "QA76.76.O63", bibdate = "Mon Apr 18 14:55:05 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/; z3950.loc.gov:7090/Voyager", note = "Includes CD-ROM.", price = "US\$69.95", URL = "http://www.oreilly.com/catalog/9780596000004; http://www.oreilly.com/catalog/unixcdbs2", acknowledgement = ack-nhfb, remark = "System requirements: Solaris, Sun4 Digital UNIX, IBM AIX, HP/UX, Red Hat Linux, or SCO Unix; Java enabled browser software (such as Netscape Communicator 3.0 and higher, Internet Explorer 4.0 and higher or Lynx). Cover title. ``Covers Linux.''. ``A complete library on CD-ROM''--CD-ROM. ``6 books on CD''--Spine. UNIX in a nutshell (3rd ed.) -- Learning the vi editor (6th ed.) -- UNIX power tools (2nd ed.) -- sed and awk (2nd ed.) -- Learning the Korn shell -- Learning the UNIX operating system (4th ed.).", subject = "UNIX (Computer file); Operating systems (Computers); UNIX System V (Computer file); Utilities (Computer programs); KornShell (Computer program language); Vi; Solaris (Computer file); Text editors (Computer programs)", } @Book{Asbury:2000:ELW, author = "Steve Asbury", title = "{Enterprise Linux} at Work: How to Build 10 Distributed Applications for Your Organization", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxiii + 418", year = "2000", ISBN = "0-471-36349-9", ISBN-13 = "978-0-471-36349-1", LCCN = "QA76.76.O63 A78 2000", bibdate = "Tue Jan 09 07:16:29 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.99; CDN\$77.50", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://www.loc.gov/catdir/toc/onix06/99059493.html", acknowledgement = ack-nhfb, bookreview = "http://datamation.earthweb.com/earthweb/cda/dlink.resource-jhtml.72.949.|repository||itmanagement|content|article|2001|01|03|EMfiscolinuxreview|EMfiscolinuxreview~xml.0.jhtml?cda=true", } @Book{Baines:2000:SBB, author = "Dominic Baines", title = "{SAMBA} Black Book", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "xxiv + 582", year = "2000", ISBN = "1-57610-455-9", ISBN-13 = "978-1-57610-455-2", LCCN = "QA76.76.O63 B3446 2000", bibdate = "Sat Oct 21 15:24:20 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.99", acknowledgement = ack-nhfb, subject = "Samba (Computer file); UNIX (Computer file); Microsoft Windows (Computer file)", } @Book{Ball:2000:LU, author = "Bill Ball and David Pitts", title = "{Linux} unleashed", publisher = pub-SAMS, address = pub-SAMS:adr, edition = "Fourth", pages = "xl + 1468", year = "2000", ISBN = "0-672-31688-9", ISBN-13 = "978-0-672-31688-3", LCCN = "QA76.76.O63 B35 2000", bibdate = "Tue Oct 31 09:55:58 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{Ball:2000:SLU, author = "Bill Ball", title = "{SuSE Linux} unleashed", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xxix + 1096", year = "2000", ISBN = "0-672-31780-X", ISBN-13 = "978-0-672-31780-4", LCCN = "QA76.76.O63 B355 2000", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, annote = "CD-ROM includes SuSE Linux 6.2, Linus Power Tools and a host of Linux development tools.", keywords = "Linux; operating systems (computers)", } @Book{Banahan:2000:PLD, author = "Mike Banahan and Michael Boerner and Ian Dickson and Jonathon Kelly and Nikhilesh Kumar Mandalay and Richard Ollerenshaw and Jonathan Pinnock and Ganesh Prasad and Joel Rowbottom and Geoff Sherlock and Mark Wilcox", title = "Professional {Linux} Deployment", publisher = pub-WROX, address = pub-WROX:adr, pages = "xvii + 653", year = "2000", ISBN = "1-86100-287-4", ISBN-13 = "978-1-86100-287-7", LCCN = "QA76.76.O63 P76124 2000", bibdate = "Wed Sep 20 16:23:32 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.99", acknowledgement = ack-nhfb, } @Book{Bar:2000:LI, author = "Moshe Bar", title = "{Linux} internals", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xv + 351", year = "2000", ISBN = "0-07-212598-5", ISBN-13 = "978-0-07-212598-6", LCCN = "QA76.76.O63 B362 2000", bibdate = "Tue Mar 13 17:39:25 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Baran:2000:NVC, author = "Nicholas Baran", title = "News and Views: Computing Problem Solved; {Scalable Vecotr Graphics} Spec Released; {Intel} Announces {XScale} Microarchitecture; {Windows} Not the Only Target at {LinuxWorld}; {NIST}, Robotics Industry Move Towards Interoperability", journal = j-DDJ, volume = "25", number = "11", pages = "18--18", month = nov, year = "2000", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Nov 8 15:09:25 MST 2000", bibsource = "http://www.ddj.com/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "NUG30; quadratic assignment problem", } @Article{Baran:2000:NVE, author = "Nicholas Baran", title = "News and Views: {ERP} Can Spell Disaster; {Linux} Goes Super; Dot-com Companies Bet the Farm; The Tiniest Transistor; And Speaking of Tiny\ldots{}", journal = j-DDJ, volume = "25", number = "2", pages = "18--18", month = feb, year = "2000", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Nov 9 08:25:13 MST 2000", bibsource = "http://www.ddj.com/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ieee.org/conference/iedm", acknowledgement = ack-nhfb, keywords = "Chenming Hu; FenFet", } @Book{Beekmans:2000:LS, author = "Gerard Beekmans", title = "{Linux} from scratch", publisher = "IUniverse.com, Inc.", address = "San Jose, CA, USA", pages = "xvi + 95", year = "2000", ISBN = "0-595-13765-2", ISBN-13 = "978-0-595-13765-7", LCCN = "QA76.76.O63", bibdate = "Mon Sep 21 14:18:40 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.linuxfromscratch.org/", acknowledgement = ack-nhfb, } @Book{Bellomo:2000:MRL, author = "Michael Bellomo", title = "Master {Red Hat Linux} Visually", publisher = pub-IDG, address = pub-IDG:adr, pages = "56", year = "2000", ISBN = "0-7645-3436-X", ISBN-13 = "978-0-7645-3436-2", LCCN = "?QA76.76.O63 B44982 2000???", bibdate = "Thu Dec 21 05:20:42 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$34.99", URL = "http://catalog.idgbooks.com/product.asp?isbn=076453436X", acknowledgement = ack-nhfb, } @Book{Bialaski:2000:SLN, author = "Tom Bialaski and Michael Haines", title = "{Solaris} and {LDAP Naming Services}: Deploying {LDAP} in the Enterprise", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxvii + 372", year = "2000", ISBN = "0-13-030678-9", ISBN-13 = "978-0-13-030678-4", LCCN = "QA76.76.O63B518 2001", bibdate = "Fri Apr 11 12:03:24 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sun.com/blueprints/", note = "Part No. 806-2893-10 October 2000.", series = "Sun BluePrints Program", URL = "books/ldap.pdf; http://www.sun.com/books/catalog/haines/", abstract = "Solaris and LDAP Naming Services is a practical guide to implementing Solaris 8 native LDAP on clients and servers. Basic LDAP concepts are covered, as well as naming and authentication architectural details. This BluePrint outlines strategies for consolidating legacy directory services using LDAP technology.", acknowledgement = ack-nhfb, } @Book{Blum:2000:RQ, author = "Richard Blum", title = "Running Qmail", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xi + 540", year = "2000", ISBN = "0-672-31945-4", ISBN-13 = "978-0-672-31945-7", LCCN = "TK5105.74.Q53 B58 2000", bibdate = "Mon May 9 17:33:15 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, remark = "Systems requirements for accompanying floppy disk: FreeBSD 4.0 Install Disc-stable branch, source code for qmail 1.03, dot-forward 0.71, fastforward 0.51, and qmailanalog 0.70.", subject = "Qmail; Electronic mail systems", } @Book{Blum:2000:SLM, author = "Richard Blum", title = "{SOHO Linux} Mail Server", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "x + 526", year = "2000", ISBN = "0-672-31834-2", ISBN-13 = "978-0-672-31834-4", LCCN = "TK5105.73 .B58 2000", bibdate = "Thu Sep 21 10:24:52 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Edited by Angie Wethington, Neil Rowe, and Tony Amico.", price = "US\$34.95", acknowledgement = ack-nhfb, xxtitle = "sendmail for {Linux}", } @Book{Bovet:2000:ULK, author = "D. (Daniele) Bovet and Marco Cesati", title = "Understanding the {Linux} kernel", publisher = pub-ORA, address = pub-ORA:adr, pages = "xvi + 684", year = "2000", ISBN = "0-596-00002-2", ISBN-13 = "978-0-596-00002-8", LCCN = "QA76.76.O63 B665 2001", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{Brooksbank:2000:SAH, author = "Ed (Edward) Brooksbank and Lisa A. Doyle and George Haberberger", title = "{Samba} administrator's handbook", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xxii + 518", year = "2000", ISBN = "0-7645-4636-8", ISBN-13 = "978-0-7645-4636-5", LCCN = "QA76.9.C55 B76 2000", bibdate = "Wed May 2 06:04:27 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "client/server computing; Samba (computer file); UNIX (computer file)", } @Book{Callaghan:2000:NI, author = "Brent Callaghan", title = "{NFS} Illustrated", publisher = pub-AW, address = pub-AW:adr, pages = "xix + 513", year = "2000", ISBN = "0-201-32570-5", ISBN-13 = "978-0-201-32570-6", LCCN = "TK5105.574 .C35 2000", bibdate = "Thu Jan 18 11:39:12 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Camou:2000:DGL, author = "Mario Camou and Aaron {Von Cowenberghe}", title = "{Debian GNU/Linux 2.1} unleashed", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xxvii + 1119", year = "2000", ISBN = "0-672-31700-1", ISBN-13 = "978-0-672-31700-2", LCCN = "QA76.76.O63 C355 2000", bibdate = "Mon Apr 18 06:21:35 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Book{Carling:2000:LSA, author = "M. Carling and Stephen Degler and James T. Dennis", title = "{Linux} System Administration", publisher = pub-NEW-RIDERS, address = pub-NEW-RIDERS:adr, pages = "x + 337", year = "2000", ISBN = "0-562-05934-3", ISBN-13 = "978-0-562-05934-0", LCCN = "QA76.76.O63 C3745 2000", bibdate = "Thu Sep 21 09:58:04 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.99", acknowledgement = ack-nhfb, } @Misc{Clayton:2000:COE, author = "Richard Clayton", title = "Good Practice for Combating Unsolicited Bulk Email", howpublished = "RIPE/Demon Internet document", year = "2000", bibdate = "Thu Jan 18 11:53:28 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ripe.net/ripe/docs/ripe-206.html", acknowledgement = ack-nhfb, } @Book{Clayton:2000:STY, author = "Nik Clayton and Chris Coleman and Sue Blake", title = "{Sams} teach yourself {FreeBSD} in 21 days", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "????", year = "2000", ISBN = "0-672-31854-7", ISBN-13 = "978-0-672-31854-2", LCCN = "????", bibdate = "Sat May 17 16:58:17 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Edited by Angie Wethington, Neil Rowe, and Tony Amico.", acknowledgement = ack-nhfb, } @Book{Cockcroft:2000:CPI, author = "Adrian Cockcroft and Bill Walker", title = "Capacity Planning for {Internet} Services", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xx + 222", year = "2000", ISBN = "0-13-089402-8", ISBN-13 = "978-0-13-089402-1", LCCN = "TK5105.5.C557 2001", bibdate = "Fri Apr 11 12:03:24 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sun.com/blueprints/", note = "Part No. 806-3684-10 May 2000, Revision 01.", series = "Sun BluePrints Program", URL = "books/caphi.pdf; http://www.sun.com/books/catalog/capplan/", abstract = "Capacity planning is a well known discipline, particularly for sites that have a mainframe oriented background. The explosive growth of Internet sites and E-commerce has presented new challenges in managing performance and capacity. In many cases, time constraints and business demands can prevent normal capacity planning techniques from being applied. Classic datacenter capacity planning methods can be adjusted, and successfully applied to this new Internet-centric computing environment.", acknowledgement = ack-nhfb, } @Book{Compton:2000:VLB, author = "Jason Compton", title = "{VMware 2} for {Linux}: [a better way to run multiple operating systems on {Linux}]", publisher = "Prima Tech", address = "Rocklin, CA, USA", pages = "xxii + 406", year = "2000", ISBN = "0-7615-2764-8", ISBN-13 = "978-0-7615-2764-0", LCCN = "QA76.76.O63 C656 2000", bibdate = "Sun Apr 9 15:43:22 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers); Virtual computer systems", } @Book{CS:2000:LSA, author = "{Caldera Systems}", title = "{Caldera OpenLinux eDesktop 2.4}", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Fourth", pages = "450", year = "2000", ISBN = "0-13-088247-X", ISBN-13 = "978-0-13-088247-9", LCCN = "????", bibdate = "Tue Nov 07 06:31:55 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$59.99", URL = "http://www.phptr.com/ptrbooks/ptr_013088247X.html", acknowledgement = ack-nhfb, } @Article{Davis:2000:IWR, author = "Alan C. Davis", title = "Implementing {Web\slash RCS} under {Oracle OWS} for {UNIX}", journal = j-SYS-ADMIN, volume = "9", number = "2", pages = "8, 10, 12, 14", month = feb, year = "2000", CODEN = "SYADE7", ISSN = "1061-2688", bibdate = "Sat Mar 11 17:41:34 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.samag.com/", abstract = "Davis describes a set of extensions to the Web/RCS utility previously published in Sys Admin. He's ported Web/RCS to the Oracle Web server and added capabilities that make Web/RCS suitable for larger projects and a distributed development and test cycle.", acknowledgement = ack-nhfb, } @Book{Dent:2000:GUU, author = "Jack Dent and Tony Gaddis", title = "Guide to {UNIX}: using {Linux}", publisher = "Course Technology", address = "Cambridge, MA, USA", pages = "xiv + 552", year = "2000", ISBN = "0-7600-1096-X", ISBN-13 = "978-0-7600-1096-9", LCCN = "QA76.76.O63 D4 2000", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "UNIX (computer file)", } @Book{DeRoest:2000:SUN, author = "James W. DeRoest", title = "{Samba}: {Unix} and {NT} networking", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xv + 303", year = "2000", ISBN = "0-07-135104-3", ISBN-13 = "978-0-07-135104-1", LCCN = "QA76.76.O63 D4727 2000 Bar", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Microsoft Windows NT; operating systems (computers); Samba (computer file); UNIX (computer file)", } @Book{DeVitt:2000:SPN, author = "Don DeVitt", title = "{Solaris PC Netlink}: Performance, Sizing, and Deployment", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxxiv + 444", year = "2000", ISBN = "0-13-026686-8", ISBN-13 = "978-0-13-026686-6", LCCN = "QA76.8.S86D48 2000", bibdate = "Fri Apr 11 12:03:24 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sun.com/blueprints/", series = "Sun BluePrints Program", URL = "books/pcnlbody.pdf; http://www.phptr.com/ptrbooks/ptr_0130266868.html; http://www.sun.com/books/catalog/devitt/", abstract = "The Solaris PC NetLink Blueprint is quickly becoming the bible by which system administrators and system planners are obtaining the vital information they need to plan and implement an enterprise-capable PC NetLink Software system.\par Solaris PC NetLink Software is the latest offering from Sun to enable Sun servers to support PC Client services. Solaris servers, with PC NetLink Software installed, not only support both the file and print services that are common to all Microsoft PC operating systems, but also allow Sun Workgroup and Enterprise servers to be fully integrated into NT Domains as a Primary, or Backup Domain Controller (PDC, BDC). In addition, PC NetLink Software offers the benefit of allowing NT system administrators to manage PC NetLink Software systems using the same tools they already use to set up and maintain NT servers.\par The purpose of this book is to supply system planners and system administrators the information that allows them to install, tune and use their PC NetLink Software to its maximum functionality and performance. Server sizing information is supplied for system planners to scale their PC NetLink Software to their own PC Client environment.", acknowledgement = ack-nhfb, } @Article{DiMaggio:2000:TUD, author = "Len DiMaggio", title = "Testing {UNIX} Daemons", journal = j-DDJ, volume = "25", number = "3", pages = "38, 40, 42, 44", month = mar, year = "2000", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Nov 9 08:25:14 MST 2000", bibsource = "http://www.ddj.com/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "UNIX daemons are programs that run in the background, letting you do other work in the foreground. Len presents a ``recipe'' for testing them.", acknowledgement = ack-nhfb, } @Article{Dunham:2000:RSD, author = "Mike Dunham and Ed Schaefer", title = "Recovering Source From a Defunct {RCS} System", journal = j-SYS-ADMIN, volume = "9", number = "4", pages = "55--58", month = apr, year = "2000", CODEN = "SYADE7", ISSN = "1061-2688", bibdate = "Sat Mar 11 17:41:38 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.samag.com/", abstract = "This article presents a UNIX shell script that recovers source from a RCS data file. The script recovers the original or any succeeding version.", acknowledgement = ack-nhfb, } @Book{Duntemann:2000:ALS, author = "Jeff Duntemann", title = "Assembly language step-by-step: programming with {DOS} and {Linux}", publisher = pub-WILEY, address = pub-WILEY:adr, edition = "Second", pages = "xxv + 613", year = "2000", ISBN = "0-471-37523-3", ISBN-13 = "978-0-471-37523-4", LCCN = "QA76.73.A8 D88 2000", bibdate = "Thu Oct 31 18:25:56 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", acknowledgement = ack-nhfb, keywords = "assembler language (computer program language)", } @Book{Dutt:2000:GBG, author = "Christoph Dutt and Joachim Freiburg", title = "{GiMP: Bilder gestalten, Fotos retuschieren; [Grundlagen der professionellen Bildbearbeitung, der Umgang mit Fotos, Grafiken und Text, Bilder f?r das Internet richtig vorbereiten; auf der CD: GIMP f?r Windows, SCO Unix, Debian GNU Linux, Solaris, OS/2 und BSD, Quelltext aller GIMP- und GTK-Versionen, ?ber 300 Plug-ins in C, Perl, tcl, Phyton und Scheme, XFree86/23.3.6, GIMP User Manual als PDF-Dateien]}", publisher = "C und L", address = "B{\"o}blingen, Germany", pages = "522 + 98", year = "2000", ISBN = "3-932311-64-7", ISBN-13 = "978-3-932311-64-2", LCCN = "????", bibdate = "Tue Sep 17 07:02:55 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", acknowledgement = ack-nhfb, language = "German", } @Book{Eckstein:2000:US, author = "Robert Eckstein and David Collier-Brown and Peter Kelly", title = "Using {Samba}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xi + 398", year = "2000", ISBN = "1-56592-449-5", ISBN-13 = "978-1-56592-449-9", LCCN = "QA76.9.C55 E267 2000; TK5105.5 .E35 2000", bibdate = "Sat Oct 21 12:19:35 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM with complete mirror of Samba site with Samba 2.0.5a, including sources, documentation, binaries, and supplementary tools.", price = "US\$34.95", acknowledgement = ack-nhfb, } @Book{El-Dirghami:2000:SLI, author = "Nazeeh Amin El-Dirghami and Youssef A. Abu Kwaik", title = "{SuSE Linux} Installation and Configuration Handbook", publisher = pub-QUE, address = pub-QUE:adr, pages = "xx + 756", year = "2000", ISBN = "0-7897-2355-7", ISBN-13 = "978-0-7897-2355-0", LCCN = "QA76.76.O63 E4 2000", bibdate = "Mon May 06 06:00:40 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", price = "US\$39.99", acknowledgement = ack-nhfb, } @Article{Endler:2000:CDH, author = "Dave Endler", title = "Creating and Deploying a Honey Pot", journal = j-SYS-ADMIN, volume = "9", number = "1", pages = "8, 10, 12, 14, 16, 18, 20--22, 24", month = jan, year = "2000", CODEN = "SYADE7", ISSN = "1061-2688", bibdate = "Sat Mar 11 17:41:32 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.samag.com/", abstract = "Endler discusses the ethical and legal issues involved with deploying various types of honey pots. He describes the early beginnings of honey pots and network forensics, then recommends the hardware and software essentials for a customized UNIX honey pot.", acknowledgement = ack-nhfb, } @Article{Epplin:2000:IDH, author = "Jerry Epplin", title = "Inside {Debian Hurd}", journal = j-DDJ, volume = "25", number = "12", pages = "21--22, 24, 26", month = dec, year = "2000", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Nov 8 15:09:25 MST 2000", bibsource = "http://www.ddj.com/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Debian is a freely available operating system, currently built around on the Linux kernel, that achieves flexibility by adhering to standard POSIX interfaces. And because Debian is kernel independent, the Hurd -- a collection of servers that run on top of the microkernel -- can also be used with the Debian distribution.", acknowledgement = ack-nhfb, } @Article{Epplin:2000:IRT, author = "Jerry Epplin", title = "Inside {Real-Time Linux}", journal = j-DDJ, volume = "25", number = "3", pages = "72, 74, 76, 78", month = mar, year = "2000", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Nov 9 08:25:14 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/ftp/2000/2000_03/rtlinux.txt; http://www.ddj.com/ftp/2000/2000_03/rtlinux.zip", abstract = "Real-Time Linux is based on the same model as the NT-based systems, but, since it is freely available, doesn't have the associated cost overhead. To illustrate how you can use RTLinux, Jerry presents a data-acquisition application. Additional resources include rtlinux.txt (listings) and rtlinux.zip (source code).", acknowledgement = ack-nhfb, } @TechReport{Eranian:2000:LIP, author = "St{\'e}phane Eranian and David Mosberger", title = "The {Linux\slash ia64} Project: Kernel Design and Status Report", type = "Technical Report", number = "HPL-2000-85", institution = inst-HP, address = inst-HP:adr, year = "2000", bibdate = "Tue Nov 18 14:59:00 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.hpl.hp.com/techreports/", acknowledgement = ack-nhfb, } @Book{Flannery:2000:IH, author = "Ron Flannery", title = "The {Informix} handbook", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "lxvii + 1362", year = "2000", ISBN = "0-13-012247-5", ISBN-13 = "978-0-13-012247-6", LCCN = "QA76.73.I22 F53 2000", bibdate = "Fri Nov 07 05:21:58 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Galli:2000:DOS, author = "Doreen L. Galli", title = "Distributed Operating Systems", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xix + 463", year = "2000", ISBN = "0-13-079843-6", ISBN-13 = "978-0-13-079843-5", LCCN = "QA76.76.O63 G35 2000", bibdate = "Sat Oct 21 12:20:31 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.phptr.com/ptrbooks/esm_0130798436.html", acknowledgement = ack-nhfb, } @Book{Gay:2000:AUP, author = "Warren Gay", title = "Advanced {UNIX} programming", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xvii + 604", year = "2000", ISBN = "0-672-31990-X", ISBN-13 = "978-0-672-31990-7", LCCN = "QA76.76.O63 G3886 2000", bibdate = "Sat May 17 16:47:16 MDT 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, annote = "Contents: Part I: Files and directories. Compiler notes and options -- UNIX file system objects -- Error handling and reporting -- UNIX input and output -- File locking -- Managing files and their properties -- Directory management -- Temporary files and process cleanup -- Part II: Library functions. UNIX command-line processing -- Conversion functions -- UNIX date and time facilities -- User ID, password and group management -- Static and shared libraries -- Database library routines -- Part III: Advanced concepts. Signals -- Efficient I/O scheduling -- Timers -- Pipes and processes -- Forked processes -- Pattern matching -- Regular expressions -- Interprocess communications -- Message queues -- Semaphores -- Memory-mapped files -- X Window programming.", keywords = "operating systems (computers); UNIX (computer file)", } @Book{Gay:2000:LSP, author = "Warren W. Gay", title = "{Linux} Socket Programming by Example", publisher = pub-QUE, address = pub-QUE:adr, pages = "????", year = "2000", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Mar 13 17:41:25 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Goerzen:2000:LPB, author = "John Goerzen", title = "{Linux} Programming Bible", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "837", year = "2000", ISBN = "0-7645-4657-0", ISBN-13 = "978-0-7645-4657-0", LCCN = "QA76.76.O63 G6343 2000", bibdate = "Tue Apr 23 07:06:53 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.99", acknowledgement = ack-nhfb, } @Article{Gray:2000:PTS, author = "Bob Gray", title = "Performance Tuning with Source Code {UNIX}", journal = j-LOGIN, volume = "25", number = "2", pages = "??--??", month = apr, year = "2000", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:43:05 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/2000-4/index.html", URL = "http://www.usenix.org/publications/login/2000-4/features/performance.html", acknowledgement = ack-nhfb, } @Article{Gray:2000:SCU, author = "Bob Gray", title = "Source Code {UNIX}", journal = j-LOGIN, volume = "25", number = "1", pages = "??--??", month = feb, year = "2000", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:43:03 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/2000-2/index.html", URL = "http://www.usenix.org/publications/login/2000-2/features/sourcecode.html", acknowledgement = ack-nhfb, } @Article{Gray:2000:TOS, author = "Bob Gray", title = "Teaching Operating Systems with Source Code {UNIX}", journal = j-LOGIN, volume = "25", number = "4", pages = "??--??", month = jul, year = "2000", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 10:21:06 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/2000-7/index.html", URL = "http://www.usenix.org/publications/login/2000-7/features/teaching.html", acknowledgement = ack-nhfb, } @Book{Gregory:2000:SS, author = "Peter H. Gregory", title = "{Solaris} security", publisher = pub-PH, address = pub-PH:adr, pages = "xliii + 291", year = "2000", ISBN = "0-13-096053-5", ISBN-13 = "978-0-13-096053-5", LCCN = "QA76.9.A25G75 1999", bibdate = "Fri Apr 11 17:00:11 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.99", URL = "http://www.phptr.com/ptrbooks/ptr_0130960535.html; http://www.sun.com/books/catalog/gregory/index.html", acknowledgement = ack-nhfb, } @Book{Griffith:2000:GGP, author = "Arthur Griffith", title = "{GNOME/GTK+} Programming Bible", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xxvi + 850", year = "2000", ISBN = "0-7645-4640-6", ISBN-13 = "978-0-7645-4640-2", LCCN = "QA76.9.U83 G75 2000", bibdate = "Sat Oct 21 15:26:43 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.99", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://www.loc.gov/catdir/toc/wiley022/00101008.html", acknowledgement = ack-nhfb, subject = "Graphical user interfaces (Computer systems); Computer programming; Computer software; Development", } @Article{Grinzo:2000:PBG, author = "Lou Grinzo and Jacques Surveyer", title = "Programmer's Bookshelf: {GNU} Tools and Process Patterns", journal = j-DDJ, volume = "25", number = "12", pages = "159--160", month = dec, year = "2000", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Nov 8 15:09:25 MST 2000", bibsource = "http://www.ddj.com/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Lou takes a look at Tom Swan's GNU C++ for Linux, by (you guessed it) Tom Swan, while Jacques examines Scott Ambler's Process Patterns: Building Large Scale Systems Using Object Technology.", acknowledgement = ack-nhfb, } @Book{Hall:2000:RLD, author = "Jon Hall and Paul G. Sery", title = "{Red Hat Linux 7} for Dummies with {CDROM}", publisher = pub-IDG, address = pub-IDG:adr, pages = "xxii + 393", year = "2000", ISBN = "0-7645-0795-8", ISBN-13 = "978-0-7645-0795-3", LCCN = "QA76.76.O63 H34348 2001", bibdate = "Fri May 25 11:18:47 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.99", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://www.loc.gov/catdir/description/wiley038/00108205.html; http://www.loc.gov/catdir/toc/wiley021/00108205.html", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Book{Harvel:2000:UWH, author = "Lonnie Harvel", title = "{Unix} and {Windows 2000} handbook: planning, integration, and administration", publisher = pub-PH, address = pub-PH:adr, pages = "xvii + 679", year = "2000", ISBN = "0-13-025493-2", ISBN-13 = "978-0-13-025493-1", LCCN = "QA76.76.O63 U58 2000", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Microsoft Windows (computer file); operating systems (computers); UNIX (computer file)", } @Book{Hawkins:2000:LDR, author = "Scott Hawkins", title = "{Linux} desk reference", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxvii + 545", year = "2000", ISBN = "0-13-016391-0", ISBN-13 = "978-0-13-016391-2", LCCN = "QA76.76.O63 H386 2000", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Open source technology series", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{Hunt:2000:LDS, author = "Craig Hunt", title = "{Linux}: {DNS} Server Administration", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xxii + 423", year = "2000", ISBN = "0-7821-2736-3", ISBN-13 = "978-0-7821-2736-2", LCCN = "QA76.76.O63 H863 2000", bibdate = "Tue Apr 23 07:08:35 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.99", URL = "http://www.sybex.com/cgi-bin/rd_bookpg.pl?2736back.html", acknowledgement = ack-nhfb, } @Book{Hunt:2000:LSA, author = "Craig Hunt", title = "{Linux}: System Administration", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xxviii + 657", year = "2000", ISBN = "0-7821-2735-5", ISBN-13 = "978-0-7821-2735-5", LCCN = "A76.76.O63 S7346 2001", bibdate = "Tue Apr 23 07:08:53 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Hunt:2000:LSS, author = "Craig Hunt", title = "{Linux}: {Samba} Server Administration", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xxiii + 629", year = "2000", ISBN = "0-7821-2740-1", ISBN-13 = "978-0-7821-2740-9", LCCN = "QA76.76.O63 S58847 2001", bibdate = "Tue Apr 23 07:13:55 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "The {Craig Hunt Linux} library", acknowledgement = ack-nhfb, } @Article{Jennings:2000:JQC, author = "Mike Jennings", title = "{Java Q\&A}: Can You Write {NT} Services in {Java}?", journal = j-DDJ, volume = "25", number = "3", pages = "113--116, 118", month = mar, year = "2000", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Nov 9 08:25:14 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/ftp/2000/2000_03/jqa300.txt; http://www.ddj.com/ftp/2000/2000_03/jqa300.zip", abstract = "A service in Windows NT (or ``daemon'' in UNIX parlance) is a program that runs in the background to do a specific task. Can you write NT services in Java? Sure, and Mike shows you how. Additional resources include jqa300.txt (listings) and jqa300.zip (source code).", acknowledgement = ack-nhfb, } @Book{Jepson:2000:DAP, author = "Brian Jepson and Joan Peckham and Ram Sadasiv", title = "Database application programming with {Linux}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xii + 516", year = "2000", ISBN = "0-471-35549-6 (paperback)", ISBN-13 = "978-0-471-35549-6 (paperback)", LCCN = "QA76.9.D26 J48 2000", bibdate = "Tue Oct 31 09:55:58 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "database design; Linux", } @Book{Jones:2000:SC, author = "Floyd Jones and Solveig Haugland", title = "{StarOffice 5.2} Companion", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xix + 1121", year = "2000", ISBN = "0-13-030703-3", ISBN-13 = "978-0-13-030703-3", LCCN = "QA76.76.I57 J655 2001", bibdate = "Tue Jan 09 18:14:00 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.99", URL = "http://www.phptr.com/ptrbooks/ptr_0130307033.html; http://www.sun.com/books/catalog/jones/index.html", acknowledgement = ack-nhfb, } @Book{Juned:2000:KPE, author = "Wasim Juned and Kanwar Sidhu and Todd Green", title = "{KDE} programming by example", publisher = pub-QUE, address = pub-QUE:adr, pages = "400", year = "2000", ISBN = "0-7897-2290-9", ISBN-13 = "978-0-7897-2290-4", LCCN = "QA76.76.O63 L372 2004", bibdate = "Sat Oct 21 12:00:09 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Kirch:2000:LNA, author = "Olaf Kirch and Terry Dawson", title = "{Linux} network administrator's guide", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xxix + 474", year = "2000", ISBN = "1-56592-400-2", ISBN-13 = "978-1-56592-400-0", LCCN = "QA76.76.O63 K566 2000", bibdate = "Tue Oct 31 09:55:58 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, annote = "Revised edition of {\em Linux system administration}, 1999.", keywords = "Linux; operating systems (computers)", } @Book{Klappheck:2000:BLE, author = "G{\"u}nther Klappheck and Peter Glinsky and Frank Gehrke", title = "{Das Buch --- LINUX Edition 2000: [jetzt zur S.u.S.E. 6.4, Installation und Bedienung von LINUX und seinen Werkzeugen, LINUX im Netzwerk und Internet, LINUX und ISDN, der Desktop KDE 1.x, VMware unter LINUX]}", publisher = "Sybex", address = "D{\"u}sseldorf, Germany", pages = "xxviii + 906", year = "2000", ISBN = "3-8155-0175-X", ISBN-13 = "978-3-8155-0175-7", LCCN = "????", bibdate = "Sat Oct 14 17:21:53 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk", price = "DM 69.95", acknowledgement = ack-nhfb, language = "German", remark = "CD 1 enth.: S.u.S.E. 6.4 Evaluation version; CD 2 enth.: Linux-Tools. $5 GBV.. Nebent.: Linux - Das Buch, Edition 2000 $5 GBV.", subject = "SuSE LINUX 6.4", } @Book{Klecker:2000:DGL, author = "Joel Espy Klecker", title = "{Debian GNU-Linux 2.2 Potato}", publisher = "Alcove", address = "Madrid, Spain", year = "2000", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Fri Dec 09 06:24:46 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes four CD-ROMs", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Kofler:2000:LIC, author = "Michael Kofler", title = "{LINUX}: installation, configuration, and use", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xxv + 772", year = "2000", ISBN = "0-201-59628-8", ISBN-13 = "978-0-201-59628-1", LCCN = "QA76.76.O63 K64413 2000", bibdate = "Tue Oct 31 09:55:58 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computer)", } @Book{Komarinski:2000:CRL, author = "Mark F. Komarinski", title = "The Complete {Red Hat Linux} Training Course", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xii + 405", year = "2000", ISBN = "0-13-088223-2", ISBN-13 = "978-0-13-088223-3", LCCN = "QA76.76.O63 K6485 2000", bibdate = "Tue Nov 07 06:34:52 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$99.99", URL = "http://www.phptr.com/ptrbooks/ptr_0130882232.html", acknowledgement = ack-nhfb, } @Book{Komarinski:2000:RLA, author = "Mark (Mark F.) Komarinski and Cary Collett", title = "{Red Hat Linux} administration handbook", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "ix + 405", year = "2000", ISBN = "0-13-025395-2", ISBN-13 = "978-0-13-025395-8", LCCN = "QA76.76.O63 K6485 2000", bibdate = "Tue Oct 31 09:55:58 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Article{Kopp:2000:MCC, author = "Carlo Kopp", title = "Managing Cluster Computers", journal = j-DDJ, volume = "25", number = "7", pages = "21--26", month = jul, year = "2000", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Nov 9 08:25:16 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/ftp/2000/2000_07/cluster.txt", abstract = "A side effect of the commodification of computer hardware has been the emergence of supercomputing clusters. Carlo describes how TurboLinux's enFuzion is used to manage the Monash Parallel Parametric Modeling Engine, a cluster of Pentium/Linux-based computers. Additional resources include cluster.txt (listings).", acknowledgement = ack-nhfb, } @Book{Koskelin:2000:LG, author = "Al Koskelin", title = "{Linux} games", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "????", year = "2000", ISBN = "1-886411-33-6", ISBN-13 = "978-1-886411-33-3", LCCN = "QA76.76.O63K676 2000", bibdate = "Thu Jun 03 08:26:24 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Computer games.; Linux; Operating systems (Computers)", } @Book{Langer:2000:SCI, author = "Angelika Langer and Klaus Kreft", title = "{Standard C++ IOStreams} and locales: advanced programmer's guide and reference", publisher = pub-AW, address = pub-AW:adr, pages = "xxvi + 640", year = "2000", ISBN = "0-201-18395-1", ISBN-13 = "978-0-201-18395-5", LCCN = "QA76.73.C153 L37 2000", bibdate = "Mon Mar 20 08:50:31 MST 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.angelikalanger.com/IOStreams/errata1st.htm", acknowledgement = ack-nhfb, subject = "C++ (Computer program language)", } @Book{Leighton:2000:DRS, author = "Luke Kenneth Casson Leighton", title = "{DCE\slash RPC} over {SMB}: {Samba} and {Windows NT} domain internals", publisher = pub-NEW-RIDERS, address = pub-NEW-RIDERS:adr, pages = "xvi + 282", year = "2000", ISBN = "1-57870-150-3", ISBN-13 = "978-1-57870-150-6", LCCN = "QA76.76.O63 L44725 2000", bibdate = "Fri Dec 15 06:51:03 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.newriders.com/books/title.cfm?isbn=1578701503", price = "US\$45.00", acknowledgement = ack-nhfb, } @Book{Liberty:2000:STY, author = "Jesse Liberty and David B. Horvath", title = "{Sams} teach yourself {C++} for {Linux} in 21 days", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xxix + 1110", year = "2000", ISBN = "0-672-31895-4", ISBN-13 = "978-0-672-31895-5", LCCN = "QA76.73.C153 L526 2000", bibdate = "Tue Jun 20 18:09:08 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "C++ (Computer program language); Linux", } @Article{Lucas:2000:LUF, author = "Michael Lucas", title = "{Linux} under {FreeBSD}", journal = j-SYS-ADMIN, volume = "9", number = "1", pages = "26, 29--30, 32", month = jan, year = "2000", CODEN = "SYADE7", ISSN = "1061-2688", bibdate = "Sat Mar 11 17:41:32 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.samag.com/", abstract = "FreeBSD has several options for using software from other platforms, and BSDI, NetBSD, and OpenBSD binaries will run unmodified. Also source code from many UNIX or Linux programs can be compiled on FreeBSD without modification. Lucas explains.", acknowledgement = ack-nhfb, } @Book{Maginnis:2000:SLG, author = "Tobin Maginnis", title = "{SAIR Linux} and {GNU} certification level {I}: installation and configuration", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xix + 284", year = "2000", ISBN = "0-471-36978-0 (paperback)", ISBN-13 = "978-0-471-36978-3 (paperback)", LCCN = "QA76.3 .M3235 2000", bibdate = "Fri Dec 9 05:36:34 MST 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, remark = "Wiley computer publishing.", subject = "Electronic data processing personnel; Certification; Operating systems (Computers); Certification; Linux", } @Book{Mann:2000:LSS, author = "Scott Mann and Ellen L. Mitchell", title = "{Linux} system security: an administrator's guide to open source security tools", publisher = pub-PH, address = pub-PH:adr, pages = "xxxvii + 564", year = "2000", ISBN = "0-13-015807-0", ISBN-13 = "978-0-13-015807-9", LCCN = "QA76.76.O63 M3515 1999", bibdate = "Mon Mar 20 17:33:51 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.00", acknowledgement = ack-nhfb, } @Book{Matthew:2000:PLP, author = "Neil Matthew and Richard Stones and others", title = "Professional {Linux} programming", publisher = pub-WROX, address = pub-WROX:adr, pages = "xviii + 1155", year = "2000", ISBN = "1-86100-301-3", ISBN-13 = "978-1-86100-301-0", LCCN = "QA76.76.O63 P754 2000", bibdate = "Tue Mar 13 17:42:37 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Maxwell:2000:RLN, author = "Steven Maxwell", title = "{Red Hat Linux} network management tools", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xxviii + 683", year = "2000", ISBN = "0-07-212260-9, 0-07-212261-7 (CD-ROM), 0-07-212602-7 (CD-ROM), 0-07-212262-5 (set)", ISBN-13 = "978-0-07-212260-2, 978-0-07-212261-9 (CD-ROM), 978-0-07-212602-0 (CD-ROM), 978-0-07-212262-6 (set)", LCCN = "QA76.76.O63 M373339 2000", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, annote = "One CD-ROM contains the entire Red Hat 6.1 distribution. The other contains many of the tools discussed within the book and the Red Hat Linux 6.1 Powertools distribution.", keywords = "computer networks -- management; Linux; operating systems (computers)", } @Book{May:2000:PHP, author = "John M. May", title = "Parallel {I/O} for High Performance Computing", publisher = pub-MORGAN-KAUFMANN, address = pub-MORGAN-KAUFMANN:adr, pages = "xvii + 366", year = "2000", ISBN = "1-55860-664-5", ISBN-13 = "978-1-55860-664-7", LCCN = "QA76.88. M39 2001", bibdate = "Tue Apr 23 07:18:54 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$54.95", URL = "http://www.mkp.com/books_catalog/catalog.asp?ISBN=1-55860-664-5", acknowledgement = ack-nhfb, } @Book{Mazlakowski:2000:STY, author = "Mark Mazlakowski and Tony Butcher", title = "{Sams} Teach Yourself {MySQL} in 21 Days", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xix + 532", year = "2000", ISBN = "0-672-31914-4", ISBN-13 = "978-0-672-31914-3", LCCN = "QA76.73.S67 M328 2000", bibdate = "Mon Oct 23 17:39:04 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.99", URL = "http://www.mcp.com/sams/detail_sams.cfm?item=0672319144", acknowledgement = ack-nhfb, } @MastersThesis{McNab:2000:EUA, author = "A. David McNab", title = "Extensible {UNIX} access control lists", type = "Thesis (M.S.)", school = "University of California, Santa Cruz", address = "Santa Cruz, CA, USA", year = "2000", LCCN = "QA76.9.A25 M38 2000", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "computers -- access control; masters theses -- University of California, Santa Cruz -- computer science; UNIX (computer file)", } @Book{Meadhra:2000:KLD, author = "Michael Meadhra and Kate Wrightson and Joe Merlino", title = "{KDE} for {Linux} for dummies", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xxii, 344", year = "2000", ISBN = "0-7645-0658-7", ISBN-13 = "978-0-7645-0658-1", LCCN = "QA76.9.U83 M46 2000", bibdate = "Sat Oct 21 12:00:09 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Graphical user interfaces (Computer systems); KDE (Computer file); Linux", } @Book{Millard:2000:EPU, author = "Steven P. Millard", title = "{EnvironmentalStats} for {S-Plus}: User's Manual for {Windows} and {UNIX}, Versions 1.0 \& 1.1", publisher = "Probability, Statistics \& Information", address = "Seattle, WA, USA", pages = "x + 381", month = mar, year = "2000", LCCN = "????", bibdate = "Fri Sep 13 13:00:34 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, xxISBN = "none", } @Book{Minasi:2000:LWN, author = "Mark Minasi and Dan York and Craig Hunt", title = "{Linux} for {Windows NT\slash 2000} Administrators: The Secret Decoder Ring", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "????", year = "2000", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Sat Oct 21 15:36:59 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.sybex.com/cgi-bin/rd_bookpg.pl?2730back.html", acknowledgement = ack-nhfb, } @Article{Mondal:2000:LBU, author = "Abdul Sakib Mondal", title = "Load Balancing for {UNIX} and {Win32}", journal = j-DDJ, volume = "25", number = "7", pages = "32, 34, 36, 38--40", month = jul, year = "2000", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Nov 9 08:25:16 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/ftp/2000/2000_07/load.txt; http://www.ddj.com/ftp/2000/2000_07/load.zip; http://www.ddj.com/ftp/2000/2000_07/xyalb.zip", abstract = "In most distributed applications, the workload needs to be balanced across all available processors via software. Sakib presents XYALB, a load-balancing program that works on SunOS 4.1.1 and 4.1.3, Redhat Linux 6.5 (kernel 2.0.36), and Windows 95/NT. Additional resources include load.txt (listings) load.zip (source code), and xyalb.zip (other related files).", acknowledgement = ack-nhfb, } @Article{Mondal:2000:PAU, author = "Abdul Sakib Mondal", title = "Porting Across {UNIX} and {Win32}", journal = j-DDJ, volume = "25", number = "12", pages = "30, 32, 34, 36", month = dec, year = "2000", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Nov 8 15:09:25 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/ftp/2000/2000_12/portuw.txt; http://www.ddj.com/ftp/2000/2000_12/portuw.zip", abstract = "Even though UNIX and Win32 are the most common desktop operating systems around, applications written for one platform usually do not work on the other. Abdul ports a load-balancing application first from Sun OS to Linux, then from Linux to Win32. Additional resources include portuw.txt (listings) and portuw.zip (source code).", acknowledgement = ack-nhfb, } @Book{Nadelson:2000:COM, author = "Mark Nadelson and Thomas G. Hagan", title = "{C++} Objects for Making {UNIX} and {WinNT} Talk", publisher = "CMP Books", address = "Lawrence, KS, USA", pages = "xii + 558", year = "2000", ISBN = "1-929629-07-9", ISBN-13 = "978-1-929629-07-7", LCCN = "QA76.76.O63 N33 2000", bibdate = "Thu Oct 19 16:40:56 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.95", acknowledgement = ack-nhfb, subject = "UNIX (Computer file); Microsoft Windows NT; Software compatibility; C (Computer program language)", } @Article{Neugebauer:2000:ULP, author = "Rolf Neugebauer", title = "A {Unix}-like personality supporting quality-of-service", journal = j-OPER-SYS-REV, volume = "34", number = "2", pages = "39--39", month = apr, year = "2000", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:42 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Nieh:2000:EV, author = "Jason Nieh and Ozgur Can Leonard", title = "Examining {VMware}", journal = j-DDJ, volume = "25", number = "8", pages = "70, 72--74, 76", month = aug, year = "2000", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Nov 9 08:25:16 MST 2000", bibsource = "http://www.ddj.com/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "VMware is a virtual machine platform that provides an abstraction of x86 PC hardware so that multiple operating systems can run unmodified at the same time on a standard PC. Among other things, this means you can run Windows applications with Linux.", acknowledgement = ack-nhfb, } @Book{Paciello:2000:COM, author = "Michael G. Paciello", title = "{C++} Objects for Making {UNIX} and {Windows NT} Talk", publisher = "CMP Books", address = "????", pages = "????", year = "2000", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Sat Oct 21 11:55:07 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Parker:2000:LSA, author = "Tim Parker", title = "{Linux} system administrator's survival guide", publisher = pub-SAMS, address = pub-SAMS:adr, edition = "Second", pages = "xx + 740", year = "2000", ISBN = "0-672-31793-1", ISBN-13 = "978-0-672-31793-4", LCCN = "QA76.76.O63 P36 2000", bibdate = "Tue Oct 31 09:55:58 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux (computer operating system); operating systems (computers)", } @Book{Patsis:2000:SJS, author = "Peter Patsis and Zhonghua Wu and Xingzhi Chen", title = "Shi jian da shi: {UNIX} awk ho sed pien ch`eng p`ien. ({Chinese}) [{UNIX} awk and sed programmer's interactive workbook]", publisher = "Dian zi gong ye chu ban she", address = "Beijing, China", pages = "5 + 6 + 405", year = "2000", ISBN = "7-5053-5632-1", ISBN-13 = "978-7-5053-5632-0", LCCN = "QA76.76.O63", bibdate = "Fri Jul 01 14:57:12 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, language = "Chinese", } @Book{Petersen:2000:LCR, author = "Richard Petersen", title = "{Linux}: The Complete Reference", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, edition = "Fourth", pages = "xxxv + 1257", year = "2000", ISBN = "0-07-212940-9", ISBN-13 = "978-0-07-212940-3", LCCN = "QA76.76.O63 P523 2001", bibdate = "Fri May 25 11:02:10 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$19.99", acknowledgement = ack-nhfb, } @Book{Petersen:2000:LPR, author = "Richard Petersen", title = "{Linux} programmer's reference", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, edition = "Second", pages = "xix + 443", year = "2000", ISBN = "0-07-212355-9", ISBN-13 = "978-0-07-212355-5", LCCN = "QA76.8.U65 P484 2000", bibdate = "Thu Sep 21 10:20:39 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$19.99", acknowledgement = ack-nhfb, } @Book{Petron:2000:LER, author = "Ed Petron", title = "{Linux} essential reference", publisher = pub-NEW-RIDERS, address = pub-NEW-RIDERS:adr, pages = "xxiii + 332", year = "2000", ISBN = "0-7357-0852-5", ISBN-13 = "978-0-7357-0852-5", LCCN = "QA76.76.O63 P5286 2000", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{Pfaffenberger:2000:LCR, author = "Bryan Pfaffenberger", title = "{Linux} command reference", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "640", year = "2000", ISBN = "0-7821-2748-7", ISBN-13 = "978-0-7821-2748-5", LCCN = "QA76.76 .P435 2000", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux", } @Book{Phillips:2000:LMS, author = "Dave Phillips", title = "{Linux} Music and Sound", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "xx + 408", year = "2000", ISBN = "1-886411-34-4", ISBN-13 = "978-1-886411-34-0", LCCN = "MT723 .P53 2000", bibdate = "Fri Dec 22 06:57:56 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.95", acknowledgement = ack-nhfb, } @Book{Poniatowski:2000:UUH, author = "Marty Poniatowski", title = "{UNIX} User's Handbook", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxxix + 1366", year = "2000", ISBN = "0-13-027019-9", ISBN-13 = "978-0-13-027019-1", LCCN = "QA76.76.O63 P654 2000", bibdate = "Thu Oct 19 16:37:21 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", acknowledgement = ack-nhfb, } @Book{Powell:2000:PK, author = "Dennis E. Powell", title = "Practical {KDE}", publisher = pub-QUE, address = pub-QUE:adr, pages = "xi + 702", year = "2000", ISBN = "0-7897-2216-X", ISBN-13 = "978-0-7897-2216-4", LCCN = "QA76.9.U83 P68 2000", bibdate = "Sat Oct 21 12:00:09 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Technical editor: Bob Bernstein.", acknowledgement = ack-nhfb, } @Book{Prata:2000:UPP, author = "Stephen Prata and Donald Martin and Michael Wessler and Daniel Wilson and Mitchell Waite", title = "{UNIX} primer plus", publisher = pub-WAITE-GROUP, address = pub-WAITE-GROUP:adr, edition = "Third", pages = "x + 350", year = "2000", ISBN = "1-57169-165-0 (paperback)", ISBN-13 = "978-1-57169-165-1 (paperback)", LCCN = "QA76.6 .W3185 2000", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, annote = "Previous ed.: The Waite group's UNIX primer plus / Mitchell Waite, Donald Martin, and Stephen Prata. 2nd ed. Carmel, Ind., USA : H.W. Sams, c1990. Quick reference card inserted: The Waite Group's UNIX primer plus. Quick index to commands on p. [2] of cover, and vi reference card on p. [3] of cover.", keywords = "UNIX (computer file)", } @Book{Quigley:2000:LSE, author = "Ellie Quigley", title = "{Linux} shells by example", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xviii + 761", year = "2000", ISBN = "0-13-014711-7", ISBN-13 = "978-0-13-014711-0", LCCN = "QA76.76.O63 Q538 2000", bibdate = "Tue Oct 31 09:55:58 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{Rajagopal:2000:MOS, editor = "Raj Rajagopal", title = "Multi-Operating System Networking: Living with {UNIX}, {NetWare}, and {NT}", publisher = pub-CRC, address = pub-CRC:adr, pages = "1360 (est.)", year = "2000", ISBN = "0-8493-9831-2", ISBN-13 = "978-0-8493-9831-5", LCCN = "QA76.76.O63 M8455 2000", bibdate = "Wed Aug 01 06:06:52 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$79.95", series = "Best practices series", acknowledgement = ack-nhfb, subject = "Operating systems (Computers); Computer networks", } @Book{Rehman:2000:HCH, author = "Rafeeq Ur Rehman", title = "{HP} certified: {HP-UX} system administration", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xli + 789", year = "2000", ISBN = "0-13-018374-1", ISBN-13 = "978-0-13-018374-3", LCCN = "QA76.76.O63 R435 2000", bibdate = "Wed Oct 5 06:18:05 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "HP-UX; Operating systems (Computers)", } @Book{Robbins:2000:HUC, author = "Arnold Robbins", title = "{HP-UX}: a companion to {Unix in a Nutshell}", publisher = pub-ORA, address = pub-ORA:adr, pages = "????", year = "2000", ISBN = "1-56592-760-5", ISBN-13 = "978-1-56592-760-5", LCCN = "QA76.76.O63 R565 2000", bibdate = "Wed Oct 5 06:18:05 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "UNIX (Computer file); Operating systems (Computers)", } @Book{Ross:2000:USS, author = "Seth Ross", title = "{UNIX} system security tools", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "xviii + 444", year = "2000", ISBN = "0-07-913788-1", ISBN-13 = "978-0-07-913788-3", LCCN = "QA76.9.A25 R665 2000", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "CD-ROM contains a wide selection of UNIX tools.", series = "McGraw-Hill Unix series", acknowledgement = ack-nhfb, keywords = "computer security; UNIX (computer file)", } @Article{Salus:2000:YAUb, author = "Peter Salus", title = "20 Years Ago in {UNIX}", journal = j-LOGIN, volume = "25", number = "2", pages = "??--??", month = apr, year = "2000", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:43:05 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/2000-4/index.html", URL = "http://www.usenix.org/publications/login/2000-4/20yearsago.html", acknowledgement = ack-nhfb, } @Article{Salus:2000:YAUc, author = "Peter Salus", title = "20 Years Ago in {UNIX}", journal = j-LOGIN, volume = "25", number = "3", pages = "??--??", month = jun, year = "2000", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 06:43:07 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/2000-6/index.html", URL = "http://www.usenix.org/publications/login/2000-6/usenixnews.html#20", acknowledgement = ack-nhfb, } @Book{Sery:2000:RLN, author = "Paul G. Sery", title = "{Red Hat Linux} Network Toolkit with {CD}", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, edition = "Second", pages = "xxviii + 439", year = "2000", ISBN = "0-7645-4656-2", ISBN-13 = "978-0-7645-4656-3", LCCN = "QA76.76.O63 S4693 2000", bibdate = "Tue Apr 23 07:09:57 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; Operating systems (Computers)", } @Book{Shah:2000:LAB, author = "Steve Shah", title = "{Linux} administration: a beginner's guide", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, pages = "xxx + 542", year = "2000", ISBN = "0-07-212229-3", ISBN-13 = "978-0-07-212229-9", LCCN = "QA76.76.O63 S523 2000", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Network professional's library", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{Shah:2000:UWI, author = "Rawn Shah", title = "{UNIX} and {Windows 2000} Integration Toolkit: {A} Complete Guide for System Administrators and Developers", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxiv + 487", year = "2000", ISBN = "0-471-29354-7", ISBN-13 = "978-0-471-29354-5", LCCN = "QA76.76.O63 S524 2000", bibdate = "Wed Sep 27 06:22:01 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", price = "US\$49.99", URL = "http://www.wiley.com/compbooks/catalog/29354-7.htm; http://www.wiley.com/compbooks/shah", acknowledgement = ack-nhfb, } @Book{Siever:2000:LND, author = "Ellen Siever and others", title = "{Linux} in a nutshell: a desktop quick reference", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "xv + 797", year = "2000", ISBN = "0-596-00025-1", ISBN-13 = "978-0-596-00025-7", LCCN = "QA76.76.O63 L5459 2000", bibdate = "Thu Oct 31 18:26:15 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{Sonnenreich:2000:BLA, author = "Wes Sonnenreich and Tom Yates", title = "Building {Linux} and {OpenBSD} firewalls", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxi + 362", year = "2000", ISBN = "0-471-35366-3 (paperback)", ISBN-13 = "978-0-471-35366-9 (paperback)", LCCN = "QA76.9.A25 S66 1999", bibdate = "Fri Dec 22 07:15:45 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$44.99", URL = "http://www.wiley.com/compbooks/sonnenreich", acknowledgement = ack-nhfb, keywords = "Computer security; Linux; Operating systems (Computers)", } @Book{Spector:2000:BLC, author = "David H. M. Spector", title = "Building {Linux} clusters: scaling {Linux} for scientific and enterprise applications", publisher = pub-ORA, address = pub-ORA:adr, pages = "xviii + 332", year = "2000", ISBN = "1-56592-625-0", ISBN-13 = "978-1-56592-625-7", LCCN = "QA76.76.O63 S6647 2000", bibdate = "Mon Apr 18 14:57:22 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", note = "Includes CD-ROM with Red Hat Linux clustering software, cluster management tools and scripts, and parallel programming tools.", URL = "http://www.oreilly.com/catalog/9781565926257", acknowledgement = ack-nhfb, keywords = "application software -- development; Linux; operating systems (computers)", subject = "GNU/Linux; Operating systems (Computers); Application software; Development", } @Article{Stevens:2000:CPG, author = "Al Stevens", title = "{C} Programming: Going Undercover", journal = j-DDJ, volume = "25", number = "7", pages = "113--117", month = jul, year = "2000", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Nov 9 08:25:16 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/ftp/2000/2000_07/cprog.txt", abstract = "Al goes undercover, then chats with Richard Stallman about Free Software, Linux, and more. Additional resources include cprog.txt (listings).", acknowledgement = ack-nhfb, } @Book{Stone:2000:UFM, author = "Brad Stone and Julie Symons", title = "{UNIX} fault management: a guide for system administration", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xvi + 353", year = "2000", ISBN = "0-13-026525-X", ISBN-13 = "978-0-13-026525-8", LCCN = "QA76.76.O63 S7594 2000 Bar", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Hewlett--Packard professional books", acknowledgement = ack-nhfb, keywords = "fault-tolerant computing; UNIX (computer file)", } @Book{Stones:2000:PLP, author = "Richard Stones", title = "Professional {Linux} programming", publisher = pub-WROX, address = pub-WROX:adr, pages = "xviii + 1155", year = "2000", ISBN = "1-86100-301-3", ISBN-13 = "978-1-86100-301-0", LCCN = "QA76.76.O63 P754 2000", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; systems programming (computer science)", } @Book{Stringfellow:2000:BRP, author = "Stan Stringfellow and Miroslav Klivansky and Michael Barto", title = "Backup and Restore Practices for {Sun Enterprise} Servers", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xvi + 166", year = "2000", ISBN = "0-13-089401-X", ISBN-13 = "978-0-13-089401-4", LCCN = "QA76.9.D348 S77 2000", bibdate = "Fri Apr 11 12:03:24 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sun.com/blueprints/", note = "Part No. 806-2894-10 May 2000.", series = "Sun BluePrints Program", URL = "books/brbp.pdf; http://www.sun.com/books/catalog/stringfellow/", abstract = "Backup \& Restore Practices for Sun Enterprise Servers is a practical guide for IT organizations that are tasked with implementing or revamping a backup/restore architecture. The book includes case studies, a methodology, and example runbooks. It addresses issues such as scalability and performance of the backup/restore architecture, criteria for selecting tools and technologies, and tradeoffs that must be considered. It provides technical guidelines for planning the architecture to meet service levels, as well as general advice and guidance.", acknowledgement = ack-nhfb, } @Article{Swaine:2000:PPe, author = "Michael Swaine", title = "Programming Paradigms: Oh Behave!", journal = j-DDJ, volume = "25", number = "5", pages = "99--100, 102", month = may, year = "2000", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Nov 9 08:25:15 MST 2000", bibsource = "http://www.ddj.com/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Michael reports on Eazel, a Linux startup for Macs, and gets small with nanotechnology.", acknowledgement = ack-nhfb, } @Book{Swan:2000:TSG, author = "Tom Swan", title = "{Tom Swan}'s {GNU C++} for {Linux}", publisher = pub-QUE, address = pub-QUE:adr, pages = "xii + 831", year = "2000", ISBN = "0-7897-2153-8", ISBN-13 = "978-0-7897-2153-2", LCCN = "QA76.73.C153 S93 2000", bibdate = "Tue Oct 31 09:55:58 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM with Mandrake-Linux 6.0, X Class library for C, and the entire source code from the book.", acknowledgement = ack-nhfb, keywords = "C (computer program language); Linux; operating systems (computers) -- software", } @Book{Tansley:2000:LUS, author = "David Tansley", title = "{Linux} and {UNIX} Shell Programming", publisher = pub-AW, address = pub-AW:adr, pages = "xxiii + 504", year = "2000", ISBN = "0-201-67472-6", ISBN-13 = "978-0-201-67472-9", LCCN = "QA76.76.O63 T365 2000", bibdate = "Thu Sep 21 10:17:06 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$44.95", URL = "http://cseng.aw.com/bookpage.taf?ISBN=0-201-67472-6&ptype=3017", acknowledgement = ack-nhfb, } @Book{Vargas:2000:SCE, author = "Enrique Vargas and Joseph Bianco and David Deeths", title = "{Sun Cluster Environment: Sun Cluster 2.2}", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxx + 390", year = "2000", ISBN = "0-13-041870-6", ISBN-13 = "978-0-13-041870-8", LCCN = "QA278.V37 2001", bibdate = "Fri Apr 11 12:03:24 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sun.com/blueprints/", note = "Part No. 806-3345-10 October 2000, Revision 01.", series = "Sun BluePrints Program", URL = "books/sunmicrosystems_clusterbook.pdf; http://www.sun.com/books/catalog/vargas/index.html", abstract = "The explosive expansion of e-commerce and the ever-increasing dependency on computer services have created a global demand for server availability. This Sun BluePrints publication describes elements that affect availability and introduces best practices that promote good work practices. The information contained in this publication helps increase availability at the datacenter level or at the single-server level. The Sun Cluster 2.2 technology is explained in detail-the architecture, applications (including databases), low-end NFS servers, as well as maintenance requirements. This information can help customers apply specific product solutions to satisfy the most stringent high-availability requirements.", acknowledgement = ack-nhfb, } @Book{Vaughan:2000:GAA, author = "Gary V. Vaughan and Ben Elliston and Tom Tromey and Ian Lance Taylor", title = "{GNU} Autoconf, Automake and Libtool", publisher = pub-NEW-RIDERS, address = pub-NEW-RIDERS:adr, pages = "xx + 390", year = "2000", ISBN = "1-57870-190-2", ISBN-13 = "978-1-57870-190-2", LCCN = "QA76.76.O63 G598 2000", bibdate = "Sat Feb 24 11:27:09 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$40.00", URL = "http://sources.redhat.com/autobook/; http://sources.redhat.com/autobook/autobook/autobook_toc.html; http://sources.redhat.com/autobook/download.html; http://www.newriders.com/books/title.cfm?isbn=1578701902", acknowledgement = ack-nhfb, } @Book{Volkerding:2000:LSC, author = "Patrick Volkerding and Kevin Reichard", title = "{Linux} system commands", publisher = pub-MT, address = pub-MT:adr, pages = "xiv + 462", year = "2000", ISBN = "0-7645-4669-4", ISBN-13 = "978-0-7645-4669-3", LCCN = "QA76.76.O63 V463 2000", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{VonHagen:2000:IRL, author = "Bill Von Hagen", title = "Installing {Red Hat Linux 7}", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "198", year = "2000", ISBN = "0-672-31826-1", ISBN-13 = "978-0-672-31826-9", LCCN = "QA76.76.O63 V66 2000", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems (computers); Red Hat Linux", } @Book{Wall:2000:LPE, author = "Kurt Wall", title = "{Linux} programming by example", publisher = pub-QUE, address = pub-QUE:adr, pages = "xvii + 533", year = "2000", ISBN = "0-7897-2215-1", ISBN-13 = "978-0-7897-2215-7", LCCN = "QA76.76.O63 W357 2000", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "computer programming; Linux; operating systems (computers)", } @Book{Wayner:2000:FAH, author = "{Wayner, Peter}", title = "Free for all: how {Linux} and the free software movement undercut the high-tech titans", publisher = "Harper Business", address = "New York", pages = "viii + 340", year = "2000", ISBN = "0-06-662050-3", ISBN-13 = "978-0-06-662050-3", LCCN = "QA76.76.O63 W394 2000", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "free computer software; Linux; operating systems (computers)", } @Book{Welch:2000:PPT, author = "Brent B. Welch", title = "Practical Programming in {Tcl} \& {Tk}", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Third", pages = "lvi + 772", year = "2000", ISBN = "0-13-022028-0", ISBN-13 = "978-0-13-022028-8", LCCN = "QA76.73.T44 W45 2000", bibdate = "Wed Mar 31 12:22:06 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Widdowson:2000:DMF, author = "Liam Widdowson", title = "Deploying {Microsoft FrontPage 2000 UNIX Web} Services", journal = j-SYS-ADMIN, volume = "9", number = "2", pages = "16, 18, 21--22, 24, 27, 29--30, 32", month = feb, year = "2000", CODEN = "SYADE7", ISSN = "1061-2688", bibdate = "Sat Mar 11 17:41:34 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.samag.com/", abstract = "Microsoft offers FrontPage extensions for a wide variety of UNIX platform Web servers, however, the UNIX version lacks comprehensive documentation and if not properly implemented can lead to frustration and serious security issues. Widdowson provides information to help you secure a FrontPage Web server.", acknowledgement = ack-nhfb, } @Book{Winsor:2000:SSA, author = "Janice Winsor", title = "{Solaris} system administrator's guide", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, edition = "Third", pages = "xxxiii + 461", year = "2000", ISBN = "0-13-027702-9", ISBN-13 = "978-0-13-027702-2", LCCN = "QA76.9.M3 W56 2000", bibdate = "Fri Apr 11 17:00:21 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sun BluePrints Program", URL = "http://www.sun.com/books/catalog/winsor11/index.html", acknowledgement = ack-nhfb, } @Article{Wurmsdobler:2000:MMR, author = "Peter Wurmsdobler and Nicholas McGuire", title = "{MiniRTL}: {A} Minimal Real-Time {Linux}", journal = j-DDJ, volume = "25", number = "12", pages = "48, 50, 52, 54", month = dec, year = "2000", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Nov 8 15:09:25 MST 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/ftp/2000/2000_12/minirtl.txt", abstract = "MiniRTL, short for ``Minimum Real-time Linux,'' is a real-time Linux implementation that fits on a single floppy disk. Additional resources include minirtl.txt (listings).", acknowledgement = ack-nhfb, } @Book{Ziegler:2000:LF, author = "Robert L. (Robert Loren) Ziegler", title = "{Linux} Firewalls", publisher = pub-NEW-RIDERS, address = pub-NEW-RIDERS:adr, pages = "470", year = "2000", ISBN = "0-7357-0900-9", ISBN-13 = "978-0-7357-0900-3", LCCN = "TK5105.59 .Z54 2000", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "New Riders professional library", acknowledgement = ack-nhfb, keywords = "computers -- access control; firewalls (computer security); Linux; operating systems (computers)", } @Book{Zwicky:2000:BIF, author = "Elizabeth D. Zwicky and Simon Cooper and D. Brent Chapman", title = "Building {Internet} firewalls", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xxi + 869", year = "2000", ISBN = "1-56592-871-7", ISBN-13 = "978-1-56592-871-8", LCCN = "TK5105.59 .Z85 2000", bibdate = "Mon Apr 29 11:50:37 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, annote = "Covers Unix, Windows NT, and Linux.", keywords = "computer networks --- security measures; Internet -- security measures; Internet --- security measures; Linux; Unix; Windows NT", } @Article{Allison:2001:LLE, author = "Dennis Allison and Randy Schrickel and Reid Womack and Jeremy C. Reed and Ashley Tate and Paul Munsey", title = "Letters: Looking for Early {PPC [People's Computing Company]} People; Being Prepared for Invasion; {BetterBASIC}; {Linux} versus {BSD}; {Diffie--Hellman} to the Rescue; The Future of Programming", journal = j-DDJ, volume = "26", number = "6", pages = "10, 12", month = jun, year = "2001", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 12 17:40:37 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/", acknowledgement = ack-nhfb, } @Book{Alomari:2001:OUP, author = "Ahmed Alomari", title = "{Oracle8i} and {UNIX} Performance Tuning", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxix + 415", year = "2001", ISBN = "0-13-018706-2", ISBN-13 = "978-0-13-018706-2", LCCN = "QA76.9.D3 A519 2001", bibdate = "Sat May 26 07:58:49 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", price = "US\$49.99", series = "Prentice Hall PTR Oracle series", URL = "http://www.phptr.com/ptrbooks/ptr_0130187062.html", acknowledgement = ack-nhfb, subject = "Oracle (Computer file); Relational databases; UNIX (Computer file)", } @Book{Anderson:2001:FOS, author = "Annelise Anderson", title = "{FreeBSD}: an open-source operating system for your personal computer", publisher = "Bit Tree Press", address = "Portola Valley, CA, USA", pages = "xx + 423", year = "2001", ISBN = "0-9712045-1-9", ISBN-13 = "978-0-9712045-1-5", LCCN = "QA76.76.O63 A49 2001", bibdate = "Sat May 17 16:53:21 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", URL = "http://www.bittreepress.com/FreeBSD/introbook/", acknowledgement = ack-nhfb, remark = "CD-ROM is release 4.4 and virtually identical to the first CD-ROM in the set of four sold by Wind River Systems. Includes the complete FreeBSD operating system and source code, the X Window System, and many third-party software programs ready to install.", subject = "FreeBSD; Free computer software; Operating systems (Computers)", } @Book{Aulds:2001:LAW, author = "Charles Aulds", title = "{Linux Apache Web} server administration", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xxiii + 615", year = "2001", ISBN = "0-7821-2734-7", ISBN-13 = "978-0-7821-2734-8", LCCN = "TK5105.8885.A63 A95 2001", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "The Craig Hunt Linux library", acknowledgement = ack-nhfb, keywords = "Apache (computer file: Apache group); client/server computing; Linux", } @Book{Bandel:2001:SEU, author = "David A. (David Allan) Bandel and Robert Napier", title = "Special edition using {Linux}", publisher = pub-QUE, address = pub-QUE:adr, edition = "Sixth", pages = "xv + 817", year = "2001", ISBN = "0-7897-2543-6", ISBN-13 = "978-0-7897-2543-1", LCCN = "QA76.76.O63 B3625 2001", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{Bar:2001:LFS, author = "Moshe Bar", title = "{Linux} file systems", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, pages = "xiv + 348", year = "2001", ISBN = "0-07-212955-7 (set), 0-07-212954-9 (book), 0-07-212953-0 (CD-ROM)", ISBN-13 = "978-0-07-212955-7 (set), 978-0-07-212954-0 (book), 978-0-07-212953-3 (CD-ROM)", LCCN = "QA76.76.O63 B3626 2001", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", series = "Network professional's library", acknowledgement = ack-nhfb, keywords = "information storage and retrieval systems -- handbooks, manuals, etc; Linux; operating systems (computers) -- handbooks, manuals, etc", } @Article{Baran:2001:NVW, author = "Nicholas Baran", title = "News and Views: {WSDL} Goes to {W3C} for Standardization; Shortchanging Science; {EUVL} May Keep {Moore's Law} Going; Spy Satellites to Generate High-Tech Jobs; {Mexican} Government Adopts {Linux}; Supercomputer on a Chip in the Works; Brain Scan Database Goes Public", journal = j-DDJ, volume = "26", number = "6", pages = "18--18", month = jun, year = "2001", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Jun 7 06:07:16 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/", acknowledgement = ack-nhfb, } @Book{Barkakati:2001:RLS, author = "Nabajyoti Barkakati", title = "{Red Hat Linux 7.1} secrets", publisher = "Hungry Minds", address = "Indianapolis, IN", pages = "xxxiv + 1135", year = "2001", ISBN = "0-7645-4771-2 (paperback)", ISBN-13 = "978-0-7645-4771-3 (paperback)", LCCN = "QA76.76.O63 B366166 2001", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{Barrett:2001:SSS, author = "Daniel J. Barrett and Richard E. Silverman", title = "{SSH}: The {Secure Shell}: The Definitive Guide", publisher = pub-ORA, address = pub-ORA:adr, pages = "xv + 540", year = "2001", ISBN = "0-596-00011-1", ISBN-13 = "978-0-596-00011-0", LCCN = "QA76.76.O63 B369 2001", bibdate = "Mon Apr 18 15:01:35 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", price = "US\$39.95", URL = "http://www.oreilly.com/catalog/sshtdg/; http://www.snailbook.com/", acknowledgement = ack-nhfb, subject = "UNIX Shells; Data encryption (Computer science); Computer networks; Security measures", } @Book{Bialaski:2001:SLN, author = "Tom Bialaski and Michael Haines", title = "{Solaris} and {LDAP} Naming Services: Deploying {LDAP} in the Enterprise", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxvii + 372", year = "2001", ISBN = "0-13-030678-9", ISBN-13 = "978-0-13-030678-4", LCCN = "QA76.76.O63 B518 2001", bibdate = "Sat May 26 08:03:32 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.00", URL = "http://www.phptr.com/ptrbooks/ptr_0130306789.html; http://www.sun.com/books/catalog/haines/index.html", acknowledgement = ack-nhfb, } @Book{Blum:2001:P, author = "Richard Blum", title = "Postfix", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xix + 593", year = "2001", ISBN = "0-672-32114-9", ISBN-13 = "978-0-672-32114-6", LCCN = "TK5105.73 .B578 2001", bibdate = "Fri Oct 17 10:25:21 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "EUR\$56.65", acknowledgement = ack-nhfb, keywords = "e-mail; MySQL; OpenLDAP; Postfix", } @Article{Boling:2001:EHK, author = "Eli Boling and Chuck Jazdzewski", title = "Exception Handling In {Kylix}: Matching up {Object Pascal}, {Linux}, and exception handling", journal = j-DDJ, volume = "26", number = "11", pages = "66, 68--71", month = nov, year = "2001", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 12 05:21:40 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/ftp/2001/2001_11/kylix.txt", abstract = "Kylix brings Borland's Delphi toolset and environment from Windows to Linux. And one of the most challenging aspects of the port involved exception handling. Additional resources include {\tt kylix.txt} (listings).", acknowledgement = ack-nhfb, } @Book{Boloni:2001:PKC, author = "Lotzi B{\"o}l{\"o}ni", title = "Programming {KDE 2.0}: Creating {Linux} Desktop Applications", publisher = "CMP Books", address = "Lawrence, KS", pages = "ix + 265", year = "2001", ISBN = "1-929629-13-3", ISBN-13 = "978-1-929629-13-8", LCCN = "QA76.9.U83B65 2001", bibdate = "Fri Nov 01 05:49:20 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", price = "US\$49.95", acknowledgement = ack-nhfb, } @Book{Born:2001:VWP, author = "G{\"u}nter Born", title = "{VMware Workstation Praxisf{\"u}hrer: Installation, Konfiguration, Anwendung unter Windows und Linux}", publisher = "SuSE-PRESS", address = "N{\"u}rnberg, Germany", pages = "xxii + 372", year = "2001", ISBN = "3-934678-81-5", ISBN-13 = "978-3-934678-81-1", LCCN = "????", bibdate = "Sat Oct 14 17:21:53 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk", price = "DM 79.00, EUR 40.00", acknowledgement = ack-nhfb, language = "German", subject = "VMware Workstation", } @Book{Bovet:2001:ULK, author = "Daniel P. (Daniel Pierre) Bovet and Marco Cesati", title = "Understanding the {Linux Kernel}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xvi + 684", year = "2001", ISBN = "0-596-00002-2", ISBN-13 = "978-0-596-00002-8", LCCN = "QA76.76.O63 B665 2001; QA76.76.O63 B674 2001; QA76.76.O63 B683 2001", bibdate = "Mon Apr 18 15:01:28 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.oreilly.com/catalog/9780596000028", acknowledgement = ack-nhfb, keywords = "GNU/Linux; Linux; operating systems (computers)", subject = "GNU/Linux; Operating systems (Computers)", } @Book{Bucki:2001:MX, author = "Lisa Bucki", title = "{Mac OS X}", publisher = pub-PRIMA, address = pub-PRIMA:adr, pages = "xvi + 368", year = "2001", ISBN = "0-7615-1984-X (paperback)", ISBN-13 = "978-0-7615-1984-3 (paperback)", LCCN = "QA76.8.M3 B83 2001 Computer", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Fast and easy", acknowledgement = ack-nhfb, keywords = "Mac OS; Macintosh (computer); operating systems (computers)", } @Book{Burleson:2001:UOD, author = "Donald K. Burleson", title = "{Unix} for {Oracle DBAs}: pocket reference", publisher = pub-ORA, address = pub-ORA:adr, pages = "v + 104", year = "2001", ISBN = "0-596-00066-9", ISBN-13 = "978-0-596-00066-0", LCCN = "QA76.9.D3 B8754 2001", bibdate = "Mon Apr 18 15:02:14 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.oreilly.com/catalog/9780596000660", acknowledgement = ack-nhfb, keywords = "Oracle (computer file); relational databases; UNIX (computer file)", remark = "``Command syntax and scripts'' --- cover.", subject = "UNIX (Computer file); Oracle (Computer file); Relational databases", } @Book{Chandra:2001:PPO, author = "Rohit Chandra and Leonardo Dagum and David Kohr and Dror Maydan and Jeff McDonald and Ramesh Menon", title = "Parallel Programming in {OpenMP}", publisher = pub-MORGAN-KAUFMANN, address = pub-MORGAN-KAUFMANN:adr, pages = "xvi + 230", year = "2001", ISBN = "1-55860-671-8", ISBN-13 = "978-1-55860-671-5", LCCN = "QA76.642 .P38 2001", bibdate = "Thu Jul 14 11:09:17 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/multithreading.bib; http://www.math.utah.edu/pub/tex/bib/pvm.bib; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.95", URL = "http://www.mkp.com/books_catalog/catalog.asp?ISBN=1-55860-671-8", acknowledgement = ack-nhfb, keywords = "parallel programming (computer science)", } @Article{Cochran:2001:NVI, author = "Shannon Cochran", title = "News and Views: {ICFP} Programming Contest Concludes; Lost Moon Landing Tape Recovered; {W3C} Patent Controversy; The {UNIX} Epoch; Connecting the Quantum Dots; {Programmer's Guild} Launches Membership Campaign", journal = j-DDJ, volume = "26", number = "12", pages = "20--20", month = dec, year = "2001", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 12 05:21:41 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/", acknowledgement = ack-nhfb, } @Article{Cochran:2001:NVL, author = "Shannon Cochran", title = "News and Views: {Linux Standard Base 1.0} Released; Now Everyone Knows You're a Dog; Maximum Fiberoptic Capacity Calculated; Mass Producing Quantum Chips; Mo' Better Batteries; Patenting the Software Service Model", journal = j-DDJ, volume = "26", number = "10", pages = "18--18", month = oct, year = "2001", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 12 05:21:40 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/", acknowledgement = ack-nhfb, } @Article{Cochran:2001:NVW, author = "Shannon Cochran", title = "News and Views: {WEP} [Wired Equivalent Privacy]: Pining for the Fjords?; Bye Bye {Be}; {UNIX} Utilities Open Sourced; Cosmology Computer Calculates Creation; {UML 2.0} Infrastructure Proposals", journal = j-DDJ, volume = "26", number = "11", pages = "18--18", month = nov, year = "2001", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 12 05:21:40 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/", acknowledgement = ack-nhfb, } @Book{Crowcroft:2001:TIL, author = "Jon Crowcroft and Iain Phillips", title = "{TCP\slash IP} and the {Linux} protocol implementation: systems code for the {Linux Internet}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "925", year = "2001", ISBN = "0-471-40882-4", ISBN-13 = "978-0-471-40882-6", LCCN = "TK5105.585 .T34 2001", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Wiley Networking Council series", acknowledgement = ack-nhfb, keywords = "Internet; Linux; TCP/IP (computer network protocol)", } @Book{Danesh:2001:MCL, author = "Arman Danesh", title = "Mastering {Corel Linux}", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xxix + 734", year = "2001", ISBN = "0-7821-2852-1", ISBN-13 = "978-0-7821-2852-9", LCCN = "QA76.76.O63 D3429 2001", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes index", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{Danesh:2001:ML, author = "Arman Danesh and Michael H. Jang", title = "Mastering {Linux}", publisher = pub-SYBEX, address = pub-SYBEX:adr, edition = "Second", pages = "xxxv + 955", year = "2001", ISBN = "0-7821-2915-3", ISBN-13 = "978-0-7821-2915-1", LCCN = "QA76.76.O63 D3428 2001", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{Danesh:2001:SLG, author = "Arman Danesh and James Russell and Richard Petersen", title = "{SAIR Linux} \& {GNU} certified administrator: exam guide", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, pages = "xxv + 1008", year = "2001", ISBN = "0-07-213205-1", ISBN-13 = "978-0-07-213205-2", LCCN = "QA76.76.O63 D342855 2001", bibdate = "Mon Apr 29 15:50:05 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://www.loc.gov/catdir/description/mh022/2002277480.html; http://www.loc.gov/catdir/toc/mh021/2002277480.html", acknowledgement = ack-nhfb, subject = "Electronic data processing personnel; Certification; Operating systems (Computers); Examinations; Study guides; Linux; Examinations; Study guides", } @Book{Das:2001:YUU, author = "Sumitabha Das", title = "Your {UNIX}: the ultimate guide", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, pages = "liv + 918", year = "2001", ISBN = "0-07-240500-7 (paperback)", ISBN-13 = "978-0-07-240500-2 (paperback)", LCCN = "QA76.76.O63 D3495 2001", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Book{Dean:2001:LLC, author = "Jeffrey Dean", title = "{LPI Linux} certification in a nutshell: a desktop quick reference", publisher = pub-ORA, address = pub-ORA:adr, pages = "xvi + 551", month = may, year = "2001", ISBN = "1-56592-748-6", ISBN-13 = "978-1-56592-748-3", LCCN = "QA76.76.O63 D435 2001", bibdate = "Mon Apr 18 14:58:44 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/; z3950.loc.gov:7090/Voyager", note = "Covers exams 101 and 102 for LPI level 1.", price = "US\$39.95", series = "Nutshell handbook", URL = "http://www.oreilly.com/catalog/9781565927483; http://www.oreilly.com/catalog/lpicertnut", acknowledgement = ack-nhfb, keywords = "electronic data processing personnel -- certification; Linux; Linux Professional Institute Linux certification in a nutshell; operating systems (computers) -- certification study guides", remark = "Covers exams 101 and 102 for LPI level 1.", subject = "GNU/Linux; Electronic data processing personnel; Certification; Operating systems (Computers); Certification; Study guides", } @Book{DuBois:2001:MPW, author = "Paul DuBois", title = "{Mysql} and perl for the {Web}", publisher = pub-NEW-RIDERS, address = pub-NEW-RIDERS:adr, pages = "xvi + 520", year = "2001", ISBN = "0-7357-1054-6", ISBN-13 = "978-0-7357-1054-2", LCCN = "QA76.73.S67 D585 2002", bibdate = "Tue Apr 23 07:19:34 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Edited by Stephanie Wall, Gina Brown, and Chris Zahn.", acknowledgement = ack-nhfb, } @Book{Elboth:2001:LB, author = "David Elboth", title = "The {Linux} Book", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxii + 501", year = "2001", ISBN = "0-13-032765-4", ISBN-13 = "978-0-13-032765-9", LCCN = "QA76.76.O63 E42 2001", bibdate = "Sat May 26 07:44:31 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$34.99", acknowledgement = ack-nhfb, } @Book{Elling:2001:DES, author = "Richard Elling and Tim Read", title = "Designing Enterprise Solutions with {Sun Cluster 3.0}", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxviii + 270", year = "2001", ISBN = "0-13-008458-1", ISBN-13 = "978-0-13-008458-3", LCCN = "TK5105.52.E45 2002", bibdate = "Fri Apr 11 12:03:24 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sun.com/blueprints/", series = "Sun BluePrints Program", URL = "books/SC3_0.pdf; http://www.sun.com/books/catalog/elling/", abstract = "This new book is an introduction to architecting highly available systems with Sun servers, storage, and the Sun Cluster 3.0 software. Three recurring themes are used throughout the book: failures, synchronization, and arbitration. These themes occur throughout all levels of systems design. The first chapter deals with understanding these relationships and recognizing failure modes associated with synchronization and arbitration. The second and third chapters review the building blocks and describe the Sun Cluster 3.0 software environment in detail.", acknowledgement = ack-nhfb, } @Book{Feiler:2001:MXC, author = "Jesse Feiler", title = "{Mac OS X}: the complete reference", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, pages = "xxxv + 763", year = "2001", ISBN = "0-07-212663-9", ISBN-13 = "978-0-07-212663-1", LCCN = "QA76.76.O63 F43 2001 Computer", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Mac OS; Mac OS (computer file); Macintosh (computer); operating systems (computers)", } @Book{Gagne:2001:LSA, author = "Marcel Gagn{\'e}", title = "{Linux} System Administration --- {A} User's Guide", publisher = pub-AW, address = pub-AW:adr, pages = "xxi + 532", year = "2001", ISBN = "0-201-71934-7", ISBN-13 = "978-0-201-71934-5", LCCN = "QA76.76.O63 G34 2002", bibdate = "Tue Apr 23 06:46:53 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Garg:2001:TOA, author = "Rajat P. Garg and Ilya Sharapov", title = "Techniques for Optimizing Applications: High Performance Computing", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xliv + 616", year = "2001", ISBN = "0-13-093476-3", ISBN-13 = "978-0-13-093476-5", LCCN = "QA76.88 .G37 2002", bibdate = "Fri Apr 11 12:03:24 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sun.com/blueprints/", note = "Part No. 806-6380-10 June 2001, Revision 01.", series = "Sun BluePrints Program", URL = "books/apt.pdf; http://www.sun.com/books/catalog/garg.html/index.html", abstract = "This BluePrint is a practical guide to performance optimization of computationally intensive programs on Sun UltraSPARC platforms. It is primarily intended for developers of technical or high performance computing (HPC) applications for the Solaris operating environment. This audience includes both independent software vendor (ISV) developers and noncommercial developers. It can also be used by end-users of HPC applications to help them better understand how applications utilize system resources.\par The book presents information so that it follows logical stages of the process for application development and optimization. Authors Garg and Shapov pay special attention to issues related to parallel applications and to using appropriate performance measurement tools. Wherever applicable, sections are illustrated with code examples that show benefits of methods described.\par Unless otherwise noted, topics in this book are not limited to a particular programming language, parallelization method, software version, or hardware product. However, emphasis is on techniques relevant to applications written in Fortran 77, Fortran 90, and C, because these languages are most commonly used in HPC and technical applications. Most topics can be applied to C++ programs; however, the authors do not address performance optimization issues specific to object-oriented programming.", acknowledgement = ack-nhfb, } @MastersThesis{Gatwood:2001:CCL, author = "David A. Gatwood", title = "Cleaning the cleaner for the {Linux} log-structured file system", type = "Thesis ({M.S.})", school = "University of California, Santa Cruz", address = "Santa Cruz, CA, USA", year = "2001", LCCN = "QA76.76.O63 G39 2001", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "academic dissertations -- University of California, Santa Cruz -- computer science; database management; Linux (computer operating systems); operating systems (computers)", } @Article{Gray:2001:LTF, author = "Bob Gray", title = "A Logging and Tracing Facility for an Embedded Source Code {UNIX} Product", journal = j-LOGIN, volume = "26", number = "2", pages = "??--??", month = apr, year = "2001", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 10:51:58 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/2001-04/index.html", URL = "http://www.usenix.org/publications/login/2001-04/pdfs/gray.pdf", acknowledgement = ack-nhfb, } @Book{Greenspan:2001:MPD, author = "Jay Greenspan and Brad Bulger", title = "{MySQL\slash PHP} applications", publisher = pub-MT, address = pub-MT:adr, pages = "xxi + 596", year = "2001", ISBN = "0-7645-3537-4 (paperback)", ISBN-13 = "978-0-7645-3537-6 (paperback)", LCCN = "QA76.73.S67 G73 2001", bibdate = "Fri Oct 24 15:17:21 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Professional mindware", URL = "http://www.loc.gov/catdir/bios/wiley044/00053995.html; http://www.loc.gov/catdir/description/wiley038/00053995.html; http://www.loc.gov/catdir/toc/wiley021/00053995.html", acknowledgement = ack-nhfb, remark = "System requirements for accompanying computer disc: PC running Windows 95 or later, Windows NT 4 or later, Linux or Unix.", subject = "SQL (Computer program language); PHP (Computer program language); Web databases", } @Book{Griffith:2001:KQP, author = "Arthur Griffith", title = "{KDE\slash QT} programming bible", publisher = pub-IDG-WORLDWIDE, address = pub-IDG-WORLDWIDE:adr, pages = "xxv + 753", year = "2001", ISBN = "0-7645-4682-1", ISBN-13 = "978-0-7645-4682-2", LCCN = "QA76.73.C153 .G7426 2001", bibdate = "Sat Oct 21 12:00:09 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "C++ (Computer program language); Graphical user interfaces (Computer systems); Linux", } @Article{Grinzo:2001:PBP, author = "Lou Grinzo", title = "Programmer's Bookshelf: {Professional Linux Programming}", journal = j-DDJ, volume = "26", number = "4", pages = "151--152", month = apr, year = "2001", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Mar 13 15:22:36 MST 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/", abstract = "This month, Lou takes a look at Professional Linux Programming, by Neil Matthew, Richard Stones, and others.", acknowledgement = ack-nhfb, } @Book{Habraken:2001:SCH, author = "Joe Habraken", title = "{StarOffice 5.2} Calc Handbook", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xix + 346", year = "2001", ISBN = "0-13-029389-X", ISBN-13 = "978-0-13-029389-3", LCCN = "HF5548.2", bibdate = "Fri Apr 11 17:01:38 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.99", series = "Sun BluePrints Program", URL = "http://www.phptr.com/ptrbooks/ptr_013029389X.html; http://www.sun.com/books/catalog/habraken/index.html", acknowledgement = ack-nhfb, } @Book{Hall:2001:JLG, author = "Michael Hall and Brian Proffitt", title = "The joy of {Linux}: a gourmet guide to open source", publisher = pub-PRIMA, address = pub-PRIMA:adr, pages = "340", year = "2001", ISBN = "0-7615-3151-3", ISBN-13 = "978-0-7615-3151-7", LCCN = "QA76.76.O63 H34354 2001", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; linux; operating systems (computers)", } @Book{Hancock:2001:TUF, author = "Steven M. Hancock", title = "{Tru64 Unix} file system administration handbook", publisher = pub-DP, address = pub-DP:adr, pages = "xxvii + 533", year = "2001", ISBN = "1-55558-227-3 (paperback)", ISBN-13 = "978-1-55558-227-2 (paperback)", LCCN = "QA76.76.O63 H34465 2001", bibdate = "Tue May 29 17:56:01 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "file organization (computer science); operating systems (computers); UNIX (computer file)", } @Book{Hart:2001:MXW, author = "David L. Hart", title = "{Mac OS X Web} server handbook", publisher = pub-PH, address = pub-PH:adr, pages = "xxvi + 395", year = "2001", ISBN = "0-13-032715-8", ISBN-13 = "978-0-13-032715-4", LCCN = "QA76.76.O63 H3555 2001", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Mac OS; Macintosh (computer); operating systems (computers); web servers", } @Book{Hatch:2001:HLE, author = "Brian Hatch and James Lee and George Kurtz", title = "Hacking {Linux} exposed: {Linux} security secrets and solutions", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, pages = "xxx + 566", year = "2001", ISBN = "0-07-212773-2", ISBN-13 = "978-0-07-212773-7", LCCN = "QA76.76.O63 H377 2001", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "computer security; Linux; linux (computer file)", } @Book{Howard:2001:BDM, author = "John S. Howard", title = "Boot Disk Management: {A} Guide for the {Solaris} Operating System", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xvi + 204", year = "2001", ISBN = "0-13-062153-6", ISBN-13 = "978-0-13-062153-5", LCCN = "QA76.76.O63H687 2002", bibdate = "Fri Apr 11 12:03:24 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sun.com/blueprints/", note = "Part No. 816-0240-10 December, 2001.", series = "Sun BluePrints Program", URL = "books/BootDisk.pdf; http://www.sun.com/books/catalog/bootdisk/; http://www.sun.com/books/catalog/howardbp/", abstract = "This new book examines the life cycle of the Solaris Operating Environment (OE) and its boot disk. Recommendations and methods for selecting hardware and partitioning the Solaris OE boot disk are presented in detail. Additionally, this book provides recommendations for installing the Solaris OE, as well as recommendations for managing Solaris OE upgrades with Live Upgrade.", acknowledgement = ack-nhfb, } @Book{Howard:2001:JTE, author = "John S. Howard and Alex Noordergraaf", title = "{JumpStart} Technology: Effective Use in the {Solaris} Operating Environment", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xvii + 259", year = "2001", ISBN = "0-13-062154-4", ISBN-13 = "978-0-13-062154-2", LCCN = "????", bibdate = "Fri Apr 11 12:03:24 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sun.com/blueprints/", note = "Part No. 806-6872-10 September 2001, Revision 01", series = "Sun BluePrints Program", URL = "books/js.pdf; http://www.sun.com/books/catalog/howard/", abstract = "This Sun BluePrints book provides techniques on using the JumpStart technology for automated, standardized, and secure installations of the Solaris Operating Environment. In addition, detailed examples of using the JumpStart technology effectively on a day-to-day basis are provided in combination with never before documented features and functions. The materials on the included CD contain the Solaris Security Toolkit (formerly known as `JASS') and examples referenced in the book.", acknowledgement = ack-nhfb, } @Book{Hsiao:2001:STY, author = "Aron Hsiao", title = "{Sams} teach yourself {Linux} Security basics in 24 hours", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xv + 412", year = "2001", ISBN = "0-672-32091-6 (paperback)", ISBN-13 = "978-0-672-32091-0 (paperback)", LCCN = "QA76.76.O63 H755 2001", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "computer security; Linux; operating systems (computers)", } @Book{Hughes:2001:PDC, author = "Sterling Hughes and Andrei Zmievski", title = "{PHP} developer's cookbook", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xvii + 505", year = "2001", ISBN = "0-672-31924-1", ISBN-13 = "978-0-672-31924-2", LCCN = "QA76.73.P224 H84 2001", bibdate = "Wed Jan 28 13:17:31 MST 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "PHP (Computer program language)", } @Book{Hunt:2001:LAW, author = "Craig Hunt", title = "{Linux}: {Apache Web} Server Administration", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xxiii + 615", year = "2001", ISBN = "0-7821-2734-7", ISBN-13 = "978-0-7821-2734-8", LCCN = "TK5105.8885.A63 A95 2001", bibdate = "Tue Apr 23 07:08:13 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "The {Craig Hunt Linux} library", acknowledgement = ack-nhfb, } @Article{Kelly-Bootle:2001:PMDb, author = "Stan Kelly-Bootle", title = "Post-Mortem Debunker: Reply {ALL}", journal = j-CCCUJ, volume = "19", number = "3", pages = "96--??", month = mar, year = "2001", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:30 MDT 2002", bibsource = "http://www.cuj.com/articles/2001/0103/0103toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Somebody let Stan off the plane in New Orleans, ostensibly to cover a Unix conference. Here is his report, complete with a bit of (ahem) cultural commentary.", acknowledgement = ack-nhfb, } @Book{Langer:2001:MX, author = "Maria Langer", title = "{Mac OS X}", publisher = pub-PEACHPIT, address = pub-PEACHPIT:adr, pages = "xiii + 247", year = "2001", ISBN = "0-201-70900-7", ISBN-13 = "978-0-201-70900-1", LCCN = "QA76.76.O63 L3626 2001", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Visual quickstart guide", acknowledgement = ack-nhfb, keywords = "Mac OS; Macintosh (computer); operating systems (computers)", } @Book{Lewis:2001:SWH, author = "Nancy D. Lewis", title = "{StarOffice 5.2} Writer Handbook", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xix + 410", year = "2001", ISBN = "0-13-029386-5", ISBN-13 = "978-0-13-029386-2", LCCN = "QA76.76.I57 W37 2001", bibdate = "Sat May 26 08:05:56 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.99", series = "Sun BluePrints Program", URL = "http://www.phptr.com/ptrbooks/ptr_0130293865.html; http://www.sun.com/books/catalog/warner/index.html", acknowledgement = ack-nhfb, xxauthor = "Nancy D. Warner", } @TechReport{Li:2001:LLF, author = "Ren-Cang Li and Peter Markstein and Jon P. Okada and James W. Thomas", title = "The {\tt libm} library and floating-point arithmetic for {HP-UX} on {Itanium}", type = "Technical report", institution = inst-HP, address = inst-HP:adr, pages = "??", month = apr, year = "2001", bibdate = "Fri Jun 24 20:12:09 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://h21007.www2.hp.com/dspp/ddl/ddl_Download_File_TRX/1,1249,942,00.pdf; http://h21007.www2.hp.com/dspp/tech/tech_TechDocumentDetailPage_IDX/1,1701,981,00.html", acknowledgement = ack-nhfb, } @Book{Lombardo:2001:EL, author = "John Lombardo", title = "Embedded {Linux}", publisher = pub-NEW-RIDERS, address = pub-NEW-RIDERS:adr, pages = "xxvii + 192", year = "2001", ISBN = "0-7357-0998-X", ISBN-13 = "978-0-7357-0998-0", LCCN = "QA76.76.O63 L646 2001", bibdate = "Tue Apr 23 07:10:54 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.99", acknowledgement = ack-nhfb, } @Book{LSI:2001:PLG, author = "{Loki Software, Inc.} and John Hall", title = "Programming {Linux} Games: Learn to Write the Games {Linux} People Play", publisher = pub-LINUX-JOURNAL-PRESS, address = pub-LINUX-JOURNAL-PRESS:adr, pages = "xviii + 415", year = "2001", ISBN = "1-886411-49-2", ISBN-13 = "978-1-886411-49-4", LCCN = "QA76.76.C672 L65 2001", bibdate = "Fri May 25 11:32:40 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.95", acknowledgement = ack-nhfb, } @Book{Mancill:2001:LRP, author = "Tony Mancill", title = "{Linux} routers: a primer for network administrators", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xx + 345", year = "2001", ISBN = "0-13-086113-8", ISBN-13 = "978-0-13-086113-9", LCCN = "QA76.76.O63 M348 2001", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Prentice Hall series in computer networking and distributed systems", acknowledgement = ack-nhfb, keywords = "Linux; routers (computer networks)", } @Book{Marsh:2001:PRU, author = "Matthew G. Marsh", title = "Policy routing using {Linux}", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "vii + 205", year = "2001", ISBN = "0-672-32052-5", ISBN-13 = "978-0-672-32052-1", LCCN = "TK5105.543 .M37 2001", bibdate = "Tue Jun 20 18:09:28 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Routers (Computer networks); Linux", } @Book{Mauro:2001:SIC, author = "Jim Mauro and Richard McDougall", title = "{Solaris} Internals: Core Kernel Architecture", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xli + 657", year = "2001", ISBN = "0-13-022496-0", ISBN-13 = "978-0-13-022496-5", LCCN = "QA76.76.O63 M37195 2001", bibdate = "Fri Apr 11 16:56:49 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sun BluePrints Program", URL = "http://www.sun.com/books/catalog/mauro/index.html", acknowledgement = ack-nhfb, } @Book{Maxwell:2001:LCK, author = "Scott Andrew Maxwell.", title = "{Linux} Core Kernel commentary", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "xviii + 717", year = "2001", ISBN = "1-58880-149-7", ISBN-13 = "978-1-58880-149-4", LCCN = "QA76.76.O63 M373337 2001", bibdate = "Thu May 16 14:30:00 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.99", acknowledgement = ack-nhfb, annote = "Annotated kernel source commentary.", } @Book{Mayer:2001:SPU, author = "Alexander Mayer", title = "{Shell-Programmierung in Unix: [das Lehrbuch zu Bourne-Shell, Korn-Shell, Z-Shell, Bash f{\"u}r Linux, Unix, BSD und MacOS X]}. ({German}) [{Shell} programming in {Unix}: The textbook for the {Bourne} Shell, {Korn} Shell, {Z} Shell, Bash for {Linux}, {Unix}, {BSD} and {MacOS X}]", publisher = "Computer-\&-Literatur-Verlag", address = "B{\"o}blingen, Germany", pages = "767", year = "2001", ISBN = "3-932311-78-7", ISBN-13 = "978-3-932311-78-9", LCCN = "????", bibdate = "Tue Sep 17 06:52:36 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, language = "German", } @Book{McCune:2001:ILW, author = "Mike McCune", title = "Integrating {Linux} and {Windows}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxii + 344", year = "2001", ISBN = "0-13-030670-3", ISBN-13 = "978-0-13-030670-8", LCCN = "QA76.9.U83 M46 2000", bibdate = "Sat May 26 07:46:58 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.99", series = "Prentice Hall PTR open source technology series", URL = "http://www.phptr.com/ptrbooks/ptr_0130306703.html", acknowledgement = ack-nhfb, subject = "Linux; Microsoft Windows (Computer file); Operating systems (Computers)", } @Book{Merusi:2001:PWA, author = "Don E. Merusi", title = "Programming the {Win32 API} and {UNIX} System Services", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xv + 291", year = "2001", ISBN = "0-13-025969-1", ISBN-13 = "978-0-13-025969-1", LCCN = "QA76.66 .M47 2001", bibdate = "Sat May 26 07:48:53 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.99", series = "Prentice Hall PTR Microsoft technologies series", URL = "http://www.phptr.com/ptrbooks/ptr_0130259691.html", acknowledgement = ack-nhfb, subject = "Systems programming (Computer science); Microsoft Win32; UNIX (Computer file)", } @Book{Miles:2001:EL, author = "Kathy Miles and Ethan Metsger", title = "Everyday {Linux}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxxiv + 369", year = "2001", ISBN = "0-13-091762-1", ISBN-13 = "978-0-13-091762-1", LCCN = "QA76.76.O63 M534 2001", bibdate = "Sat May 26 07:50:06 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.99", URL = "http://www.phptr.com/ptrbooks/ptr_0130917621.html", acknowledgement = ack-nhfb, } @Book{Miller:2001:LWA, author = "Michael Joseph Miller", title = "{Linux} for {Windows} addicts: a 12-step program for habitual {Windows} users", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, pages = "xvii + 414", year = "2001", ISBN = "0-07-213081-4", ISBN-13 = "978-0-07-213081-2", LCCN = "QA76.76.O63 M57 2001", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{Minamoto:2001:SAP, author = "Teruya Minamoto and Hiroshi Okumura", title = "Sheru ando paru nyumon: basshu tishisheru gureppu seddo oku paru", publisher = "Saienssusha", address = "Tokyo, Japan", pages = "268", year = "2001", ISBN = "4-7819-0997-3", ISBN-13 = "978-4-7819-0997-4", LCCN = "????", bibdate = "Fri Jul 01 14:46:20 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "awk", } @Article{Minnich:2001:PNL, author = "Ronald G. Minnich", title = "Private Namespaces For {Linux}", journal = j-DDJ, volume = "26", number = "12", pages = "23--24, 26, 28, 30", month = dec, year = "2001", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 12 05:21:41 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/", abstract = "Private namespaces let groups of processes construct their own namespace. Ron implements them for Linux to solve problems in both distributed and cluster computing.", acknowledgement = ack-nhfb, annote = "Describes an implementation for FreeBSD, GNU/Linux, Solaris, and SunOS of the Plan 9 filesystem protocol.", } @Book{Mitchell:2001:ALP, author = "Mark Mitchell and Jeffrey Oldham and Alex Samuel", title = "Advanced {Linux} programming", publisher = pub-NEW-RIDERS, address = pub-NEW-RIDERS:adr, pages = "xxiii + 340", year = "2001", ISBN = "0-7357-1043-0", ISBN-13 = "978-0-7357-1043-6", LCCN = "QA76.76.O63 M58 2001", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.advancedlinuxprogramming.com/", acknowledgement = ack-nhfb, keywords = "Linux", } @Book{Mittelstaedt:2001:FCN, author = "Ted Mittelstaedt", title = "The {FreeBSD} corporate networker's guide", publisher = pub-AW, address = pub-AW:adr, pages = "xxv + 401", year = "2001", ISBN = "0-201-70481-1", ISBN-13 = "978-0-201-70481-5", LCCN = "QA76.754 .M58 2001", bibdate = "Sat Jul 10 17:39:27 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Moody:2001:RCI, author = "Glyn Moody", title = "The rebel code: the inside story of {Linux} and the open source revolution", publisher = pub-PERSEUS, address = pub-PERSEUS:adr, pages = "viii + 334", year = "2001", ISBN = "0-7382-0333-5", ISBN-13 = "978-0-7382-0333-1", LCCN = "QA76.76.O63 M663 2001", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$27.50", acknowledgement = ack-nhfb, keywords = "computer software industry; Linux history", } @Book{Moody:2001:RCL, author = "Glyn Moody", title = "Rebel code: {Linux} and the {Open Source} Revolution", publisher = "Allen Lane", address = "London, UK and New York, NY, USA", pages = "viii + 334", year = "2001", ISBN = "0-7139-9520-3", ISBN-13 = "978-0-7139-9520-6", LCCN = "QA76.76.O63 M645 2001", bibdate = "Tue Jun 21 18:42:21 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers); Open source software", } @Book{Negus:2001:RLB, author = "Christopher Negus", title = "{Red Hat Linux 7} Bible", publisher = pub-IDG, address = pub-IDG:adr, pages = "????", year = "2001", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Mar 13 17:35:26 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Nemeth:2001:USA, author = "Evi Nemeth and Garth Snyder and Scott Seebass and Trent R. Hein and Adam Boggs and Rob Braun and Ned McClain and Dan Crawl and Lynda McGinley and Todd Miller", title = "{UNIX} System Administration Handbook", publisher = pub-PH, address = pub-PH:adr, edition = "Third", pages = "xxxv + 853", year = "2001", ISBN = "0-13-020601-6", ISBN-13 = "978-0-13-020601-5", LCCN = "QA76.76.O63 N45 2001", bibdate = "Wed Jan 17 18:10:43 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$68.00", URL = "http://www.phptr.com/ptrbooks/ptr_0130206016.html", acknowledgement = ack-nhfb, } @Article{Nisley:2001:ESP, author = "Ed Nisley", title = "Embedded Space: Penguin Specs", journal = j-DDJ, volume = "26", number = "6", pages = "139--141", month = jun, year = "2001", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Jun 7 06:07:16 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/", abstract = "A trip to the bright lights of the LinuxWorld Expo gets Ed thinking about the world of embedded Linux.", acknowledgement = ack-nhfb, } @Article{Nisley:2001:ESRc, author = "Ed Nisley", title = "Embedded Space: Rating Real Time: Count the Ways", journal = j-DDJ, volume = "26", number = "9", pages = "113--115", month = sep, year = "2001", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 12 05:21:39 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/", abstract = "Ed continues his examination of the space where real time and Linux overlap.", acknowledgement = ack-nhfb, } @Article{Nisley:2001:ESS, author = "Ed Nisley", title = "Embedded Space: {SEU} Meets {Embedded Linux}", journal = j-DDJ, volume = "26", number = "3", pages = "129--131", month = mar, year = "2001", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Feb 15 12:14:41 MST 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/", abstract = "DDJ's new columnist takes a hard look at soft errors that affect wireless devices.", acknowledgement = ack-nhfb, } @Book{Nutt:2001:KPL, author = "Gary J. Nutt", title = "Kernel projects for {Linux}", publisher = pub-AW-LONGMAN, address = pub-AW-LONGMAN:adr, pages = "xvi + 239", year = "2001", ISBN = "0-201-61243-7", ISBN-13 = "978-0-201-61243-1", LCCN = "QA76.76.O63 N885 2001", bibdate = "Wed Apr 25 05:30:20 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{OBrien:2001:KSP, author = "Dennis O'Brien and David Pitts", title = "{Korn} shell programming by example", publisher = pub-QUE, address = pub-QUE:adr, pages = "xiv + 431", year = "2001", ISBN = "0-7897-2465-0", ISBN-13 = "978-0-7897-2465-6", LCCN = "QA76.73.K67 O33 2001", bibdate = "Mon May 06 05:48:04 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.99", acknowledgement = ack-nhfb, } @Book{OGorman:2001:OSL, author = "John O'Gorman", title = "Operating systems with {Linux}", publisher = "Palgrave", address = "Basingstoke, UK", pages = "xv + 462", year = "2001", ISBN = "0-333-94745-2", ISBN-13 = "978-0-333-94745-6", LCCN = "QA76.76.O63 O336 2001", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Cornerstones of computing", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{Olczak:2001:KSU, author = "Anatole Olczak", title = "The {Korn} shell: {Unix} and {Linux} programming manual", publisher = pub-AW, address = pub-AW:adr, edition = "Third", pages = "xxi + 446", year = "2001", ISBN = "0-201-67523-4", ISBN-13 = "978-0-201-67523-8", LCCN = "QA76.73.K67 O38 2001", bibdate = "Tue May 29 17:56:01 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Korn shell (computer program language); LINUX; UNIX (computer file)", } @Book{Peek:2001:LUO, author = "Jerry D. Peek and Grace Todino and John Strang", title = "Learning the {UNIX} operating system", publisher = pub-ORA, address = pub-ORA:adr, edition = "Fifth", pages = "xiii + 157", year = "2001", ISBN = "0-596-00261-0", ISBN-13 = "978-0-596-00261-9", LCCN = "QA76.76.O63 T62 2002", bibdate = "Tue Sep 17 05:57:21 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Book{Petersen:2001:LCR, author = "Richard Petersen", title = "{Linux}: the complete reference", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, edition = "Fourth", pages = "xxxv + 1257", year = "2001", ISBN = "0-07-212940-9", ISBN-13 = "978-0-07-212940-3", LCCN = "QA76.76.O63 P523 2001", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{Petersen:2001:LPB, author = "Richard Petersen", title = "{Linux} programming: a beginner's guide", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, pages = "xxiii + 422", year = "2001", ISBN = "0-07-212743-0", ISBN-13 = "978-0-07-212743-0", LCCN = "QA76.76.O63 P5228 2001", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{Petrovsky:2001:LDB, author = "Michele Petrovsky and Stephen Wysham and Mojo Nichols", title = "{Linux} database bible", publisher = pub-HUNGRY-MINDS, address = pub-HUNGRY-MINDS:adr, pages = "xxi + 715", year = "2001", ISBN = "0-7645-4641-4", ISBN-13 = "978-0-7645-4641-9", LCCN = "QA76.76.O63 P5288 2001", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.loc.gov/catdir/toc/wiley024/2001092731.html", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{Pfaffenberger:2001:LNC, author = "Bryan Pfaffenberger", title = "{Linux} networking clearly explained", publisher = pub-ACADEMIC, address = pub-ACADEMIC:adr, pages = "ix + 390", year = "2001", ISBN = "0-12-533171-1", ISBN-13 = "978-0-12-533171-5", LCCN = "QA76.76.O63 P533 2001", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "computer networks; internetworking (telecommunications); Linux (computer file)", } @Book{Phillips:2001:TIL, author = "Iain Phillips and Jon Crowcroft", title = "{TCP\slash IP} and the {Linux} protocol implementation: systems code for the {Linux Internet}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "925", year = "2001", ISBN = "0-471-40882-4 (cloth)", ISBN-13 = "978-0-471-40882-6 (cloth)", LCCN = "TK5105.585 .T34 2002", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Wiley Networking Council series", acknowledgement = ack-nhfb, keywords = "Internet; Linux; TCP/IP (computer network protocol)", } @Book{Poniatowski:2001:HUS, author = "Marty Poniatowski", title = "{HP-UX 11i} System Administration Handbook and Toolkit", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "1872 (est.)", year = "2001", ISBN = "????", ISBN-13 = "????", LCCN = "0-13-060081-4", bibdate = "Thu Oct 19 16:37:21 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", price = "US\$54.00", URL = "http://www.phptr.com/ptrbooks/ptr_0130600814.html", acknowledgement = ack-nhfb, } @Book{Quigley:2001:CLS, author = "Ellie Quigley and Scott Hawkins", title = "The Complete {Linux} Shell Programming Training Course", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "????", year = "2001", ISBN = "0-13-040676-7", ISBN-13 = "978-0-13-040676-7", LCCN = "????", bibdate = "Sat May 26 07:51:30 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$109.99", URL = "http://www.phptr.com/ptrbooks/ptr_0130406767.html", acknowledgement = ack-nhfb, } @Book{Ray:2001:MLS, author = "John Ray", title = "Maximum {Linux} security", publisher = pub-SAMS, address = pub-SAMS:adr, edition = "Second", pages = "800", year = "2001", ISBN = "0-672-32134-3", ISBN-13 = "978-0-672-32134-4", LCCN = "QA76.9.A25 M387 2001", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "computer security; Linux", } @Book{Raymond:2001:CBM, author = "Eric S. Raymond", title = "The cathedral and the bazaar: musings on {Linux} and open source by an accidental revolutionary", publisher = pub-ORA, address = pub-ORA:adr, edition = "Revised", pages = "xiv + 241", year = "2001", ISBN = "0-596-00131-2", ISBN-13 = "978-0-596-00131-5", LCCN = "QA76.76.O63 R397 2001", bibdate = "Mon Apr 18 15:02:58 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.oreilly.com/catalog/9780596001315", acknowledgement = ack-nhfb, keywords = "GNU/Linux; Linux; open source software", subject = "GNU/Linux; Open source software", } @Book{Rodriguez:2001:EIL, author = "Ameneiros Rodr{\'\i}guez and Ib{\'a}n {\'O}scar", title = "Estudio e implementaci{\'o}n de una {LAN} para {PYMES} utilizando {GNU\slash LINUX} como sistema operativo. ({Spanish}) [Study and implementation of a {LAN} with {PYMES} using {GNU}\slash Linux as operating system]", publisher = "E.U. Polit{\'e}cnica", address = "Ferrol, Spain", year = "2001", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Fri Dec 09 06:32:23 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes one CD-ROM.", acknowledgement = ack-nhfb, language = "Spanish", } @Book{Rubini:2001:LDD, author = "Alessandro Rubini and Jonathan Corbet", title = "{Linux} Device Drivers", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xix + 564", month = jun, year = "2001", ISBN = "0-596-00008-1", ISBN-13 = "978-0-596-00008-0", LCCN = "QA76.76.D49 R92 2001", bibdate = "Mon Apr 18 15:01:33 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html; z3950.loc.gov:7090/Voyager", price = "US\$39.95", URL = "http://safari.oreilly.com/0596000081; http://www.oreilly.com/catalog/9780596000080; http://www.oreilly.com/catalog/linuxdrive2", acknowledgement = ack-nhfb, keywords = "Linux device drivers (computer programs)", publishersummary = "This practical guide is for anyone who wants to support computer peripherals under the Linux operating system. It shows step-by-step how to write a driver for character devices, block devices, and network interfaces, illustrating with examples you can compile and run. The second edition covers Kernel 2.4 and adds discussions of symmetric multiprocessing (SMP), Universal Serial Bus (USB), and some new platforms.", subject = "Linux device drivers (Computer programs)", } @Book{Russell:2001:LDR, author = "Steve Russell and Kathleen McGivney and Zeljka Zoranovic", title = "{Lotus Domino R5} Clustering", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Second", pages = "xii + 255", year = "2001", ISBN = "0-13-060836-X", ISBN-13 = "978-0-13-060836-9", LCCN = "HF5548.4.L673 R87 2001", bibdate = "Tue Apr 23 07:11:43 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.99", URL = "http://www.phptr.com/ptrbooks/ptr_013060836X.html", acknowledgement = ack-nhfb, keywords = "AIX; Domino; GNU/Linux; System/390; Windows 2000", } @Book{Samson:2001:STY, author = "Judith Samson and Jason Byars and Dallas Releford", title = "{Sams} teach yourself {Red Hat Linux} in 24 hours", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xv + 429", year = "2001", ISBN = "0-672-31845-8 (paperback)", ISBN-13 = "978-0-672-31845-0 (paperback)", LCCN = "QA76.76.O63 S354 2001", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sams teach yourself in 24 hours series", acknowledgement = ack-nhfb, keywords = "operating systems (computers); {Linux}", } @Book{Sarwar:2001:UTS, author = "Syed Mansoor Sarwar and Robert Koretsky and Syed Aqeel Sarwar", title = "{Unix}, the textbook", publisher = pub-AW-LONGMAN, address = pub-AW-LONGMAN:adr, pages = "various", year = "2001", ISBN = "0-201-61260-7", ISBN-13 = "978-0-201-61260-8", LCCN = "QA76.76.O63 S3555 2001", bibdate = "Tue Sep 17 05:57:21 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Book{Sery:2001:SLS, author = "Paul G. Sery and Mohammed J. Kabi", title = "The {SuSE Linux} server", publisher = pub-MT, address = pub-MT:adr, pages = "xxviii + 609", year = "2001", ISBN = "0-7645-4765-8", ISBN-13 = "978-0-7645-4765-2", LCCN = "QA76.9.C55 S39 2000", bibdate = "Mon Apr 29 08:45:16 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "client/server computing; Linux", } @Book{Shah:2001:LAB, author = "Steve Shah", title = "{Linux} administration: a beginner's guide", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, edition = "Second", pages = "xxvi + 843", year = "2001", ISBN = "0-07-213136-5", ISBN-13 = "978-0-07-213136-9", LCCN = "QA76.76.O63 S524 2001", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", series = "Network professional's library", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{Sheets:2001:WGA, author = "John R. Sheets", title = "Writing {Gnome} Applications", publisher = pub-AW, address = pub-AW:adr, pages = "xxv + 449", year = "2001", ISBN = "0-201-65791-0", ISBN-13 = "978-0-201-65791-3", LCCN = "QA76.76.D47 S4885 2000", bibdate = "Thu Dec 21 05:11:08 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Siever:2001:LWS, author = "Ellen Siever and Matt Welsh and Ben Laurie and Randy Jay Yarger and Alligator Descartes and Scott Guelich", title = "{Linux Web} Server {CD} Bookshelf", publisher = pub-ORA, address = pub-ORA:adr, pages = "812 (est.)", year = "2001", ISBN = "0-596-00208-4", ISBN-13 = "978-0-596-00208-4", LCCN = "????", bibdate = "Wed Oct 30 16:15:17 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html", price = "US\$79.95", URL = "http://www.oreilly.com/catalog/linuxwebcdbs", acknowledgement = ack-nhfb, publishersummary = "Six best selling O'Reilly Animal Guides are now available on CD-ROM, easily accessible and searchable with your favorite Web browser: Running Linux, 3rd Edition; Linux in a Nutshell, 3rd Edition; Apache: The Definitive Guide, 2nd Edition; MySQL \& mSQL; Programming the Perl DBI; and CGI Programming with Perl, 2nd Edition. As a bonus, you get the new paperback version of Linux in a Nutshell.", xxauthor = "{O'Reilly and Inc.} Associates", } @Article{Sivonen:2001:SBC, author = "Timo Sivonen", title = "Setting Up {BIND8} in a Change-Rooted Environment on {Solaris}", journal = j-LOGIN, volume = "26", number = "4", pages = "??--??", month = jul, year = "2001", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 10:52:02 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/2001-07/index.html", URL = "http://www.usenix.org/publications/login/2001-07/pdfs/sivonen.pdf", acknowledgement = ack-nhfb, } @Book{Smith:2001:LSS, author = "Roderick W. Smith", title = "{Linux Samba} server administration", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xxiii + 629", year = "2001", ISBN = "0-7821-2740-1 (paperback)", ISBN-13 = "978-0-7821-2740-9 (paperback)", LCCN = "QA76.76.O63 S58847 2001", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "The Craig Hunt Linux library", acknowledgement = ack-nhfb, keywords = "client/server computing; computer networks; Linux; operating systems (computers); Samba (computer file)", } @Book{Snevely:2001:EDC, author = "Rob Snevely", title = "Enterprise Data Center: Design and Methodology", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxii + 198", year = "2001", ISBN = "0-13-047393-6", ISBN-13 = "978-0-13-047393-6", LCCN = "TK5103.S59 2002", bibdate = "Fri Apr 11 12:03:24 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sun.com/blueprints/", note = "Part No. 816-2765-10 December 2001, Revision 01.", price = "US\$49.95", series = "Sun BluePrints Program", URL = "books/edcdesign.pdf; http://www.sun.com/books/catalog/snevely/index.html", abstract = "This Sun BluePrint is a practical guide to designing a data center from inception through construction. The fundamental design principles take a simple, flexible, and modular approach based on accurate, real-world requirements and capacities. This approach contradicts the conventional (but totally inadequate) method of using square footage to determine basic capacities like power and cooling requirements.", acknowledgement = ack-nhfb, } @Article{Sorfa:2001:OSI, author = "Petr Sorfa", title = "Open Source {IDEs} for {Linux\slash Unix}", journal = j-CCCUJ, volume = "19", number = "3", pages = "8--??", month = mar, year = "2001", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:30 MDT 2002", bibsource = "http://www.cuj.com/articles/2001/0103/0103toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "You don't have to give up a graphical environment to develop software under Linux. There are as many IDEs freely available on the Internet as there are definitions of the word ``free.''", acknowledgement = ack-nhfb, } @Book{SPS:2001:DCB, author = "{Sun Professional Services}", title = "Dot-com \& beyond: breakthrough {Internet}-based architectures and methodologies", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xvii + 314", year = "2001", ISBN = "0-13-062297-4", ISBN-13 = "978-0-13-062297-6", LCCN = "TK5105.5.D68 2001", bibdate = "Fri Apr 11 15:42:07 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sun BluePrints Program", acknowledgement = ack-nhfb, } @Book{Stanfield:2001:LSA, author = "Vicki Stanfield and Roderick W. Smith", title = "{Linux} system administration", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xxviii + 657", year = "2001", ISBN = "0-7821-2735-5 (paperback)", ISBN-13 = "978-0-7821-2735-5 (paperback)", LCCN = "QA76.76.O63 S7346 2001", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "The Craig Hunt Linux library", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{Sterling:2001:BCCa, editor = "Thomas L. Sterling", title = "{Beowulf} Cluster Computing with {Linux}", publisher = pub-MIT, address = pub-MIT:adr, pages = "xxxiii + 496", year = "2001", ISBN = "0-262-69274-0", ISBN-13 = "978-0-262-69274-8", LCCN = "QA76.58 .B46 2002", bibdate = "Tue Mar 11 14:58:24 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$42.95, UK\pounds 28.50", acknowledgement = ack-nhfb, } @Article{Stevens:2001:CPA, author = "Al Stevens", title = "{C} Programming: {I} Almost Get a {Linux} Editor and Compiler", journal = j-DDJ, volume = "26", number = "7", pages = "113--116", month = jul, year = "2001", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Jun 7 06:07:17 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/", abstract = "Being on the road with the DobbsMobile means that Al gets a Linux editor and compiler: almost.", acknowledgement = ack-nhfb, } @Article{Stevens:2001:CPG, author = "Al Stevens", title = "{C} Programming: It's Good Work When You Can Find It", journal = j-DDJ, volume = "26", number = "5", pages = "121--124", month = may, year = "2001", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Apr 12 06:45:08 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/", abstract = "Al finds out why the dependency carousel is central to both Linux and open-source development.", acknowledgement = ack-nhfb, } @Article{Stevens:2001:CPMa, author = "Al Stevens", title = "{C} Programming: {A} Moving Target", journal = j-DDJ, volume = "26", number = "4", pages = "129--130, 132--133", month = apr, year = "2001", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Mar 13 15:22:36 MST 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/", abstract = "Al has Linux on the mind as he continues to make the move from one operating system to another.", acknowledgement = ack-nhfb, } @Article{Stevens:2001:CPR, author = "Al Stevens", title = "{C} Programming: Road Rage $=$ Editors $+$ Drivers", journal = j-DDJ, volume = "26", number = "6", pages = "131--134", month = jun, year = "2001", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Jun 7 06:07:16 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/", abstract = "What with drivers, editors, Linux, mail, and more, Al adds a new meaning to the term ``multitasking.''", acknowledgement = ack-nhfb, } @Article{Stevens:2001:CPS, author = "Al Stevens", title = "{C} Programming: Software Development, {Linux}, and the {White House}", journal = j-DDJ, volume = "26", number = "3", pages = "124--127", month = mar, year = "2001", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Feb 15 12:14:41 MST 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/", abstract = "The Software Development 2000 Conference took Al back to D.C. and he reports on everything he saw and heard before jumping into the Linux waters.", acknowledgement = ack-nhfb, } @Article{Stevens:2001:CPYb, author = "Al Stevens", title = "{C} Programming: {YAPP}: {Yet Another Programming Platform}", journal = j-DDJ, volume = "26", number = "10", pages = "105--107, 109", month = oct, year = "2001", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 12 05:21:40 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/", abstract = "Al continues his search for the perfect C++ class library for Linux.", acknowledgement = ack-nhfb, } @Book{Stutz:2001:LCT, author = "Michael Stutz", title = "The {Linux} Cookbook: Tips and Techniques for Everyday Use", publisher = pub-LINUX-JOURNAL-PRESS, address = pub-LINUX-JOURNAL-PRESS:adr, pages = "396", year = "2001", ISBN = "1-886411-48-4", ISBN-13 = "978-1-886411-48-7", LCCN = "QA76.76.O63 S788 2000", bibdate = "Sat Mar 23 13:17:29 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Prepared with \TeX{}info.", price = "US\$29.95", URL = "http://dsl.org/cookbook/", acknowledgement = ack-nhfb, annote = "Although library catalogs show the publication year as 2000, the book actually appeared in August 2001 (personal note from the author to NHFB).", } @Book{Sweet:2001:CCU, author = "Michael R. Sweet", title = "{CUPS}: {Common UNIX Printing System}", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xxvi + 622", year = "2001", ISBN = "0-672-32196-3", ISBN-13 = "978-0-672-32196-2", LCCN = "QA76.76.O63 S942 2001", bibdate = "Thu May 16 14:31:22 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$44.99", URL = "http://www.cups.org; http://www.easysw.com/cups/pricing.html", acknowledgement = ack-nhfb, } @Book{Sweet:2001:KD, author = "David Sweet", title = "{KDE 2.0} Development", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "????", year = "2001", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Tue Mar 13 17:37:23 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "GNU/Linux; UNIX", } @Book{Tanenbaum:2001:MOS, author = "Andrew S. Tanenbaum", title = "Modern operating systems", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "xxiv + 951", year = "2001", ISBN = "0-13-031358-0", ISBN-13 = "978-0-13-031358-4", LCCN = "QA76.76.O63 T359 2001", bibdate = "Wed Apr 12 05:42:19 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, keywords = "GNU/Linux; MINIX; UNIX; Windows 2000", subject = "Operating systems (Computers)", } @TechReport{Vaamonde:2001:ISG, author = "Fern{\'a}ndez Vaamonde and Manuel David", title = "Implantaci{\'o}n de un sistema de gesti{\'o}n centralizada de paquetes deb para su uso en configuraciones {Debian GNU\slash Linux}. (Spanish) [{Implantation} of a system of centralized management of deb packages for its use in configurations of {Debian GNU/Linux} ]", institution = "Trabajos fin de carrera de la Facultade de Inform{\'a}tica de A Coru{\~n}a. Departamento de Electr{\'o}nica e Sistemas, Facultade de Inform{\'a}tica Universidade da Coru{\~n}a", address = "Coru{\~n}a, Spain", pages = "111", year = "2001", bibdate = "Fri Dec 09 06:37:04 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Final engineering project. Includes one CD-ROM.", acknowledgement = ack-nhfb, } @Book{Vargas:2001:SCE, author = "Enrique Vargas and Joseph Bianco and David Deeths", title = "{Sun} Cluster Environment: {Sun Cluster 2.2}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxx + 389", year = "2001", ISBN = "0-13-041870-6", ISBN-13 = "978-0-13-041870-8", LCCN = "QA278.V37 2001", bibdate = "Tue Apr 23 07:20:20 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$40.00", URL = "http://www.phptr.com/ptrbooks/ptr_0130418706.html; http://www.sun.com/books/catalog/vargas/index.html", acknowledgement = ack-nhfb, } @Book{Wall:2001:LPU, author = "Kurt Wall", title = "{Linux} programming unleashed", publisher = pub-SAMS, address = pub-SAMS:adr, edition = "Second", pages = "ixi + 886", year = "2001", ISBN = "0-672-32021-5", ISBN-13 = "978-0-672-32021-7", LCCN = "QA76.76.O63 W3573 2001", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, annote = "Revised edition of \cite{Wall:1999:LPU}. Contents: Linux programming toolkit -- Input, output, files, and directories -- Processes and synchronization -- Network programming -- Programming the user interface -- Special topics -- Finishing touches", keywords = "computer programming; Linux; operating systems (computers)", } @Book{Walters:2001:EGC, author = "E. Garrison Walters", title = "The essential guide to computing: the story of information technology", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxv + 499", year = "2001", ISBN = "0-13-019469-7", ISBN-13 = "978-0-13-019469-5", LCCN = "QA76.6 .W335 2001", bibdate = "Thu Jan 31 07:59:52 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "DOS; Internet; Macintosh; NetWare; Palm OS; UNIX/Linux; Windows", } @Book{Walton:2001:LSP, author = "Sean Walton", title = "{Linux} socket programming", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xv + 533", year = "2001", ISBN = "0-672-31935-7 (paperback)", ISBN-13 = "978-0-672-31935-8 (paperback)", LCCN = "QA76.76.O63 W358 2001", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "client/server computing; computer networks; Linux; operating systems (computers); TCP/IP (computer network protocol)", } @Book{Ward:2001:QPL, author = "Patrick Ward", title = "{Qt} programming for {Linux} and {Windows 2000}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xvii + 280", year = "2001", ISBN = "0-13-027001-6", ISBN-13 = "978-0-13-027001-6", LCCN = "QA76.9.U83 W37 2001", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Hewlett--Packard professional books", acknowledgement = ack-nhfb, keywords = "application software -- development; graphical user interfaces (computer systems); Linux; Microsoft Windows (computer file)", } @Book{Wehrli:2001:LEP, author = "Rob Wehrli", title = "{Linux} Embedded Programming", publisher = pub-CMP-BOOKS, address = pub-CMP-BOOKS:adr, pages = "352 (est.)", year = "2001", ISBN = "1-57820-085-7", ISBN-13 = "978-1-57820-085-6", LCCN = "????", bibdate = "Thu Jul 12 07:15:03 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.95", URL = "http://www.cmpbooks.com/", acknowledgement = ack-nhfb, } @Book{Welling:2001:PMW, author = "Luke Welling and Laura Thomson", title = "{PHP} and {MySQL Web} Development", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xxii + 867", year = "2001", ISBN = "0-672-31784-2", ISBN-13 = "978-0-672-31784-2", LCCN = "QA76.73.P224 W45 2001", bibdate = "Mon Oct 23 17:36:38 2000", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.99", URL = "http://www.mcp.com/sams/detail_sams.cfm?item=0672317842", acknowledgement = ack-nhfb, } @Book{Welsh:2001:LWS, author = "Matt Welsh and Ben Laurie and Ellen Siever and Randy Jay Yarger and Alligator Descartes and Scott Guelich", title = "The {Linux Web} server {CD} bookshelf", publisher = pub-ORA, address = pub-ORA:adr, year = "2001", ISBN = "0-596-00208-4", ISBN-13 = "978-0-596-00208-4", LCCN = "Disk 2057 Protect", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "CD-ROM with Running Linux, 3rd ed. -- Linux in a nutshell, 3rd ed. -- CGI programming with Perl, 2nd ed. -- Apache: the definitive guide, 2nd ed. -- MySQL and mSQL -- Programming the Perl DBI.", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers); web servers -- computer programs", } @Book{Weygant:2001:CHA, author = "Peter S. Weygant", title = "Clusters for High Availability: {A} Primer of {HP} Solutions", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Second", pages = "xxxiii + 296", year = "2001", ISBN = "0-13-089355-2", ISBN-13 = "978-0-13-089355-0", LCCN = "QA76.8.H48 W49 2001", bibdate = "Sat May 26 07:55:10 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.00", series = "Hewlett--Packard professional books", URL = "http://www.phptr.com/ptrbooks/ptr_0130893552.html", acknowledgement = ack-nhfb, subject = "Hewlett--Packard computers; Systems availability", } @Book{Winsor:2001:SAS, author = "Janice Winsor", title = "{Solaris 8} Advanced System Administrator's Guide", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, edition = "Third", pages = "l + 789", year = "2001", ISBN = "0-13-027703-7", ISBN-13 = "978-0-13-027703-9", LCCN = "QA76.76.O63W5682 2001", bibdate = "Fri Apr 11 16:55:47 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sun BluePrints Program", URL = "http://www.sun.com/books/catalog/winsor12", acknowledgement = ack-nhfb, } @Book{Worsley:2001:GSY, author = "John Worsley and Andrew Brookins and Kai Staats", title = "Getting started with {Yellow Dog Linux}", publisher = "OpenDocs", address = "Salem, OR, USA", pages = "267", year = "2001", ISBN = "0-9700330-3-6", ISBN-13 = "978-0-9700330-3-1", LCCN = "QA76.76.O63; QA 76.76 .O63W67 2001 SCAR", bibdate = "Fri Jun 10 13:13:39 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; sirsi.library.utoronto.ca:2200/UNICORN", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Book{Wrightson:2001:MU, author = "Katherine Wrightson and Joseph Merlino", title = "Mastering {UNIX}", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xlii + 897", year = "2001", ISBN = "0-7821-2817-3", ISBN-13 = "978-0-7821-2817-8", LCCN = "QA76.76.O63 W75 2001", bibdate = "Tue May 29 17:56:01 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes index", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Article{Yuen:2001:TPS, author = "Andy Yuen", title = "A Tiny {Perl Server Pages} Engine", journal = j-DDJ, volume = "26", number = "8", pages = "71, 73, 77--78, 80, 82, 84", month = aug, year = "2001", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed Jul 11 06:31:35 MDT 2001", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/ftp/2001/2001_08/psp.zip; http://www.ddj.com/ftp/2001/2001_08/psplist.zip", abstract = "Perl Server Pages is a small footprint Perl-based cross-platform JSP-like facility for generating dynamic pages for both UNIX and Windows. Additional resources include psplist.zip (listings) and psp.zip (source code).", acknowledgement = ack-nhfb, } @Book{Zadok:2001:LNA, author = "Erez Zadok", title = "{Linux} {NFS} and {Automounter} administration", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xlvi + 638", year = "2001", ISBN = "0-7821-2739-8", ISBN-13 = "978-0-7821-2739-3", LCCN = "QA76.76.O63 Z34 2001", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "The Craig Hunt Linux library", acknowledgement = ack-nhfb, keywords = "client/server computing; Linux; network file system (computer network protocol)", } @Book{Ziccardi:2001:DAN, author = "Giovanni Ziccardi and John P. Barlow", title = "Il diritto d'autore nell'era digitale: evoluzione tecnologica e copyright: {Internet}, {mp3}, {DivX;-)}, open source, {Gnu\slash Linux}, free software, mezzi di protezione", publisher = "Il sole 24 ore", address = "Milano, Italy", pages = "xxi + 343", year = "2001", ISBN = "88-324-4459-3", ISBN-13 = "978-88-324-4459-9", LCCN = "KE1809 .Z53 2001", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Diritto ;", acknowledgement = ack-nhfb, keywords = "copyright -- Italy; intellectual property -- Italy; Internet -- law and legislation -- Italy", } @Book{Andersen:2002:JEU, author = "Paul K. Andersen", title = "Just enough {UNIX}", publisher = pub-MCGRAW-HILL, address = pub-MCGRAW-HILL:adr, edition = "Fourth", pages = "x + 466", year = "2002", ISBN = "0-07-246377-5 (paperback), 0-07-115130-3", ISBN-13 = "978-0-07-246377-4 (paperback), 978-0-07-115130-6", LCCN = "QA76.76.O63 A48 2003", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.loc.gov/catdir/description/mh024/2002071419.html; http://www.loc.gov/catdir/toc/mh023/2002071419.html", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Book{Anderson:2002:UU, author = "Robin Anderson and Andy Johnston and others", title = "{Unix} unleashed", publisher = pub-SAMS, address = pub-SAMS:adr, edition = "Fourth", pages = "xxv + 1163", year = "2002", ISBN = "0-672-32251-X", ISBN-13 = "978-0-672-32251-8", LCCN = "QA76.76.O63 U5587 2002", bibdate = "Fri Nov 07 05:25:43 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Periodical{Anonymous:2002:LSU, editor = "Anonymous", key = "Linuxzeitung", title = "{Die Linuxzeitung: sas unabh{\"a}ngige Monatsblatt f{\"u}r GNU\slash Linux, freie Software und Open Source}. ({German}) [{The Linux Times}: the independent monthly for {GNU\slash Linux}, {Free Software}, and {Open Source}]", year = "2002", ISSN = "????", bibdate = "Fri Dec 09 06:01:15 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Periodical{Anonymous:2002:LUM, editor = "Anonymous", key = "Linuxzeitung", title = "{Die Linuxzeitung: das unabh{\"a}ngige Monatsblatt f{\"u}r GNU\slash Linux, freie Software und Open Source}. ({German}) [{The Linux Times}: the independent monthly for {GNU}\slash Linux, Free Software, and Open Source]", publisher = "????", address = "Berlin, Germany", year = "2002", bibdate = "Mon Apr 18 06:36:34 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "On-line journal.", URL = "http://www.die.linuxzeitung.de/", acknowledgement = ack-nhfb, remark = "Web site does not respond in April 2005, but ping shows the machine is alive. Does the journal still exist??", } @TechReport{Anonymous:2002:OAI, author = "Anonymous", title = "Optimizing Applications with the {Intel C++} and {Fortran} Compilers for {Windows} and {Linux}", institution = inst-HP, address = inst-HP:adr, year = "2002", bibdate = "Tue Nov 18 15:51:07 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.intel.com/software/products/compilers/c60/techtopics/Compiler_Optimization_6.pdf", acknowledgement = ack-nhfb, remark = "Web page currently inaccessible.", } @Article{Anonymous:2002:PNR, author = "Anonymous", title = "Products: New Rack-Mount Server from {Apple}; {OSDL}'s {Linux} Database Test Tool; {DigiTerra} Ships Back-Office Integration Toolset; {Oracle}'s {Developer Suite} for Business Applications and {Web} Services; {Macromedia} Release {J2EE}-Compatible Application Server and {IDE}; {MotionBuilder 4.0} from {Kaydara}; {Zero G Software}'s {InstallAnywhere 5}", journal = j-COMPUTER, volume = "35", number = "7", pages = "96--97", month = jul, year = "2002", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Fri Dec 12 19:53:39 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://csdl.computer.org/dl/mags/co/2002/07/r7096.htm; http://csdl.computer.org/dl/mags/co/2002/07/r7096.pdf", acknowledgement = ack-nhfb, } @Article{Anonymous:2002:POU, author = "Anonymous", title = "Products: Omnicore Upgrades {Java IDE CodeGuide} {emWare}'s {SDE} for Intelligent Device Management; {Metrowerks}' {CodeWarrior} for {Embedded Linux}; Integrated Software Environment form {Xilinx}; New Version of {InstallShield Professional}; {Motorola}'s 32-Bit {CAN} Reference Design; {Utopia-LVDS} Bridge Reference Design Kit from {National Semiconductor}; {First Silicon Solutions}' Analysis Tool for Flash-Based {FPGAs}", journal = j-COMPUTER, volume = "35", number = "11", pages = "78--79", month = nov, year = "2002", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Fri Dec 12 19:53:36 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://csdl.computer.org/dl/mags/co/2002/11/ry078.htm; http://csdl.computer.org/dl/mags/co/2002/11/ry078.pdf", acknowledgement = ack-nhfb, } @Book{Barkakati:2002:RLW, author = "Naba Barkakati and Kurt Wall", title = "{Red Hat Linux 7.2} weekend crash course", publisher = pub-HUNGRY-MINDS, address = pub-HUNGRY-MINDS:adr, pages = "xix + 347", year = "2002", ISBN = "0-7645-3642-7", ISBN-13 = "978-0-7645-3642-7", LCCN = "QA76.76.O63 B366167 2002", bibdate = "Fri Nov 07 05:40:12 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.loc.gov/catdir/toc/wiley021/2001092935.html", acknowledgement = ack-nhfb, } @Book{Bauer:2002:BSS, author = "Michael D. Bauer", title = "Building Secure Servers with {Linux}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xv + 430", year = "2002", ISBN = "0-596-00217-3", ISBN-13 = "978-0-596-00217-6", LCCN = "TK5105.59 .B38 2002", bibdate = "Mon Apr 18 15:03:56 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html; z3950.loc.gov:7090/Voyager", price = "US\$44.95", URL = "http://www.oreilly.com/catalog/9780596002176; http://www.oreilly.com/catalog/bssrvrlnx", acknowledgement = ack-nhfb, publishersummary = "This book provides a unique balance of ``big picture'' principles that transcend specific software packages and version numbers, and very clear procedures on securing some of those software packages. An all-inclusive resource for Linux users who wish to harden their systems, the book covers general security as well as key services such as DNS, the Apache Web server, mail, file transfer, and secure shell.", remark = "``Tools and best practices for bastion hosts'' --- cover.", subject = "GNU/Linux; Computer networks; Security measures; Client/server computing; Web servers", } @Book{Bell:2002:MXV, author = "Mark R. Bell and Debrah D. Suggs", title = "{Mac OS X} version 10.1 black book", publisher = pub-CORIOLIS, address = pub-CORIOLIS:adr, pages = "xxxii + 654", year = "2002", ISBN = "1-57610-606-3", ISBN-13 = "978-1-57610-606-8", LCCN = "QA76.76.O63 B44973 2002 Computer", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "CD-ROM contains a selection of shareware, freeware and demos for use with Mac OS X and later versions", acknowledgement = ack-nhfb, keywords = "Mac OS; Macintosh (computer); operating systems (computers)", } @Book{Blaess:2002:LSS, author = "Christophe Blaess", title = "Langages de scripts sous {Linux}: {Shell Bash}, {Sed}, {Awk}, {Perl}, {Tcl}, {Tk}, {Python}, {Ruby}", publisher = pub-EYROLLES, address = pub-EYROLLES:adr, pages = "xx + 733", year = "2002", ISBN = "2-212-11028-6", ISBN-13 = "978-2-212-11028-9", LCCN = "QA76.7 B4 2002", bibdate = "Fri Jul 01 14:51:40 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Bovet:2002:ULK, author = "Daniel P. (Daniel Pierre) Bovet and Marco Cesati", title = "Understanding the {Linux} Kernel", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xv + 765", year = "2002", ISBN = "0-596-00213-0", ISBN-13 = "978-0-596-00213-8", LCCN = "QA76.76.O63 B683 2003", bibdate = "Wed Oct 30 16:15:17 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html", price = "US\$49.95", URL = "http://www.oreilly.com/catalog/linuxkernel2", acknowledgement = ack-nhfb, publishersummary = "The new edition of Understanding the Linux Kernel takes you on a guided tour through the most significant data structures, many algorithms, and programming tricks used in the kernel. The book has been updated to cover version 2.4 of the kernel, which is quite different from version 2.2: the virtual memory system is entirely new, support for multiprocessor systems is improved, and whole new classes of hardware devices have been added. You'll learn what conditions bring out Linux's best performance, and how it meets the challenge of providing good system response during process scheduling, file access, and memory management in a wide variety of environments.", } @Book{Bradford:2002:LWI, author = "Ed Bradford and Lou Mauget", title = "{Linux} and {Windows} interoperability guide", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xv + 600", year = "2002", ISBN = "0-13-032477-9", ISBN-13 = "978-0-13-032477-1", LCCN = "QA76.76.O63 B7168 2002 Bar", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Configuring, programming, and administering mixed Linux/Windows environments.", acknowledgement = ack-nhfb, keywords = "Linux; Microsoft Windows (computer file); operating systems (computers)", } @Book{Brunson:2002:LWI, author = "Ross Brunson", title = "{Linux} and {Windows 2000} integration toolkit: a complete resource", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xii + 371", year = "2002", ISBN = "0-471-41746-7 (paperback)", ISBN-13 = "978-0-471-41746-0 (paperback)", LCCN = "QA76.6 .B7778 2002", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "computer interfaces; microcomputers -- programming; Microsoft Windows (computer file); UNIX (computer file)", } @Book{Bushnell:2002:SCN, author = "Rick Bushnell", title = "{Sun Certified Network Administrator} for {Solaris 8} Operating Environment", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxviii + 465", year = "2002", ISBN = "0-13-064669-5", ISBN-13 = "978-0-13-064669-9", LCCN = "QA76.3.B874 2002", bibdate = "Fri Apr 11 17:04:08 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sun BluePrints Program", URL = "http://www.sun.com/books/catalog/bushnell", acknowledgement = ack-nhfb, } @Article{But:2002:CSL, author = "Jason But", title = "A {C++} Socket Library for {Linux}", journal = j-DDJ, volume = "27", number = "6", pages = "19--22, 24", month = jun, year = "2002", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Wed May 1 15:43:59 MDT 2002", bibsource = "http://www.ddj.com/articles/2002/0206/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/ftp/2002/2002_06/socketcc.txt; http://www.ddj.com/ftp/2002/2002_06/socketcc.zip", abstract = "SocketCC, the C++ class library Jason presents here, supports both IPv4 and IPv6 network communications using both TCP- and UDP-style sockets. And it's freely available. Additional resources include socketcc.txt (listings) and socketcc.zip (source code).", acknowledgement = ack-nhfb, } @Article{Butorac:2002:PIW, author = "Danko Butorac", title = "{Project IPSIS} --- {Web} Portal and {Linux} for the Blind", journal = j-LECT-NOTES-COMP-SCI, volume = "2398", pages = "585--??", year = "2002", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", bibdate = "Tue Sep 10 19:10:12 MDT 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t2398.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://link.springer-ny.com/link/service/series/0558/bibs/2398/23980585.htm; http://link.springer-ny.com/link/service/series/0558/papers/2398/23980585.pdf", acknowledgement = ack-nhfb, } @Book{Cade:2002:SCE, author = "Mark Cade and Simon Roberts", title = "{Sun Certified Enterprise Architect} for {J2EE} Study Guide", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xviii + 199", year = "2002", ISBN = "0-13-044916-4", ISBN-13 = "978-0-13-044916-0", LCCN = "QA76.3.C23 2002", bibdate = "Fri Apr 11 17:03:42 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sun BluePrints Program", acknowledgement = ack-nhfb, } @Book{Cheek:2002:TUS, author = "Matthew Cheek", title = "{Tru64 UNIX} system administrator's guide", publisher = pub-DP, address = pub-DP:adr, pages = "xiii + 470", year = "2002", ISBN = "1-55558-255-9 (paperback)", ISBN-13 = "978-1-55558-255-5 (paperback)", LCCN = "QA76.76.O63 T77 2002", bibdate = "Tue Sep 17 05:57:21 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "file organization (computer science); operating systems (computers); UNIX (computer file)", } @Book{Chirillo:2002:HAD, author = "John Chirillo", title = "Hack attacks denied: a complete guide to network lockdown for {UNIX}, {Windows}, and {Linux}", publisher = pub-WILEY, address = pub-WILEY:adr, edition = "Second", pages = "xiii + 689", year = "2002", ISBN = "0-471-23283-1", ISBN-13 = "978-0-471-23283-4", LCCN = "QA76.9.A25 C47 2002", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "computer networks -- security measures; computer security", } @Book{Collings:2002:RLN, author = "Terry Collings", title = "{Red Hat Linux} networking and system administration", publisher = "Transworld", address = "London, UK", pages = "xxix + 843", year = "2002", ISBN = "0-7645-3632-X", ISBN-13 = "978-0-7645-3632-8", LCCN = "QA76.76.O63 C625 2002", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "computer networks; Linux", } @Book{Crowcroft:2002:TIL, author = "Jon Crowcroft and Iain Phillips", title = "{TCP\slash IP} and {Linux} protocol implementation: systems code for the {Linux Internet}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xlix + 925", year = "2002", ISBN = "0-471-40882-4 (cloth)", ISBN-13 = "978-0-471-40882-6 (cloth)", LCCN = "TK5105.585 .T34 2002", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Wiley Networking Council series", acknowledgement = ack-nhfb, keywords = "internet; Linux; TCP/IP (computer network protocol)", } @Article{Dalheimer:2002:EDQ, author = "Matthias Kalle Dalheimer and Steffen Hansen", title = "Embedded Development With {Qt\slash Embedded}: {Linux} for small systems", journal = j-DDJ, volume = "27", number = "3", pages = "48, 50, 52--54", month = mar, year = "2002", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 12 05:21:42 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/ftp/2002/2002_03/qtembed.txt; http://www.ddj.com/ftp/2002/2002_03/qtembed.zip", abstract = "Trolltech's Qt/Embedded toolkit is designed for development of Linux-based embedded devices. Additional resources include {\tt qtembed.txt} (listings) and {\tt qtembed.zip} (source code).", acknowledgement = ack-nhfb, } @Book{Dalheimer:2002:PQW, author = "Matthias Kalle Dalheimer", title = "Programming with {Qt}: Writing Portable {GUI} applications on {Unix} and {Win32}", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xviii + 499", year = "2002", ISBN = "0-596-00064-2", ISBN-13 = "978-0-596-00064-6", LCCN = "QA76.9.U83 D355 2002 Stacks", bibdate = "Wed Oct 30 16:15:17 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html", price = "US\$39.95", URL = "http://www.oreilly.com/catalog/prowqt2", acknowledgement = ack-nhfb, keywords = "C (computer program language); graphical user interfaces (computer systems)", publishersummary = "Take full advantage of Qt, the powerful, easy-to-use, cross-platform GUI toolkit. Completely updated for Qt Version 3.0, Programming with Qt guides you through the steps of writing your first Qt application. It's also a reference to the what, how, and why of every GUI element in Qt. And it covers advanced topics like 2D transformations, drag-and-drop, and custom image file filters.", } @Book{Donar:2002:TUO, author = "Tim Donar", title = "{Tru64 UNIX--Oracle9i Cluster} quick reference", publisher = pub-DP, address = pub-DP:adr, pages = "xiv + 298", year = "2002", ISBN = "1-55558-272-9 (paperback)", ISBN-13 = "978-1-55558-272-2 (paperback)", LCCN = "QA76.76.D63 D66 2002", bibdate = "Tue Sep 17 05:57:21 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Compact solutions", acknowledgement = ack-nhfb, keywords = "operating systems (computers); Oracle; UNIX (computer file)", } @Article{dosSantos:2002:MAS, author = "Nelson dos Santos and Fl{\'a}vio Miguel Varej{\~a}o and Orivaldo de Lira Tavares", title = "Multi-agent Systems and Network Management --- {A} Positive Experience on {Unix} Environments", journal = j-LECT-NOTES-COMP-SCI, volume = "2527", pages = "616--??", year = "2002", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", bibdate = "Sat Nov 30 20:58:05 MST 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t2527.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://link.springer.de/link/service/series/0558/bibs/2527/25270616.htm; http://link.springer.de/link/service/series/0558/papers/2527/25270616.pdf", acknowledgement = ack-nhfb, } @Article{Dougan:2002:TAR, author = "Cort Dougan", title = "Two-Axis, Real-Time Camera Control", journal = j-DDJ, volume = "27", number = "10", pages = "60, 62, 64--67", month = oct, year = "2002", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Sep 13 10:53:48 MDT 2002", bibsource = "http://www.ddj.com/articles/2002/0210/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/ftp/2002/2002_10/rtlcam.txt; http://www.ddj.com/ftp/2002/2002_10/rtlcam.zip", abstract = "Cort presents RTLinux-based software for viewing live images and controlling a servo-motor driven, dual-axis mounted camera in real time via a web page. Additional resources include rtlcam.txt (listings) and rtlcam.zip (source code).", acknowledgement = ack-nhfb, } @InProceedings{Dunigan:2002:TTD, author = "Tom Dunigan and Matt Mathis and Brian Tierney", title = "A {TCP} Tuning Daemon", crossref = "IEEE:2002:STI", pages = "??--??", year = "2002", bibdate = "Wed Nov 26 07:34:20 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.sc-2002.org/paperpdfs/pap.pap151.pdf", abstract = "Many high performance distributed applications require high network throughput but are able to achieve only a small fraction of the available bandwidth. A common cause of this problem is improperly tuned network settings. Tuning techniques, such as setting the correct TCP buffers and using parallel streams, are well known in the networking community, but outside the networking community they are infrequently applied. In this paper, we describe a tuning daemon that uses TCP instrumentation data from the Unix kernel to transparently tune TCP parameters for specified individual flows over designated paths. No modifications are required to the application, and the user does not need to understand network or TCP characteristics.", acknowledgement = ack-nhfb, keywords = "autotuning; data grids; high-performance networking; TCP", } @Book{Factor:2002:AAS, author = "Alexander Factor", title = "Analyzing application service providers", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxiv + 326", year = "2002", ISBN = "0-13-089425-7", ISBN-13 = "978-0-13-089425-0", LCCN = "HF5548.32 .F33 2002", bibdate = "Fri Apr 11 15:07:01 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sun BluePrints Program", URL = "http://www.sun.com/books/catalog/factor/", acknowledgement = ack-nhfb, } @Book{Feiler:2002:MXD, author = "Jesse Feiler", title = "{Mac OS X} developer's guide", publisher = pub-MORGAN-KAUFMANN, address = pub-MORGAN-KAUFMANN:adr, pages = "xxiv + 594", year = "2002", ISBN = "0-12-251341-X", ISBN-13 = "978-0-12-251341-1", LCCN = "QA76.76.O63 F435 2002", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Mac OS", } @Book{Fink:2002:LPT, author = "Jason Fink and Matt Sherer and Kurt Wall", title = "{Linux} performance tuning and capacity planning", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xi + 317", year = "2002", ISBN = "0-672-32081-9", ISBN-13 = "978-0-672-32081-1", LCCN = "QA76.76.O63 F557 2002", bibdate = "Fri Nov 07 05:38:27 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Fischer:2002:OEL, author = "Todd Fischer", title = "Optimizing {Embedded Linux}", journal = j-DDJ, volume = "27", number = "5", pages = "51--57", month = may, year = "2002", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Apr 4 06:46:15 MST 2002", bibsource = "http://www.ddj.com/articles/2002/0205/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/ftp/2002/2002_05/emlinux.txt", abstract = "Todd shares seven hard-won techniques to aid in the embedded Linux development process. Additional resources include emlinux.txt (listings).", acknowledgement = ack-nhfb, } @Article{Flautner:2002:VAP, author = "Kriszti{\'a}n Flautner and Trevor Mudge", title = "{Vertigo}: automatic performance-setting for {Linux}", journal = j-OPER-SYS-REV, volume = "36", number = "5S", pages = "105--116", month = dec, year = "2002", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 12:49:42 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Flegel:2002:PUL, author = "Ulrich Flegel", title = "Pseudonymizing {Unix} Log Files", journal = j-LECT-NOTES-COMP-SCI, volume = "2437", pages = "162--??", year = "2002", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", bibdate = "Sat Nov 30 20:57:24 MST 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t2437.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://link.springer.de/link/service/series/0558/bibs/2437/24370162.htm; http://link.springer.de/link/service/series/0558/papers/2437/24370162.pdf", acknowledgement = ack-nhfb, } @Book{Friedl:2002:MRE, author = "Jeffrey E. F. Friedl", title = "Mastering Regular Expressions", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xxii + 460", year = "2002", ISBN = "0-596-00289-0", ISBN-13 = "978-0-596-00289-3", LCCN = "QA76.73.P22 F75 2002; QA76.9.T48 F75 2002", bibdate = "Mon Apr 18 15:04:47 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html; z3950.loc.gov:7090/Voyager", price = "US\$39.95", URL = "http://www.oreilly.com/catalog/9780596002893; http://www.oreilly.com/catalog/regex2", acknowledgement = ack-nhfb, keywords = "computer programming", publishersummary = "Regular expressions are an extremely powerful tool for manipulating text and data. They are now standard features in a wide range of languages and popular tools, including Perl, Java, VB.NET and C# (and any language using the .NET Framework), PHP, Python, Ruby, Tcl, MySQL, awk, and Emacs.\par If you don't use regular expressions yet, you will discover in this book a whole new world of mastery over your data. If you already use them, you'll appreciate this book's unprecedented detail and breadth of coverage.", subject = "Text processing (Computer science); Programming languages (Electronic computers); Electronic data processing", } @Book{Garfinkel:2002:BCA, author = "Simson Garfinkel and Michael K. Mahoney", title = "Building {Cocoa} Applications: {A} Step-by-Step Guide", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxv + 620", year = "2002", ISBN = "0-596-00235-1", ISBN-13 = "978-0-596-00235-0", LCCN = "QA76.76.O63 G37 2002 Stacks", bibdate = "Wed Oct 30 16:15:17 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html", price = "US\$44.95", URL = "http://safari.oreilly.com/0596002351; http://www.oreilly.com/catalog/buildcocoa", acknowledgement = ack-nhfb, keywords = "Cocoa (computer file); Mac OS; Macintosh (computer) -- programming; operating systems (computers); Unix (computer file)", publishersummary = "Building Cocoa Applications takes a step-by-step approach to teaching developers how to build real graphics applications using Cocoa. By showing the basics of an application in one chapter and then layering additional functionality onto that application in subsequent chapters, the book keeps readers interested and motivated. Readers will see immediate results, and then go on to build onto what they've already achieved. By the end of the book, readers who have built the applications as they have read will have a solid understanding of what it really means to develop complete and incrementally more complex Cocoa applications.", } @Book{Garg:2002:TOA, author = "Rajat P. Garg and Ilya Sharapov", title = "Techniques for optimizing applications: high performance computing", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xliii + 616", year = "2002", ISBN = "0-13-093476-3", ISBN-13 = "978-0-13-093476-5", LCCN = "QA76.88 .G37 2002", bibdate = "Fri Apr 11 08:26:42 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sun.com/blueprints/", series = "Sun BluePrints Program", URL = "http://www.sun.com/books/catalog/garg.html/index.html", acknowledgement = ack-nhfb, annote = "From the Web site: The \verb=HPC_code_examples.tar.Z= tar-file contains the source code, makefiles, and shell scripts required to compile, link, and run the example programs discussed in the book.", keywords = "Forte Developer; MPI; OpenMP; Sun ClusterTools; Sun Solaris", } @Book{Gottleber:2002:BU, author = "Tim Gottleber", title = "Bulletproof {UNIX}", publisher = pub-PH, address = pub-PH:adr, pages = "600", year = "2002", ISBN = "0-13-093028-8", ISBN-13 = "978-0-13-093028-6", LCCN = "QA76.76.O63 G69 2003", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "UNIX (computer file)", } @Book{Gregory:2002:SCS, author = "Peter H. Gregory", title = "{Sun Certified System Administrator} for {Solaris 8} Study Guide", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxviii + 416", year = "2002", ISBN = "0-13-040933-2", ISBN-13 = "978-0-13-040933-1", LCCN = "QA76.3.G753 2002", bibdate = "Fri Apr 11 17:05:07 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sun BluePrints Program", acknowledgement = ack-nhfb, } @Book{Gunther:2002:LUR, editor = "Karsten G{\"u}nther and Kester Grelck and Thorsten Zilm", title = "{Linux User Referenz: [Linux Drucksysteme: BSD und CUPS: Steuerung des Prozess-Systems: CDs erstellen und Textdateien bearbeiten: Pager, Formatierung und die glimpse-Tools}. ({German}) [{Linux} User Reference: {Linux} Printing Systems: {BSD} and {CUPS}: System Process Control: {CD} creation and text file processing; Pagination, Formatting and glimpse tools]", publisher = "mitp Verlag", address = "Bonn, Germany", pages = "1055 (est.)", year = "2002", ISBN = "3-8266-0709-0", ISBN-13 = "978-3-8266-0709-7", LCCN = "????", bibdate = "Tue Sep 17 06:18:42 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, language = "German", } @Book{Harbison:2002:CRM, author = "Samuel P. {Harbison III} and Guy L. {Steele Jr.}", title = "{C}\emdash {A} Reference Manual", publisher = pub-PH, address = pub-PH:adr, edition = "Fifth", pages = "xviii + 533", year = "2002", ISBN = "0-13-089592-X", ISBN-13 = "978-0-13-089592-9", LCCN = "QA76.73.C15 H38 2002", bibdate = "Sat Mar 30 08:29:26 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$45.00", URL = "http://www.CAReferenceManual.com/; http://www.phptr.com/ptrbooks/ptr_013089592X.html", acknowledgement = ack-nhfb, } @Book{Hawkins:2002:LDR, author = "Scott Hawkins", title = "{Linux} desk reference", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Second", pages = "xxi + 583", year = "2002", ISBN = "0-13-061989-2", ISBN-13 = "978-0-13-061989-1", LCCN = "QA76.76.O63 H386 2002", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{Hillegass:2002:CPM, author = "Aaron Hillegass", title = "{Cocoa} programming for {Mac OS X}", publisher = pub-AW, address = pub-AW:adr, pages = "xix + 383", year = "2002", ISBN = "0-201-72683-1 (paperback)", ISBN-13 = "978-0-201-72683-1 (paperback)", LCCN = "QA76.76.O63 H57145 2002", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Mac OS; Macintosh (computer) -- programming; operating systems (computers)", } @InProceedings{Hiraki:2002:DRU, author = "Kei Hiraki and Mary Inaba and Junji Tamatsukuri and Ryutaro Kurusu and Yukichi Ikuta and Hisashi Koga and Akira Zinzaki", title = "Data Reservoir: Utilization of Multi-Gigabit Backbone Network for Data-Intensive Research", crossref = "IEEE:2002:STI", pages = "??--??", year = "2002", bibdate = "Wed Nov 26 07:34:20 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.sc-2002.org/paperpdfs/pap.pap327.pdf", abstract = "We propose data sharing facility for data intensive scientific research, ``Data Reservoir''; which is optimized to transfer huge amount of data files between distant places fully utilizing multi-gigabit backbone network. In addition, ``Data Reservoir'' can be used as an ordinary UNIX server in local network without any modification of server software. We use low-level protocol and hierarchical striping to realize (1) separation of bulk data transfer and local accesses by caching, (2) file-system transparency, i.e., interoperable whatever in higher layer than disk driver, including file system. (3) scalability for network and storage. This paper shows our design, implementation using iSCSI protocol [1] and their performances for both 1Gbps model in the real network and 10Gbps model in our laboratory.", acknowledgement = ack-nhfb, } @Book{Hollabaugh:2002:ELH, author = "Craig Hollabaugh", title = "Embedded {Linux}: Hardware, Software, and Interfacing", publisher = pub-AW, address = pub-AW:adr, pages = "viii + 419", year = "2002", ISBN = "0-672-32226-9 (paperback)", ISBN-13 = "978-0-672-32226-6 (paperback)", LCCN = "QA76.76.O63 H6475 2002", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "embedded computer systems -- programming; Linux", } @Book{Horwitz:2002:USM, author = "Jeff Horwitz", title = "{Unix} system management: primer plus", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xvii + 531", year = "2002", ISBN = "0-672-32372-9", ISBN-13 = "978-0-672-32372-0", LCCN = "QA76.76.O63 H675 2002", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Book{Howard:2002:DIA, author = "John S. Howard and David Deeths", title = "Designing {ISP} Architectures", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxvii + 360", year = "2002", ISBN = "0-13-045496-6", ISBN-13 = "978-0-13-045496-6", LCCN = "QA76.9.A73N59 2002", bibdate = "Fri Apr 11 12:03:24 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sun.com/blueprints/", note = "Part No. 816-0917-10 March 2002, Revision 01.", series = "Sun BluePrints Program", URL = "books/isp_bp.pdf; http://www.sun.com/books/catalog/nguyen/", abstract = "This book is a model for designing architectures for ISPs of any size. Expressly for IT architects and consultants who design ISP architectures, this book details the design process from start to finish. Throughout this book, whether it's obtaining and evaluating requirements or creating logical and physical designs, we provide helpful tips, insights, and expertise. We compare design approaches, offer suggestions for evaluating trade-offs, and alert you to common pitfalls.", acknowledgement = ack-nhfb, xxauthor = "John V. Nguyen", xxnote = "Library catalogs and book Web site show Nguyen as author, but that name is not found anywhere in the electronic form of the book, which lists Howard and Deeths as authors.", } @Article{Hubbard:2002:BCR, author = "John F. Hubbard", title = "Binary Code Reuse in a {Linux} Environment", journal = j-CCCUJ, volume = "20", number = "3", pages = "??--??", month = mar, year = "2002", CODEN = "CCUJEX", ISSN = "1075-2838", bibdate = "Tue May 14 18:09:36 MDT 2002", bibsource = "http://www.cuj.com/articles/2002/0203/0203toc.htm?topic=articles; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Traditional Unix-like filters meet C++ in these useful classes for launching and controlling processes in Linux.", acknowledgement = ack-nhfb, } @Book{Hughes:2002:PDC, author = "Sterling Hughes and Andrei Zmievski", title = "{PHP} developer's cookbook", publisher = pub-SAMS, address = pub-SAMS:adr, edition = "Second", pages = "xvii + 480", year = "2002", ISBN = "0-672-32325-7", ISBN-13 = "978-0-672-32325-6", LCCN = "QA76.73.P224 H84 2002", bibdate = "Wed Jan 28 13:18:08 MST 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "PHP (Computer program language)", } @Book{Hunt:2002:LNS, author = "Craig Hunt", title = "{Linux} network servers", publisher = pub-SYBEX, address = pub-SYBEX:adr, year = "2002", ISBN = "0-7821-4123-4", ISBN-13 = "978-0-7821-4123-8", LCCN = "QA76.76.O63 H86 2002b; **See", bibdate = "Tue Jun 20 18:27:37 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; library.mit.edu:9909/mit01", series = "Craig Hunt Linux library", URL = "http://library.books24x7.com/library.asp?B&isbn=0782141234", acknowledgement = ack-nhfb, remark = "Part 1. The Basics \\ Ch. 1. The Boot Process \\ Ch. 2. The Network Interface \\ Part 2. Internet Server Configuration \\ Ch. 3. Login Services \\ Ch. 4. Linux Name Services \\ Ch. 5. Configuring a Mail Server \\ Ch. 6. The Apache Web Server \\ Ch. 7. Network Gateway Services \\ Part 3. Departmental Server Configuration \\ Ch. 8. Desktop Configuration Servers \\ Ch. 9. File Sharing \\ Ch. 10. Printer Services \\ Ch. 11. More Mail Services \\ Part 4. Maintaining a Healthy Server \\ Ch. 12. Security \\ Ch. 13. Troubleshooting. App. A. Installing Linux \\ App. B. BIND Reference \\ App. C. The m4 Macros for sendmail", subject = "Linux; Operating systems (Computers)", } @Book{Hunt:2002:TIN, author = "Craig Hunt", title = "{TCP\slash IP} Network Administration", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "xvii + 725", year = "2002", ISBN = "0-596-00297-1", ISBN-13 = "978-0-596-00297-8", LCCN = "TK5105.55 .H86 2002", bibdate = "Wed Oct 30 16:15:17 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html", price = "US\$44.95", URL = "http://safari.oreilly.com/0596002971; http://www.oreilly.com/catalog/tcp3", acknowledgement = ack-nhfb, keywords = "TCP/IP (computer network protocol); Unix (computer file)", publishersummary = "This complete hands-on guide to setting up and running a TCP/IP network starts with the fundamentals: what protocols do and how they work, how addresses and routing are used, and how to set up your network connection. The book also covers advanced routing protocols and provides tutorials on configuring important network services. The expanded third edition includes sections on Samba, Apache Web server, network security, and much more.", } @Article{Jennings:2002:JQ, author = "Mike Jennings", title = "{Java Q\&A}: How Do {I} Use the {Java} Plug-In Tool?", journal = j-DDJ, volume = "27", number = "1", pages = "93--94", month = jan, year = "2002", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 12 05:21:41 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/ftp/2002/2002_01/jqa0102.zip", abstract = "Sun Microsystems' freely available Java plug-in tool works with operating system/browser combinations ranging from Netscape Navigator and IE on Windows to Netscape Navigator on Linux. Mike shows how to use the tool to deploy Java 1.3-enabled applets. Additional resources include {\tt jqa0102.zip} (source).", acknowledgement = ack-nhfb, } @Book{Jepson:2002:MXU, author = "Brian Jepson and Ernest E. Rothman", title = "{Mac OS X} for Unix Geeks", publisher = pub-ORA, address = pub-ORA:adr, pages = "xv + 198", year = "2002", ISBN = "0-596-00356-0", ISBN-13 = "978-0-596-00356-2", LCCN = "QA76.76.O63 J47 2002", bibdate = "Wed Oct 30 16:15:17 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html", price = "US\$24.95", URL = "http://safari.oreilly.com/0596003560; http://www.oreilly.com/catalog/mosxgeeks", acknowledgement = ack-nhfb, publishersummary = "If you're one of the many Unix developers drawn to Mac OS X for its BSD core, you'll find yourself in surprisingly unfamiliar territory. Even if you're an experienced Mac user, Mac OS X is unlike earlier Macs, and it's radically different from the Unix you've used before, too.\par Enter ``Mac OS X for Unix Geeks'' by Brian Jepson and Ernest E. Rothman, two Unix geeks who found themselves in the same place you are. Their new book is your guide to figuring out the BSD Unix system and Mac-specific components that are making your life difficult and to help ease you into the Unix inside Mac OS X.", } @Article{Jones:2002:JMA, author = "M. Tim Jones", title = "{Java} Mobile Agents and the {Aglets SDK}", journal = j-DDJ, volume = "27", number = "1", pages = "42, 44, 46--48", month = jan, year = "2002", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 12 05:21:41 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/ftp/2002/2002_01/aglet.txt", abstract = "Tim uses the Aglets framework to develop Java mobile agents on Linux. The mobile agent he presents migrates to a number of hosts and performs data collection along the way. Additional resources include {\tt aglet.txt} (listings).", acknowledgement = ack-nhfb, } @Book{Khan:2002:PLP, author = "Ashfaq A. Khan", title = "Practical {Linux} programming: device drivers, embedded systems, and the {Internet}", publisher = "Charles River Media, Inc.", address = "Hingham, MA, USA", pages = "xv + 420", year = "2002", ISBN = "1-58450-096-4 (paperback)", ISBN-13 = "978-1-58450-096-4 (paperback)", LCCN = "QA76.76.O63 K497 2002", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Article{Kiesling:2002:OUE, author = "Robert Kiesling", title = "{ODBC} In {Unix} Environments", journal = j-DDJ, volume = "27", number = "12", pages = "16, 18--20, 22", month = dec, year = "2002", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Jun 12 05:46:20 MDT 2003", bibsource = "http://www.ddj.com/articles/2002/0212/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/documents/s=7718/ddj2012b/", abstract = "The Open DataBase Computing (ODBC) Standard provides an efficient way to write client-server apps, including those that are UNIX based. Robert focuses on the unixODBC library because of its support for MySQL and PostgreSQL.", acknowledgement = ack-nhfb, } @Article{Kim:2002:MCR, author = "JeongWon Kim and YoungUhg Lho and YoungJu Kim and KwangBaek Kim and SeungWon Lee", title = "A Memory Copy Reduction Scheme for Networked Multimedia Service in {Linux} Kernel", journal = j-LECT-NOTES-COMP-SCI, volume = "2510", pages = "188--??", year = "2002", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", bibdate = "Sat Nov 30 20:57:47 MST 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t2510.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://link.springer.de/link/service/series/0558/bibs/2510/25100188.htm; http://link.springer.de/link/service/series/0558/papers/2510/25100188.pdf", acknowledgement = ack-nhfb, } @Article{Knickerbocker:2002:AMM, author = "J. U. Knickerbocker and F. L. Pompeo and A. F. Tai and D. L. Thomas and R. D. Weekly and M. G. Nealon and H. C. Hamel and A. Haridass and J. N. Humenik and R. A. Shelleman and S. N. Reddy and K. M. Prettyman and B. V. Fasano and S. K. Ray and T. E. Lombardi and K. C. Marston and P. A. Coico and P. J. Brofman and L. S. Goldmann and D. L. Edwards and J. A. Zitz and S. Iruvanti and S. L. Shinde and H. P. Longworth", title = "An advanced multichip module ({MCM}) for high-performance {UNIX} servers", journal = j-IBM-JRD, volume = "46", number = "6", pages = "779--804", month = "????", year = "2002", CODEN = "IBMJAE", ISSN = "0018-8646 (print), 2151-8556 (electronic)", bibdate = "Fri Nov 22 17:58:44 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.research.ibm.com/journal/", URL = "http://www.research.ibm.com/journal/rd/466/knickerbocker.pdf", acknowledgement = ack-nhfb, ordernumber = "G322-0233", } @Book{Komarinski:2002:PIT, author = "Mark Komarinski", title = "{PTG Interactive}'s Training Course for {Red Hat Linux}: {A} Digital Seminar on {CD-ROM}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "????", year = "2002", ISBN = "0-13-034799-X", ISBN-13 = "978-0-13-034799-2", LCCN = "????", bibdate = "Fri Mar 22 08:26:15 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.phptr.com/ptrbooks/ptr_013034799X.html", price = "US\$69.99", acknowledgement = ack-nhfb, } @Book{Kutti:2002:CUP, author = "N. S. Kutti", title = "{C} and {Unix} programming: a comprehensive guide incorporating the {ANSI} and {POSIX} standards", publisher = "Lightspeed Books", address = "Mt. Pleasant, SC, USA", pages = "xviii + 661", year = "2002", ISBN = "1-929175-40-X (hardcover), 1-929175-26-4 (paperback)", ISBN-13 = "978-1-929175-40-6 (hardcover), 978-1-929175-26-0 (paperback)", LCCN = "QA76.73.C15 K88 2001", bibdate = "Tue Mar 14 09:59:09 MST 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; sirsi.library.utoronto.ca:2200/UNICORN", acknowledgement = ack-nhfb, subject = "C (Computer program language); UNIX (Computer file); Computer programming; POSIX (Computer software standard)", } @Book{Lathrop:2002:LSB, author = "John P. Lathrop", title = "{Linux} in Small Business: {A} Practical User's Guide", publisher = pub-APRESS, address = pub-APRESS:adr, pages = "336 (est.)", year = "2002", ISBN = "1-893115-46-1", ISBN-13 = "978-1-893115-46-0", LCCN = "????", bibdate = "Fri Feb 22 15:19:11 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$36.95", acknowledgement = ack-nhfb, } @Book{Levi:2002:UAC, author = "Bozidar Levi", title = "{UNIX} administration: a comprehensive sourcebook for effective systems and network management", publisher = pub-CRC, address = pub-CRC:adr, pages = "743", year = "2002", ISBN = "0-8493-1351-1", ISBN-13 = "978-0-8493-1351-6", LCCN = "QA76.76.O63 L4853 2002", bibdate = "Thu Nov 14 06:54:15 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Internet and communications", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX System V (computer file)", } @TechReport{Li:2002:LLF, author = "Ren-Cang Li and Peter Markstein and Jon P. Okada and James W. Thomas", title = "The {\tt libm} library and floating-point arithmetic for {HP-UX} on {Itanium-2}", type = "Technical report", institution = inst-HP, address = inst-HP:adr, pages = "??", year = "2002", bibdate = "Tue Nov 18 15:06:56 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "????", acknowledgement = ack-nhfb, } @Book{Lingmann:2002:DSK, author = "Thomas Lingmann", title = "{Datenverschl{\"u}sselung: sichere Kommunikation mit Linux und BSD: Security mit Open Source}. ({German}) [{Data} encoding: Secure communication with {Linux} and {BSD}: {Security} with {Open Source}]", publisher = "C \& L", address = "B{\"o}blingen, Germany", pages = "476 (est.)", year = "2002", ISBN = "3-932311-87-8 (??invalid checksum??)", ISBN-13 = "978-3-932311-87-1 (??invalid checksum??)", LCCN = "????", bibdate = "Tue Sep 17 06:16:52 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "System security and cryptography; Systemsicherheit und Kryptographie", language = "German", } @Article{Lischner:2002:BCC, author = "Ray Lischner", title = "{Borland}'s {CLX} Component Framework", journal = j-DDJ, volume = "27", number = "2", pages = "77, 79--81", month = feb, year = "2002", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Tue Feb 12 05:21:41 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/ftp/2002/2002_02/clx.txt", abstract = "CLX is a component framework for cross-platform development from Borland Software that debuted in Kylix and Linux. It is also available for Windows in Delphi 6. Additional resources include {\tt clx.txt} (listings).", acknowledgement = ack-nhfb, } @Book{Lucas:2002:ABU, author = "Michael Lucas", title = "Absolute {BSD}: {The} Ultimate Guide to {FreeBSD}", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "xlii + 565", month = jul, year = "2002", ISBN = "1-886411-74-3", ISBN-13 = "978-1-886411-74-6", LCCN = "QA76.76.O63 L83 2002", bibdate = "Tue Sep 17 05:37:36 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.nostarch.com/abs_bsd.htm", note = "Foreword by Jordan Hubbard.", price = "US\$39.95", acknowledgement = ack-nhfb, subject = "FreeBSD; UNIX (Computer file); Internet service providers; Computer programs; Web servers; Computer programs; Client/server computing", } @Book{Maxwell:2002:USA, author = "Steven Maxwell", title = "{UNIX} system administration: a beginner's guide", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, pages = "xx + 675", year = "2002", ISBN = "0-07-219486-3", ISBN-13 = "978-0-07-219486-9", LCCN = "QA76.76.O63 M39 2002", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "UNIX (computer operating system)", } @Book{McCarty:2002:LRL, author = "Bill McCarty", title = "Learning {Red Hat Linux}: {A} Guide to {Red Hat Linux} for New Users", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xx + 346", year = "2002", ISBN = "0-596-00071-5", ISBN-13 = "978-0-596-00071-4", LCCN = "QA76.76.O63 M376 2002", bibdate = "Mon Apr 18 15:02:17 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html; z3950.loc.gov:7090/Voyager", note = "Includes CD-ROM with Red Hat Linux 7.2.", price = "US\$34.95", URL = "http://safari.oreilly.com/0596000715; http://www.oreilly.com/catalog/9780596000714; http://www.oreilly.com/catalog/redhat2", acknowledgement = ack-nhfb, keywords = "GNU/Linux; Linux; operating systems (computers)", publishersummary = "This second edition of Learning Red Hat Linux is an excellent introduction to one of the most popular distributions of Linux in the U.S. It has been upgraded to cover installation and configuration of Red Hat version 7.2. Because the book is written specifically for the enclosed CDs, the reader needs nothing else to get started with their new Linux system. This is the book for first-time Linux users who want to learn how to use Red Hat Linux on their personal computer, or convert an existing system over to Linux.", subject = "GNU/Linux; Operating systems (Computers)", } @Article{Miao:2002:TDM, author = "Yu-Ben Miao and Wen-Shyang Hwang and Ce-Kuen Shieh", title = "A transparent deployment method of {RSVP}-aware applications on {UNIX}", journal = j-COMP-NET-AMSTERDAM, volume = "40", number = "1", pages = "45--56", day = "??", month = sep, year = "2002", CODEN = "????", ISSN = "1389-1286", bibdate = "Sat Nov 9 12:48:58 MST 2002", bibsource = "http://www.elsevier.com/locate/issn/13891286; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.elsevier.com/gej-ng/10/15/22/97/27/30/abstract.html", acknowledgement = ack-nhfb, } @Book{Muster:2002:UME, author = "John Muster", title = "{UNIX} made easy: {Unix} and {Linux} basics and beyond", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, edition = "Third", pages = "xviii + 1011", year = "2002", ISBN = "0-07-219314-X", ISBN-13 = "978-0-07-219314-5", LCCN = "QA76.76.O63 M877 2002", bibdate = "Thu Nov 14 06:54:15 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers); Unix (computer file)", } @Book{Musumeci:2002:SPT, author = "Gian-Paolo D. Musumeci and Mike Loukides", title = "System Performance Tuning", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xiv + 334", year = "2002", ISBN = "0-596-00284-X", ISBN-13 = "978-0-596-00284-8", LCCN = "QA76.76.O63 L66 2002 Stacks", bibdate = "Wed Oct 30 16:15:17 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html", price = "US\$39.95", URL = "http://safari.oreilly.com/059600284X; http://www.oreilly.com/catalog/spt2", acknowledgement = ack-nhfb, keywords = "electronic data processing -- management; operating systems (computers); Solaris (computer file); Unix (computer file)", publishersummary = "System Performance Tuning covers two distinct areas: performance tuning, or the art of increasing performance for a specific application, and capacity planning, or deciding what hardware best fulfills a given role. Underpinning both subjects is the science of computer architecture. This book focuses on the operating system, the underlying hardware, and their interactions. For system administrators who want a hands-on introduction to system performance, this is the book to recommend.", } @Book{Myers:2002:CNA, author = "Dan Myers and Jim Lorenz", title = "{Cisco Networking Academy Program}: fundamentals of {UNIX} companion guide", publisher = pub-MACMILLAN, address = pub-MACMILLAN:adr, pages = "xxx + 578", year = "2002", ISBN = "1-58713-044-0", ISBN-13 = "978-1-58713-044-1", LCCN = "QA76.76.O63 M9438 2002", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.loc.gov/catdir/toc/fy033/2001091176.html", acknowledgement = ack-nhfb, keywords = "operating systems (computers) problems, exercises, etc.; UNIX (computer file)", } @Book{Negus:2002:RLB, author = "Chris Negus", title = "{Red Hat Linux 8} bible", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xviii + 1063", year = "2002", ISBN = "0-7645-4968-5", ISBN-13 = "978-0-7645-4968-7", LCCN = "QA76.73.O63 N44 2002", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{Nemeth:2002:LAH, author = "Evi Nemeth and Garth Snyder and Trent Hein", title = "{Linux} Administration Handbook", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxi + 890", year = "2002", ISBN = "0-13-008466-2", ISBN-13 = "978-0-13-008466-8", LCCN = "QA76.76.O63 N448 2002", bibdate = "Tue Apr 23 06:44:15 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.99", acknowledgement = ack-nhfb, } @Book{Noordergraaf:2002:ESS, author = "Alex Noordergraaf and Tony M. Benson and Glenn Brunette and Vasanthan Dasan and Mark Hashimoto and Dina Kurktchi and Richard Lau and Lou Ordorica and Will Osser and Keith Watson", title = "Enterprise Security: {Solaris} Operating Environment Security Journal, {Solaris OE} v2.5.1, 2.6, 7, and 8", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxx + 416", year = "2002", ISBN = "0-13-100092-6", ISBN-13 = "978-0-13-100092-6", LCCN = "QA76.9.A25N66 2002", bibdate = "Fri Apr 11 12:03:24 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sun.com/blueprints/", note = "Part No. 816-5040-10 June 2002, Revision 01.", series = "Sun BluePrints Program", URL = "books/816-5040-10.pdf; http://www.sun.com/books/catalog/noord2/", abstract = "This guide provides the reader with best practices from Sun Microsystems for architecting multi-tiered datacenter environments. It features documented, automated, and supported security best practices for high-end servers and cluster software. Written for experienced developers and system administrators, it includes tricks, tools, and techniques that hackers use to break into systems, The author details best practices and tools for sniffing out `trojaned' system files and binaries and describes Solaris OE security features, network settings, and minimization.", acknowledgement = ack-nhfb, } @Book{Northcutt:2002:INP, author = "Stephen Northcutt and Lenny Zeltser and Scott Winters and Karen Fredrick and Ronald W. Ritchey", title = "Inside Network Perimeter Security: The Definitive Guide to Firewalls, {Virtual Private Networks} ({VPNs}), Routers, and Intrusion Detection Systems", publisher = pub-QUE, address = pub-QUE:adr, pages = "xxvii + 678", year = "2002", ISBN = "0-7357-1232-8", ISBN-13 = "978-0-7357-1232-4", LCCN = "TK5105.59 .I53 2003", bibdate = "Sat Dec 06 08:37:05 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.99", acknowledgement = ack-nhfb, } @Article{Norton:2002:ISP, author = "Roger Norton", title = "{IT} Systems Perspective: Using Virtual {Linux} Servers", journal = j-COMPUTER, volume = "35", number = "11", pages = "106--107", month = nov, year = "2002", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Fri Dec 12 19:53:36 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://csdl.computer.org/dl/mags/co/2002/11/ry106.htm; http://csdl.computer.org/dl/mags/co/2002/11/ry106.pdf", acknowledgement = ack-nhfb, } @Book{OG:2002:SUS, author = "{The Open Group}", title = "The {Single UNIX Specification}: The Authorized Guide to Version 3", publisher = "The Open Group", address = "Publications Department, Apex Plaza, Forbury Road, Reading, Berkshire RG1 1AX, UK", pages = "????", year = "2002", ISBN = "1-85912-277-9 (UK), 1-931624-13-5 (US)", ISBN-13 = "978-1-85912-277-8 (UK), 978-1-931624-13-8 (US)", LCCN = "????", bibdate = "Fri Jul 04 12:25:49 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Open Group Document Number G906.", price = "US\$59, UK\pounds 36", URL = "http://www.unix-systems.org/version3/theguide.html", acknowledgement = ack-nhfb, annote = "Includes CD-ROM with the full set of documentation for the Single UNIX Specification, Version 1, 2 and 3, IEEE Std 1003.1-2001 (POSIX) and more.", } @Book{Packer:2002:CTD, author = "Allan N. Packer", title = "Configuring \& Tuning Databases on the {Solaris} Platform", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxxiv + 502", year = "2002", ISBN = "0-13-083417-3", ISBN-13 = "978-0-13-083417-1", LCCN = "QA76.9.D26P33 2002", bibdate = "Fri Apr 11 15:32:26 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sun BluePrints Program", acknowledgement = ack-nhfb, } @Book{Palmer:2002:GUU, author = "Michael Palmer and Jack Dent and Tony Gaddis", title = "Guide to {UNIX} using {Linux}", publisher = "Thomson/Course Technology", address = "Boston, MA, USA", edition = "Second", pages = "xx + 540", year = "2002", ISBN = "0-619-12147-5", ISBN-13 = "978-0-619-12147-1", LCCN = "QA76.76.O63 P35 2002", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Previous edition written by Jack Dent and Tony Gaddis. Includes a copy of Red Hat Linux 7.2 publisher's edition.", series = "Networking", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Article{Park:2002:RTM, author = "Nam-Sup Park and Sang-Jun Nam and Tai-Yun Kim", title = "Real-Time Multimedia Data Transmission Module Based on {Linux}", journal = j-LECT-NOTES-COMP-SCI, volume = "2343", pages = "504--??", year = "2002", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", bibdate = "Sat Nov 30 20:57:12 MST 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t2343.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://link.springer.de/link/service/series/0558/bibs/2343/23430504.htm; http://link.springer.de/link/service/series/0558/papers/2343/23430504.pdf", acknowledgement = ack-nhfb, } @Book{Petersen:2002:LCR, author = "Richard Petersen", title = "{Linux}: the complete reference", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, edition = "Fifth", pages = "xxvii + 911", year = "2002", ISBN = "0-07-222505-X, 0-07-222506-8 (book), 0-07-222507-6 (DVD)", ISBN-13 = "978-0-07-222505-1, 978-0-07-222506-8 (book), 978-0-07-222507-5 (DVD)", LCCN = "QA76.76.O63 P523 2002", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "DVD-ROM includes complete 5 CD-ROM set for the entire Red Hat distributions and comprehensive set of Linux software applications, including the GNU software packages (graphics, communications, publishing, editing, programming, games), as well as development tools, and Internet servers (FTP, Web, mail, news, and DNS).", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{Petersen:2002:RLC, author = "Richard Petersen", title = "{Red Hat Linux}: the complete reference", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, edition = "Second", pages = "xxx + 1117", year = "2002", ISBN = "0-07-219178-3", ISBN-13 = "978-0-07-219178-3", LCCN = "QA76.76.O63 P5237 2002", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Book{Pogue:2002:MX, author = "David Pogue", title = "{Mac OS X}", publisher = pub-POGUE-ORA, address = pub-POGUE-ORA:adr, edition = "Second", pages = "xii + 712", year = "2002", ISBN = "0-596-00450-8", ISBN-13 = "978-0-596-00450-7", LCCN = "QA76.76.O63 P634 2002", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Covers Jaguar 10.2. Contents: Folders and windows -- Organizing your stuff -- Dock, desktop, and toolbar -- Programs and documents -- Back to Mac OS 9 -- Moving data -- System preferences -- The three programs -- CDs, DVDs, and iTunes -- On Mac, many users -- Networking -- Graphics, fonts, and printing -- Sound, movies, speech, and handwriting -- Terminal: doorway to Unix -- Fun with Unix -- Hacking Mac OS X -- Internet setup, the firewall, and .Mac -- Mail and address book -- Sherlock 3, iChat, and iCal -- SSH, FTP, VPN, and web sharing", series = "Missing manual", acknowledgement = ack-nhfb, keywords = "Mac OS handbooks, manuals, etc; Macintosh (computer) -- handbooks, manuals, etc; operating systems (computers) -- handbooks, manuals, etc", } @Book{Pogue:2002:MXM, author = "David Pogue", title = "{Mac OS X}: the missing manual", publisher = pub-POGUE-ORA, address = pub-POGUE-ORA:adr, pages = "xii + 583", year = "2002", ISBN = "0-596-00082-0", ISBN-13 = "978-0-596-00082-0", LCCN = "QA76.76.O63 P634 2002", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Missing manual", acknowledgement = ack-nhfb, keywords = "Mac OS handbooks, manuals, etc; Macintosh (computer) -- handbooks, manuals, etc; operating systems (computers) -- handbooks, manuals, etc", } @Book{Poniatowski:2002:HUV, author = "Marty Poniatowski", title = "{HP-UX} Virtual Partitions", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxxii + 1012", year = "2002", ISBN = "0-13-035212-8", ISBN-13 = "978-0-13-035212-5", LCCN = "QA76.76.O63 P649 2002", bibdate = "Fri Mar 22 08:20:04 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.phptr.com/ptrbooks/ptr_0130352128.html", price = "US\$49.99", series = "Hewlett--Packard professional books", acknowledgement = ack-nhfb, annote = "From the publisher: ``Using Virtual Partitions (vPars), you can transform your HP 9000 system into multiple `virtual computers,' each running its own instance of HP-UX and associated applications -- dramatically improving efficiency, flexibility, availability, and manageability. This is your complete, step-by-step guide to vPars: planning, installation, configuration, modification, administration, backup/restore, recovery, and much more.''", subject = "HP-UX; Operating systems (Computers)", xxnote = "Check ISBN: UC/Melvyl and Library of Congress show it assigned to an anatomy book, and neither has a catalog entry under this author or title??", } @Book{Poniatowski:2002:UUH, author = "Martin Poniatowski", title = "{UNIX} user's handbook", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Second", pages = "xxxix + 1416", year = "2002", ISBN = "0-13-065419-1 (paperback)", ISBN-13 = "978-0-13-065419-9 (paperback)", LCCN = "QA76.76.O63 P654 2002", bibdate = "Tue Sep 17 05:57:21 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Hewlett--Packard professional books", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Book{Powers:2002:UPT, author = "Shelley Powers and Jerry Peek and Tim O'Reilly and Mike Loukides and others", title = "{Unix} Power Tools", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "xxxviii + 1116", year = "2002", ISBN = "0-596-00330-7", ISBN-13 = "978-0-596-00330-2", LCCN = "QA76.76.O63 P44 2003", bibdate = "Wed Oct 30 16:15:17 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html", price = "US\$69.95", URL = "http://www.oreilly.com/catalog/upt3", acknowledgement = ack-nhfb, publishersummary = "The latest edition of this best-selling favorite is loaded with vital information on Linux, Darwin, and BSD. Unix Power Tools 3rd Edition now offers more coverage of bash, zsh, and other new shells, along with discussions about modern utilities and applications. Several sections focus on security and Internet access. There is a new chapter on access to Unix from Windows, and expanded coverage of software installation and packaging, as well as basic information on Perl and Python.", subject = "UNIX (Computer file); Utilities (Computer programs)", } @Book{Quigley:2002:USE, author = "Ellie Quigley", title = "{UNIX} shells by example", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Third", pages = "xix + 1015", year = "2002", ISBN = "0-13-066538-X", ISBN-13 = "978-0-13-066538-6", LCCN = "QA76.76.O63 Q54 2002", bibdate = "Tue Sep 17 05:57:21 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "UNIX (computer file); UNIX shells", } @Book{Ray:2002:MXU, author = "John Ray and William Ray", title = "{Mac OS X} unleashed", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xxi + 1464", year = "2002", ISBN = "0-672-32229-3", ISBN-13 = "978-0-672-32229-7", LCCN = "QA76.76.O63 R391 2002", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Mac OS; Macintosh (computer) -- programming; operating systems (computers)", } @Book{Rehman:2002:LDP, author = "Rafeeq Rehman and Christopher Paul", title = "The {Linux} Development Platform", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxii + 294", year = "2002", ISBN = "0-13-009115-4", ISBN-13 = "978-0-13-009115-4", LCCN = "QA76.76.O63 R435 2003", bibdate = "Wed Dec 03 07:44:09 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.99", series = "Bruce Perens' Open source series", acknowledgement = ack-nhfb, } @Book{Robbins:2002:SAK, author = "Arnold Robbins", title = "{Sed und awk. Kurz und gut}", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "62", year = "2002", ISBN = "3-89721-246-3", ISBN-13 = "978-3-89721-246-6", LCCN = "????", bibdate = "Thu Jul 15 17:54:58 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk", acknowledgement = ack-nhfb, language = "German", remark = "German translation of \cite{Robbins:2002:SAP}.", } @Book{Robbins:2002:SAP, author = "Arnold Robbins", title = "sed \& awk Pocket Reference", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "52 (est.)", year = "2002", ISBN = "0-596-00352-8", ISBN-13 = "978-0-596-00352-4", LCCN = "????", bibdate = "Wed Oct 30 16:15:17 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html", price = "US\$12.95", URL = "http://safari.oreilly.com/0596003528; http://www.oreilly.com/catalog/sedawkrepr2", acknowledgement = ack-nhfb, publishersummary = "The sed \& awk Pocket Reference is a handy, quick reference guide to frequently used functions, commands, and regular expressions used for day-to-day text processing needs. This book is a companion to both sed \& awk, Second Edition and Effective awk Programming, Third Edition.", } @Article{Roelle:2002:HFS, author = "Harald Roelle", title = "A Hot-Failover State Machine for Gateway Services and Its Application to a {Linux} Firewall", journal = j-LECT-NOTES-COMP-SCI, volume = "2506", pages = "181--??", year = "2002", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", bibdate = "Sat Nov 30 20:57:46 MST 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t2506.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://link.springer.de/link/service/series/0558/bibs/2506/25060181.htm; http://link.springer.de/link/service/series/0558/papers/2506/25060181.pdf", acknowledgement = ack-nhfb, } @Book{Russell:2002:SCI, editor = "Steve Russell and others", title = "Server consolidation with the {IBM eServer xSeries 440} and {VMware ESX Server}", publisher = "IBM, International Technical Support Organization", address = "????", pages = "xiv + 222", month = NOV, year = "2002", ISBN = "0-7384-2684-9", ISBN-13 = "978-0-7384-2684-6", LCCN = "QA76.9.C55 S378 2002", bibdate = "Sun Apr 9 15:43:22 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", note = "Publication number SG24-6852-00.", series = "IBM redbooks", acknowledgement = ack-nhfb, subject = "Client/server computing; Management; Web servers; IBM computers", } @Article{Shalaby:2002:SSN, author = "Nadia Shalaby and Yitzchak Gottlieb and Mike Wawrzoniak and Larry Peterson", title = "Snow on Silk: {A} {NodeOS} in the {Linux} Kernel", journal = j-LECT-NOTES-COMP-SCI, volume = "2546", pages = "1--??", year = "2002", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", bibdate = "Sat Nov 30 20:58:13 MST 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t2546.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://link.springer.de/link/service/series/0558/bibs/2546/25460001.htm; http://link.springer.de/link/service/series/0558/papers/2546/25460001.pdf", acknowledgement = ack-nhfb, } @Book{Sheer:2002:LRU, author = "Paul Sheer", title = "{Linux}: rute users tutorial and exposition", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxxi + 630", year = "2002", ISBN = "0-13-033351-4", ISBN-13 = "978-0-13-033351-3", LCCN = "QA76.76.O63 S5527 2002", bibdate = "Mon Apr 29 08:30:06 MDT 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM with a complete HTML version of the book.", series = "Prentice Hall PTR open source technology series", URL = "http://vig.prenhall.com/catalog/academic/product/1,4096,0130333514,00.html", acknowledgement = ack-nhfb, keywords = "Linux; operating systems (computers)", } @Article{Sieh:2002:UVS, author = "Volkmar Sieh and Kerstin Buchacker", title = "{UMLinux} --- {A} Versatile {SWIFI} Tool", journal = j-LECT-NOTES-COMP-SCI, volume = "2485", pages = "159--??", year = "2002", CODEN = "LNCSD9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", bibdate = "Sat Nov 30 20:57:38 MST 2002", bibsource = "http://link.springer-ny.com/link/service/series/0558/tocs/t2485.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://link.springer.de/link/service/series/0558/bibs/2485/24850159.htm; http://link.springer.de/link/service/series/0558/papers/2485/24850159.pdf", acknowledgement = ack-nhfb, } @Book{Smith:2002:ALN, author = "Roderick W. Smith", title = "Advanced {Linux} networking", publisher = pub-AW, address = pub-AW:adr, pages = "xviii + 752", year = "2002", ISBN = "0-201-77423-2", ISBN-13 = "978-0-201-77423-8", LCCN = "QA76.76.O63 S58845 2002", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "computer networks; Linux; operating systems (computers)", } @MastersThesis{Smith:2002:LOT, author = "Kevin Smith", title = "{Linux}, {OpenBSD}, and {Talisker}: {A} Comparative Complexity Analysis", type = "{Master}'s thesis", school = "Naval Postgraduate School", address = "Monterey, CA, USA", pages = "153", year = "2002", bibdate = "Tue Mar 16 06:30:16 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Stallman:2002:DGG, author = "Richard M. Stallman and Roland Pesch and Stan Shebs and others", title = "Debugging with {GDB}: The {GNU} Source-Level Debugger", publisher = pub-GNU-PRESS, address = pub-GNU-PRESS:adr, pages = "viii + 344", year = "2002", ISBN = "1-882114-88-4", ISBN-13 = "978-1-882114-88-7", LCCN = "QA76.9.D43 D422 2003", bibdate = "Wed Jun 11 15:41:32 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", price = "US\$25.00", URL = "http://www.gnupress.org/book7.html", acknowledgement = ack-nhfb, remark = "For gdb 5.1", } @Book{Stanfield:2002:LSA, author = "Vicki Stanfield and Roderick W. Smith", title = "{Linux} system administration", publisher = pub-SYBEX, address = pub-SYBEX:adr, edition = "Second", pages = "xxvii + 624", year = "2002", ISBN = "0-7821-4138-2", ISBN-13 = "978-0-7821-4138-2", LCCN = "QA76.76.O63 S7346 2002", bibdate = "Tue Jun 20 18:11:26 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Craig Hunt Linux library", URL = "http://www.loc.gov/catdir/enhancements/fy0613/2002106413-b.html; http://www.loc.gov/catdir/enhancements/fy0613/2002106413-d.html; http://www.loc.gov/catdir/enhancements/fy0613/2002106413-t.html", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Book{Sterling:2002:BCC, author = "Thomas Lawrence Sterling", title = "{Beowulf} cluster computing with {Linux}", publisher = pub-MIT, address = pub-MIT:adr, pages = "xxxiii + 496", year = "2002", ISBN = "0-262-69274-0", ISBN-13 = "978-0-262-69274-8", LCCN = "QA76.58 .B46 2002", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Scientific and engineering computation", acknowledgement = ack-nhfb, keywords = "Beowulf clusters (computer systems); Linux; parallel computers", } @Book{Sullivan:2002:SLG, editor = "Cary Sullivan", title = "{Sair Linux} and {GNU} certification: level {II} core concepts and practices", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xvi + 399", year = "2002", ISBN = "0-471-40538-8", ISBN-13 = "978-0-471-40538-2", LCCN = "QA76.3 .S253 2002", bibdate = "Mon Apr 29 15:57:10 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://www.loc.gov/catdir/toc/wiley022/2002265408.html", acknowledgement = ack-nhfb, subject = "Electronic data processing personnel; Certification; Operating systems (Computers); Certification; Study guides; Linux", xxauthor = "{Sair Development Team3}", } @Book{Taylor:2002:LUM, author = "Dave Taylor and Jerry D. Peek and Grace Todino and John Strang", title = "Learning {Unix} for {Mac OS X}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xiv + 139", year = "2002", ISBN = "0-596-00342-0", ISBN-13 = "978-0-596-00342-5", LCCN = "QA76.76.O63 T388 2002 Stacks", bibdate = "Wed Oct 30 16:15:17 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html", price = "US\$19.95", URL = "http://safari.oreilly.com/0596003420; http://www.oreilly.com/catalog/lunixmacosx", acknowledgement = ack-nhfb, keywords = "Mac OS; Macintosh (computer); operating systems (computers); Unix (computer file)", publishersummary = "Learning Unix for Mac OS X is a concise introduction to just what a reader needs to know to get started with Unix on Mac OS X. With Mac OS X, they now have the ability to not only continue to use their preferred platform, but to explore the powerful capabilities of Unix. This title gives the reader information on how to use the Terminal application, become functional with the command interface and explore many Unix applications.", } @Book{Thiruvathukal:2002:WPT, author = "George K. (George Kuriakose) Thiruvathukal and John P. Shafaee and Thomas W. Christopher", title = "{Web} programming: techniques for integrating {Python}, {Linux}, {Apache}, and {MySQL}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xviii + 745", year = "2002", ISBN = "0-13-041065-9", ISBN-13 = "978-0-13-041065-8", LCCN = "QA76.625 .T48 2002", bibdate = "Tue Mar 12 07:20:53 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.phptr.com/ptrbooks/ptr_0130410659.html", acknowledgement = ack-nhfb, keywords = "Internet programming; Web sites -- design", } @Book{Tiemann:2002:FU, author = "Brian Tiemann and Michael Urban", title = "{FreeBSD} Unleashed", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xxiv + 992", year = "2002", ISBN = "0-672-32206-4", ISBN-13 = "978-0-672-32206-8", LCCN = "QA76.754 .T54 2002", bibdate = "Sat Jul 10 17:31:17 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sams.com/catalog", price = "US\$49.99", acknowledgement = ack-nhfb, } @Article{Tomson:2002:DCR, author = "Phil Tomson", title = "Distributed Computing with {Ruby}", journal = j-DDJ, volume = "27", number = "9", pages = "16, 18, 22", month = sep, year = "2002", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Sep 13 06:15:52 MDT 2002", bibsource = "http://www.ddj.com/articles/2002/0209/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/ftp/2002/2002_09/taskmas.txt; http://www.ddj.com/ftp/2002/2002_09/taskmas.zip", abstract = "Ruby is a dynamic, object-oriented scripting language available on Windows, Linux, and Mac OS X. Phil uses DRb, Ruby's distributed object system, to build a task distribution framework. Additional resources include taskmas.txt (listings) and taskmas.zip (source code).", acknowledgement = ack-nhfb, } @Book{Toporek:2002:MXPa, author = "Chuck Toporek", title = "{Mac OS X} pocket guide", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "vii + 141", year = "2002", ISBN = "0-596-00458-3", ISBN-13 = "978-0-596-00458-3", LCCN = "QA76.76.O63 T66 2002", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Covers Jaguar.", acknowledgement = ack-nhfb, keywords = "Mac OS; Macintosh (computer) -- programming; operating systems (computers)", } @Book{Toporek:2002:MXPb, author = "Chuck Toporek", title = "{Mac OS X} pocket reference", publisher = pub-ORA, address = pub-ORA:adr, pages = "vii + 115", year = "2002", ISBN = "0-596-00346-3", ISBN-13 = "978-0-596-00346-3", LCCN = "QA76.6.O63 P634A 2002", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Mac OS; Macintosh (computer); operating systems (computers)", } @Book{Vadala:2002:MRL, author = "Derek Vadala", title = "Managing {RAID} on {Linux}", publisher = pub-ORA, address = pub-ORA:adr, pages = "304 (est.)", year = "2002", ISBN = "1-56592-730-3", ISBN-13 = "978-1-56592-730-8", LCCN = "????", bibdate = "Wed Oct 30 16:15:17 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html", price = "US\$39.95", URL = "http://www.oreilly.com/catalog/mraidlinux", acknowledgement = ack-nhfb, publishersummary = "Managing RAID on Linux covers everything system administrators need to know to put together a system that can support RAID. You will learn about the different types of RAID, along with associated technologies and issues, and how to choose the best RAID system for your needs. With a step-by-step, hands-on approach, the author guides you through the installation of either Linux software RAID or a hardware RAID card.", } @Book{vonHagen:2002:LF, author = "William von Hagen", title = "{Linux} Filesystems", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xii + 555", year = "2002", ISBN = "0-672-32272-2", ISBN-13 = "978-0-672-32272-3", LCCN = "QA76.76.O63 V66 200", bibdate = "Wed Jun 19 14:59:07 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "EXT2 filesystem; EXT3 filesystem; journaling filesystem; operating systems (computers); Red Hat Linux; Reiser filesystem; XFS filesystem", } @PhdThesis{Wang:2002:DIR, author = "Yu-Chung Wang", title = "Design and implementation of {RED-Linux}", type = "Thesis (Ph.D.)", school = "Electrical and Computer Engineering, University of California, Irvine", address = "Irvine, CA, USA", year = "2002", LCCN = "LD 791.9 .E38 2002 W36 Bar", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "computer algorithms; dissertations, academic -- University of California, Irvine -- electrical and computer engineering; Linux; operating systems (computers); real-time data processing; scheduling -- data processing", } @Book{Ward:2002:BVC, author = "Brian Ward", title = "The book of {VMware}: the complete guide to {VMware} workstation", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "xv + 249", year = "2002", ISBN = "1-886411-72-7", ISBN-13 = "978-1-886411-72-2", LCCN = "QA76.76.O63 W3653 2002", bibdate = "Sat Dec 06 08:24:50 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.95", acknowledgement = ack-nhfb, } @Book{Watters:2002:SAG, author = "Paul A. Watters", title = "{Solaris 8} Administrator's Guide", publisher = pub-ORA, address = pub-ORA:adr, pages = "xv + 282", year = "2002", ISBN = "0-596-00073-1", ISBN-13 = "978-0-596-00073-8", LCCN = "QA76.76.O63 W37 2002; QA76.76.O63 W3918 2002", bibdate = "Mon Apr 18 15:02:18 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html; z3950.loc.gov:7090/Voyager", price = "US\$39.95", URL = "http://safari.oreilly.com/0596000731; http://www.oreilly.com/catalog/9780596000738; http://www.oreilly.com/catalog/solaris8", acknowledgement = ack-nhfb, keywords = "electronic data processing -- management; operating systems (computers); Solaris (computer file)", publishersummary = "This guide covers all aspects of deploying Solaris as an enterprise-level network operating system, with a focus on e-commerce. Written for experienced network administrators who want an objective guide to networking with Solaris, the book covers installation on the Intel and Sparc platforms, and instructs you how to setup Solaris as a file server, application server, and database server.", remark = "``Help for network administrators'' --- cover.", subject = "Solaris (Computer file); Operating systems (Computers)", } @Book{Welsh:2002:RL, author = "Matt Welsh and Lar Kaufman and Terry Dawson and Matthias Kalle Dalheimer", title = "Running {Linux}", publisher = pub-ORA, address = pub-ORA:adr, edition = "Fourth", pages = "xviii + 672", year = "2002", ISBN = "0-596-00272-6", ISBN-13 = "978-0-596-00272-5", LCCN = "QA76.76.O63 R855 2003", bibdate = "Wed Oct 30 16:15:17 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html", price = "US\$44.95", URL = "http://www.oreilly.com/catalog/runux4", acknowledgement = ack-nhfb, publishersummary = "The fourth edition of Running Linux delves deeper into installation, configuring the windowing system, system administration, and networking. A solid foundation text for any Linux user, the book also includes additional resources for dealing with special requirements imposed by hardware, advanced applications, and emerging technologies. Whether you are using Linux on a home workstation or maintaining a network server, Running Linux will provide expert advice just when you need it.", } @Book{Wilfred:2002:SS, author = "Ashish D. (Daniel) Wilfred and {NIIT}", title = "{Solaris 9} Security", publisher = "Premier Press", address = "Cincinnati, OH, USA", pages = "xx + 353", year = "2002", ISBN = "1-59200-005-3", ISBN-13 = "978-1-59200-005-0", LCCN = "????", bibdate = "Mon Dec 22 11:50:02 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, xxaddress = "Indianapolis, IN, USA", } @Book{Winsor:2002:SMC, author = "Janice Winsor", title = "{Solaris} Management Console Tools", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xx + 330", year = "2002", ISBN = "0-13-046476-7", ISBN-13 = "978-0-13-046476-7", LCCN = "????", bibdate = "Fri Apr 11 16:58:10 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sun BluePrints Program", URL = "http://www.sun.com/books/catalog/winsormgmt/index.html", acknowledgement = ack-nhfb, } @Book{Winsor:2002:SOE, author = "Janice Winsor", title = "{Solaris 9} operating environment reference", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxvi + 1601", year = "2002", ISBN = "0-13-100701-7", ISBN-13 = "978-0-13-100701-7", LCCN = "QA76.76.O63 W569 2002", bibdate = "Fri Apr 11 16:54:35 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Sun BluePrints Program", acknowledgement = ack-nhfb, } @Article{Woehr:2002:PBE, author = "Jack J. Woehr", title = "Programmer's Bookshelf: Embedded Systems Programming", journal = j-DDJ, volume = "27", number = "10", pages = "86--86", month = oct, year = "2002", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Fri Sep 13 10:53:48 MDT 2002", bibsource = "http://www.ddj.com/articles/2002/0210/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/", abstract = "Jack takes a look at Practical Linux Programming: Device Drivers, Embedded Systems, and the Internet, by Ashfaq A. Khan; and 68HC12 Microcontroller: Theory and Applications, by Daniel J. Pack and Steven F. Barrett.", acknowledgement = ack-nhfb, } @Book{Ziegler:2002:LF, author = "Robert L. (Robert Loren) Ziegler and Carl B. Constantine", title = "{Linux} firewalls", publisher = pub-NEW-RIDERS, address = pub-NEW-RIDERS:adr, edition = "Second", pages = "xxiii + 562", year = "2002", ISBN = "0-7357-1099-6", ISBN-13 = "978-0-7357-1099-3", LCCN = "QA76.9.A25Z54 2002", bibdate = "Fri Apr 25 17:35:02 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "computer security; Linux", } @Book{Abbott:2003:LER, author = "Doug Abbott", title = "{Linux} for Embedded and Real-Time Applications", publisher = pub-NEWNES-PRESS, address = pub-NEWNES-PRESS:adr, pages = "xii + 255", year = "2003", ISBN = "0-7506-7546-2 (paperback)", ISBN-13 = "978-0-7506-7546-8 (paperback)", LCCN = "QA76.76.O63 A24 2003", bibdate = "Tue Jun 17 13:49:43 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", price = "US\$49.95", series = "Embedded technology series", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://www.loc.gov/catdir/description/els041/2003277020.html; http://www.loc.gov/catdir/toc/els041/2003277020.html", acknowledgement = ack-nhfb, remark = "CD-ROM contains Linux programs and source code.", subject = "Linux; Operating systems (Computers); Embedded computer systems; Programming; Real-time programming", } @Book{Afzal:2003:UUB, author = "Amir Afzal", title = "{UNIX} unbounded: a beginning approach", publisher = pub-PH, address = pub-PH:adr, edition = "Fourth", pages = "xviii + 494", year = "2003", ISBN = "0-13-092736-8", ISBN-13 = "978-0-13-092736-1", LCCN = "QA76.76.O63 A366 2003", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @Article{Anonymous:2003:LUE, author = "Anonymous", title = "{Linux}\slash {Unix} Extend {Red Hat 8}'s functionality by adding {Flash}, extra fonts and {Java}", journal = j-PERS-COMPUT-WORLD, volume = "26", number = "3", publisher = "VNU Business Publications", pages = "202--207", year = "2003", CODEN = "PCWODU", ISSN = "0142-0232", bibdate = "Tue Feb 4 05:46:37 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; Ingenta database", acknowledgement = ack-nhfb, } @Book{Anonymous:2003:NBI, author = "Anonymous", title = "{Net.BSD 1.6: installieren, konfigurieren, administrieren}", publisher = "Computer-und-Literatur-Verlag", address = "B{\"o}blingen, Germany", pages = "848", year = "2003", ISBN = "3-936546-00-2", ISBN-13 = "978-3-936546-00-2", LCCN = "????", bibdate = "Tue Mar 16 06:36:37 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", price = "EUR 49.90", acknowledgement = ack-nhfb, language = "German", } @Article{Anonymous:2003:PAI, author = "Anonymous", title = "Products: {Apple} Introduces 64-bit {PC} with 1-{GH}z bus; {Altera} upgrades {PLD} design tool; {StrikeIron}'s initial product analyzes {Web} services; {Metrowerks} teams up with {AMD} on {Linux} platform", journal = j-COMPUTER, volume = "36", number = "8", pages = "88--88", month = aug, year = "2003", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Fri Dec 12 19:53:44 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://csdl.computer.org/dl/mags/co/2003/08/r8088.htm; http://csdl.computer.org/dl/mags/co/2003/08/r8088.pdf", acknowledgement = ack-nhfb, } @Article{Anonymous:2003:PCN, author = "Anonymous", title = "Products: {ClearSight Networks} releases application-layer analyzer; {Intervoice} announces first {SALT}-based components; {VoiceGenie Technologies} upgrades {VoiceXML} platform; {AppForce} enhances mobile-platform design software; {Metrowerks} upgrades tools for embedded {Linux} products; {OpenOffice.org} updates {Linux} office tool suite; {Quest Software} releases {Java} analysis tools", journal = j-COMPUTER, volume = "36", number = "11", pages = "86--87", month = nov, year = "2003", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Fri Dec 12 19:53:48 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://csdl.computer.org/dl/mags/co/2003/11/ry086.htm; http://csdl.computer.org/dl/mags/co/2003/11/ry086.pdf", acknowledgement = ack-nhfb, } @Article{Anonymous:2003:PIU, author = "Anonymous", title = "Products: {Intel} updates multimedia performance primitives library; {Lindows.com} launches low-cost {Linux PC}; {Metrowerks} adds {Linux} kernel-level debugging; {Rogue Wave} announces {C/C++} tool for {Web} services; {ScanSoft} announces toolkits to support {Windows Mobile 2003}; {CoCreate} launches collaboration toolset; {Sybase} ships {IDE} for {Windows CE}-based devices", journal = j-COMPUTER, volume = "36", number = "10", pages = "100--101", month = oct, year = "2003", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Fri Dec 12 19:53:58 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://csdl.computer.org/dl/mags/co/2003/10/rx100.htm; http://csdl.computer.org/dl/mags/co/2003/10/rx100.pdf", acknowledgement = ack-nhfb, } @Article{Anonymous:2003:PSA, author = "Anonymous", title = "Products: {SGI} Announces Record-Performing {Linux} Servers; {Pacific Nanotechnogy} Releases Atomic Force Microscope; {Nvidia} Extends {Cg} Programming Environment; {Empirix} Introduces {VoIP} Analyzer; {Codagen Technologies} Upgrades {UML} Tool; {Perforce Software} Enhances {SCM} System; {Compuware} Upgrades {Java} Development Tool", journal = j-COMPUTER, volume = "36", number = "2", pages = "80--81", month = feb, year = "2003", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Fri Dec 12 19:53:54 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://csdl.computer.org/dl/mags/co/2003/02/r2080.htm; http://csdl.computer.org/dl/mags/co/2003/02/r2080.pdf", acknowledgement = ack-nhfb, } @Article{Anonymous:2003:PSU, author = "Anonymous", title = "Products: {Sybase} Upgrades {RAD} Tool; Haptic Workstation Uses Two Hands; {TimeSys} Launches {Linux 4.0}", journal = j-COMPUTER, volume = "36", number = "4", pages = "89--89", month = apr, year = "2003", CODEN = "CPTRB4", ISSN = "0018-9162 (print), 1558-0814 (electronic)", bibdate = "Fri Dec 12 19:53:57 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://csdl.computer.org/dl/mags/co/2003/04/r4089.htm; http://csdl.computer.org/dl/mags/co/2003/04/r4089.pdf", acknowledgement = ack-nhfb, } @Book{Artymiak:2003:BFO, author = "Jacek Artymiak", title = "Building firewalls with {OpenBSD} and {PF}", publisher = "devGuide.net", address = "Lublin, Poland", edition = "Second", pages = "321", year = "2003", ISBN = "83-916651-1-9", ISBN-13 = "978-83-916651-1-4", LCCN = "????", bibdate = "Sat May 27 06:45:32 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk; z3950.libris.kb.se:210/libr", acknowledgement = ack-nhfb, subject = "{\"O}ppen k{\"a}llkod; Brandv{\"a}ggar; Open source software", } @Book{Barrett:2003:LSC, author = "Daniel J. Barrett and Richard E. Silverman and Robert G. Byrnes", title = "{Linux} security cookbook", publisher = pub-ORA, address = pub-ORA:adr, pages = "xvii + 311", year = "2003", ISBN = "0-596-00391-9", ISBN-13 = "978-0-596-00391-3", LCCN = "TK5105.59 .B36 2003", bibdate = "Mon Apr 18 15:05:56 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.oreilly.com/catalog/9780596003913", acknowledgement = ack-nhfb, remark = "``Security tools and techniques'' --- cover.", subject = "GNU/Linux; Computer networks; Security measures; Operating systems (Computers)", } @Book{Bauer:2003:AUL, author = "Kirk Bauer", title = "Automating {UNIX} and {Linux} Administration", publisher = pub-APRESS, address = pub-APRESS:adr, pages = "600 (est.)", year = "2003", ISBN = "1-59059-212-3", ISBN-13 = "978-1-59059-212-0", LCCN = "????", bibdate = "Fri Nov 07 05:29:23 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Beale:2003:SID, author = "Jay Beale and James C. Foster", title = "{Snort 2.0} Intrusion Detection", publisher = "Syngress", address = "Rockland, MA, USA", pages = "xxviii + 523", year = "2003", ISBN = "1-931836-74-4, 3-8266-1304-X", ISBN-13 = "978-1-931836-74-6, 978-3-8266-1304-3", LCCN = "????", bibdate = "Sat Dec 06 08:34:48 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Jeffrey Posluns, technical advisor and Brian Caswell, technical editor.", price = "US\$49.95", acknowledgement = ack-nhfb, xxauthor = "Brian Caswell and Jay Beale and James C. Foster (Editor) and Jeremy Faircloth (Editor)", } @Book{Bookman:2003:LCB, author = "Charles Bookman", title = "{Linux} clustering: building and maintaining {Linux} clusters", publisher = pub-NEW-RIDERS, address = pub-NEW-RIDERS:adr, pages = "xv + 265", year = "2003", ISBN = "1-57870-274-7", ISBN-13 = "978-1-57870-274-9", LCCN = "QA76.76.O63 B427 2003", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "application software -- development; Linux; operating systems (computers)", } @Book{Bovet:2003:ULK, author = "Daniel P. (Daniel Pierre) Bovet and Marco Cesati", title = "Understanding the {Linux} Kernel", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xv + 765", year = "2003", ISBN = "0-596-00213-0", ISBN-13 = "978-0-596-00213-8", LCCN = "QA76.76.O63 B683 2003", bibdate = "Mon Apr 18 15:03:53 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html; z3950.loc.gov:7090/Voyager", price = "US\$49.95", URL = "http://www.oreilly.com/catalog/9780596002138; http://www.oreilly.com/catalog/linuxkernel2", acknowledgement = ack-nhfb, publishersummary = "The new edition of Understanding the Linux Kernel takes you on a guided tour through the most significant data structures, many algorithms, and programming tricks used in the kernel. The book has been updated to cover version 2.4 of the kernel, which is quite different from version 2.2: the virtual memory system is entirely new, support for multiprocessor systems is improved, and whole new classes of hardware devices have been added. You'll learn what conditions bring out Linux's best performance, and how it meets the challenge of providing good system response during process scheduling, file access, and memory management in a wide variety of environments.", remark = "Linux 2.4 kernel.", subject = "GNU/Linux; Operating systems (Computers)", } @Book{Calkins:2003:IS, author = "Bill Calkins", title = "Inside {Solaris 9}", publisher = pub-NEW-RIDERS, address = pub-NEW-RIDERS:adr, pages = "xix + 910", year = "2003", ISBN = "0-7357-1101-1", ISBN-13 = "978-0-7357-1101-3", LCCN = "QA76.76.O63 C3515 2003", bibdate = "Mon Dec 22 11:52:02 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Cevoli:2003:EFC, author = "Paul Cevoli", title = "Embedded {FreeBSD} cookbook", publisher = "Newnes", address = "Oxford, UK", pages = "x + 233", year = "2003", ISBN = "1-58995-004-6 (paperback)", ISBN-13 = "978-1-58995-004-7 (paperback)", LCCN = "QA76.76.O63 C482 2003", bibdate = "Sat May 17 16:47:16 MDT 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "embedded computer systems; FreeBSD; operating systems (computers)", } @Book{Cheswick:2003:FIS, author = "William R. Cheswick and Steven M. Bellovin and Aviel D. Rubin", title = "Firewalls and Internet Security: Repelling the Wily Hacker", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xiv + 433", year = "2003", ISBN = "0-201-63466-X", ISBN-13 = "978-0-201-63466-2", LCCN = "TK5105.875.I57C44 2003", bibdate = "Mon Mar 10 05:40:10 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.99, CAN\$77.99", acknowledgement = ack-nhfb, } @Book{Chuvakin:2003:SLS, author = "Anton Chuvakin and others", title = "Securing {Linux}: {A} Survival Guide for {Linux} Security", publisher = pub-SANS, address = pub-SANS:adr, pages = "104", year = "2003", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Apr 28 17:41:19 2003", bibsource = "http://store.sans.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.00", acknowledgement = ack-nhfb, } @Article{Cochran:2003:NVe, author = "Shannon Cochran", title = "News and Views: {MIT} Honors Builder of Robot Swarm; Developing Space; {Embedded Linux} Platform Specification Released; Biometric Systems at {U.S.} Borders, Says {NIST}", journal = j-DDJ, volume = "28", number = "5", pages = "14--14", month = may, year = "2003", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Jun 12 05:46:23 MDT 2003", bibsource = "http://www.ddj.com/articles/2003/0305/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/documents/s=7927/ddj0305o/", abstract = "May 2003 News and Views", acknowledgement = ack-nhfb, } @Article{Cochran:2003:NVGb, author = "Shannon Cochran", title = "News and Views: Government Ponders Open-Source Strategy; {POSIX}, {Single UNIX} Specification Merged; {IBM} Plans New Supercomputers; Robotic Surgeons Have a Heart", journal = j-DDJ, volume = "28", number = "2", pages = "14--14", month = feb, year = "2003", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Jun 12 05:46:21 MDT 2003", bibsource = "http://www.ddj.com/articles/2003/0302/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/documents/s=7790/ddj0302o/", abstract = "February 2003 News and Views", acknowledgement = ack-nhfb, } @Article{Cochran:2003:NVT, author = "Shannon Cochran", title = "News and Views: Tiny Executable Contest Concludes; {DeCSS}, {DMCA} Prosecutions Fail; Studying for the {Turing} Test; {Embedded Linux} Specification Released", journal = j-DDJ, volume = "28", number = "3", pages = "14--14", month = mar, year = "2003", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Jun 12 05:46:22 MDT 2003", bibsource = "http://www.ddj.com/articles/2003/0303/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/documents/s=7826/ddj0303n/", abstract = "March 2003: News and Views", acknowledgement = ack-nhfb, } @Book{Compton:2003:VL, author = "Jason Compton", title = "{VMware 2} for {Linux}", publisher = "Premier Press", address = "Rocklin, CA, USA", pages = "xxii + 406", year = "2003", ISBN = "0-7615-2764-8", ISBN-13 = "978-0-7615-2764-0", LCCN = "QA76.76.O63 C656 2000", bibdate = "Sat Dec 06 08:42:35 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", price = "US\$39.99", acknowledgement = ack-nhfb, } @Book{Cooper:2003:BWH, author = "Joe (R. Joe) Cooper", title = "The book of {Webmin}, or, How {I} learned to stop worrying and love {Unix}", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "xxviii + 281", year = "2003", ISBN = "1-886411-92-1", ISBN-13 = "978-1-886411-92-0", LCCN = "QA76.9.U83 C6597 2003eb", bibdate = "Tue Aug 5 18:24:21 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9781886411920", acknowledgement = ack-nhfb, remark = "Linux Journal Press appears on cover and spine as joint publisher.", subject = "UNIX (Computer file); User interfaces (Computer systems)", tableofcontents = "Getting and installing Webmin \\ Logging in \\ Webmin category \\ General system configuration \\ Server and daemon configuration \\ Apache Webserver \\ Bind \\ FTP server \\ Sendmail \\ Squid \\ Hardware configuration", } @Book{Costales:2003:S, author = "Bryan Costales and Eric Allman", title = "{Sendmail}", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "xxiv + 1205", year = "2003", ISBN = "1-56592-839-3", ISBN-13 = "978-1-56592-839-8", LCCN = "TK5105.74.S44+", bibdate = "Mon Apr 18 14:59:43 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html; z3950.loc.gov:7090/Voyager", price = "US\$59.95", URL = "http://www.oreilly.com/catalog/sendmail3", acknowledgement = ack-nhfb, publishersummary = "The new edition of sendmail has been completely revised to cover sendmail 8.12--a version with more features and fundamental changes than any previous version of the Unix-based email routing program. Because the latest version of sendmail differs so significantly from earlier versions, a massive rewrite of this best-selling reference was called for. With sendmail, Third Edition in hand, you will be able to configure this challenging but necessary utility for whatever needs your system requires.", subject = "Sendmail; Electronic mail systems; Computer programs", } @Book{Docter:2003:SSC, author = "Quentin Docter", title = "{Solaris 9}: {Sun Certified System Administrator} Study Guide", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xxxix + 597", year = "2003", ISBN = "0-7821-4181-1", ISBN-13 = "978-0-7821-4181-8", LCCN = "QA76.3 D635 2003", bibdate = "Mon Dec 22 11:51:02 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, subject = "Electronic data processing personnel; Certification; Operating systems (Computers); Certification; Study guides; Solaris (Computer file)", } @Book{Eilert:2003:LM, editor = "John Eilert and Maria Eisenhaendler and Dorothea Matthaeu and Ingol Salm", title = "{Linux} on the mainframe", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxviii + 430", year = "2003", ISBN = "0-13-101415-3 (paperback)", ISBN-13 = "978-0-13-101415-2 (paperback)", LCCN = "QA76.76.O63 L54553 2003", bibdate = "Thu Jun 23 18:36:08 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Book{Figgin:2003:LWS, editor = "Stephen Figgin and Aaron Weber and Ellen Siever and Matt Welsh and George Reese and Ben Laurie and Peter Laurie and Rasmus Lerdorf and Stas Bekman and Eric Cholet", title = "The {Linux} {Web} server {CD} bookshelf", publisher = pub-ORA, address = pub-ORA:adr, edition = "Version 2.0.", year = "2003", ISBN = "0-596-00529-6", ISBN-13 = "978-0-596-00529-0", LCCN = "QA76.76.O63", bibdate = "Wed Jun 25 17:33:31 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.oreilly.com/catalog/9780596005290", acknowledgement = ack-nhfb, remark = "1 CD-ROM", subject = "Linux; Operating systems (Computers); Web servers; Computer programs; SQL (Computer program language); Apache (Computer file : Apache Group); PHP (Computer program language); Perl (Computer program language); CGI (Computer network protocol)", tableofcontents = "Linux in a nutshell: a desktop quick reference, 4th ed., by Ellen Siever, Stephen Figgin and Aaron Weber, ISBN 0-596-00482-6\\ Running Linux. 4th ed. / Matt Welsh and others \\ Managing and using MySQL. 2nd ed. / George Reese and others \\ Apache, the definitive guide. 3rd ed. / Ben Laurie and Peter Laurie \\ Programming PHP / Rasmus Lerdorf and others \\ Practical mod{\"o}perl / Stas Bekman and Eric Cholet", } @Book{Flickenger:2003:LSH, author = "Rob Flickenger", title = "{Linux} server hacks: 100 industrial-strength tips and tools", publisher = pub-ORA, address = pub-ORA:adr, pages = "xvii + 221", year = "2003", ISBN = "0-596-00461-3", ISBN-13 = "978-0-596-00461-3", LCCN = "QA76.9.C55 F58 2003", bibdate = "Mon Apr 18 15:06:46 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.oreilly.com/catalog/9780596004613", acknowledgement = ack-nhfb, subject = "GNU/Linux; Client/server computing", } @Book{Forouzan:2003:USP, author = "Behrouz A. Forouzan and Richard F. Gilberg", title = "{UNIX} and Shell programming: a textbook", publisher = "Brooks/Cole-Thomson Learning", address = "Pacific Grove, CA", pages = "xix + 875", year = "2003", ISBN = "0-534-95159-7 (paperback)", ISBN-13 = "978-0-534-95159-7 (paperback)", LCCN = "QA76.76.O63 F59715 2003", bibdate = "Mon Jan 8 06:35:48 MST 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "UNIX (Computer file); UNIX Shells; Operating systems (computers)", } @Book{Frisch:2003:ESAb, author = "{\AE}leen Frisch", title = "Essential System Administration Pocket Reference", publisher = pub-ORA, address = pub-ORA:adr, pages = "vi + 137", year = "2003", ISBN = "0-596-00449-4", ISBN-13 = "978-0-596-00449-1", LCCN = "QA76.76.O63 F782 2003", bibdate = "Mon Apr 18 15:06:38 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html; z3950.loc.gov:7090/Voyager", price = "US\$14.95", URL = "http://www.oreilly.com/catalog/esapr", acknowledgement = ack-nhfb, publishersummary = "The Essential System Administration Pocket Reference is a quick reference to all the fundamental and essential tasks required to run such divergent Unix systems as Solaris, Linux, AIX, BSD, SuSE, Red Hat, and more. Beginners and experienced administrators alike will quickly be able to apply its principles and advice to solve everyday problems. This handy book delivers a wealth of important details in a concise, well-organized format.", remark = "``Commands and file formats'' --- cover.", subject = "UNIX (Computer file); Linux; Operating systems (Computers)", } @Book{Gancarz:2003:LUP, author = "Mike Gancarz", title = "{Linux} and the {Unix} Philosophy", publisher = pub-DP, address = pub-DP:adr, pages = "xxvii + 220", year = "2003", ISBN = "1-55558-273-7", ISBN-13 = "978-1-55558-273-9", LCCN = "QA76.76.O63G364 2003", bibdate = "Wed Oct 29 16:24:48 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$34.99", URL = "http://www.loc.gov/catdir/description/els031/2003051482.html; http://www.loc.gov/catdir/toc/els031/2003051482.html", acknowledgement = ack-nhfb, } @Book{Garfinkel:2003:PUI, author = "Simson Garfinkel and Gene Spafford and Alan Schwartz", title = "Practical Unix \& Internet Security", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "xxix + 954", year = "2003", ISBN = "0-596-00323-4", ISBN-13 = "978-0-596-00323-4", LCCN = "QA76.76.O63 G38 2003", bibdate = "Wed Oct 30 16:15:17 MST 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html", price = "US\$54.95", URL = "http://www.oreilly.com/catalog/puis3", acknowledgement = ack-nhfb, publishersummary = "This new edition of Practical UNIX and Internet Security provides detailed coverage of today's security and networking issues. In addition to covering the four most popular Unix variants today: Solaris, Linux, FreeBSD, and Mac OS X, the authors have added far more information about Linux, security policy, and cryptography, and have added new sections on embedded systems, biometrics, additional Internet protocols, new authentication systems such as LDAP and PAM, and anti-theft technologies.", } @Article{Gerndt:2003:LSC, author = "Andreas Gerndt and Thomas Van Reimersdahl and Torsten Kuhlen and Christian Bischof and Ingolf H{\"o}rschler and Matthias Meinke and Wolfgang Schr{\"o}der", title = "Large-Scale {CFD} Data Handling in a {VR}-Based Otorhinolaryngological {CAS}-System using a {Linux}-Cluster", journal = j-J-SUPERCOMPUTING, volume = "25", number = "2", pages = "143--154", month = jun, year = "2003", CODEN = "JOSUED", DOI = "http://www.springerlink.com/openurl.asp?genre=article&id=doi:10.1023/A:1023992511823", ISSN = "0920-8542 (print), 1573-0484 (electronic)", ISSN-L = "0920-8542", bibdate = "Wed Jul 6 12:13:26 MDT 2005", bibsource = "http://springerlink.metapress.com/openurl.asp?genre=issue&issn=0920-8542&volume=25&issue=2; http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.wkap.nl/journalhome.htm/0920-8542", URL = "http://ipsapp009.kluweronline.com/content/getfile/5189/44/5/abstract.htm; http://ipsapp009.kluweronline.com/content/getfile/5189/44/5/fulltext.pdf; http://www.springerlink.com/openurl.asp?genre=article&issn=0920-8542&volume=25&issue=2&spage=143", acknowledgement = ack-nhfb, } @InProceedings{Ghemawat:2003:GFS, author = "Sanjay Ghemawat and Howard Gobioff and Shun-Tak Leung", title = "The {Google File System}", crossref = "ACM:2003:SPA", pages = "29--43", year = "2003", DOI = "http://doi.acm.org/10.1145/945445.945450", bibdate = "Wed Nov 30 07:48:42 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "We have designed and implemented the Google File System, a scalable distributed file system for large distributed data-intensive applications. It provides fault tolerance while running on inexpensive commodity hardware, and it delivers high aggregate performance to a large number of clients.\par While sharing many of the same goals as previous distributed file systems, our design has been driven by observations of our application workloads and technological environment, both current and anticipated, that reflect a marked departure from some earlier file system assumptions. This has led us to reexamine traditional choices and explore radically different design points.\par The file system has successfully met our storage needs. It is widely deployed within Google as the storage platform for the generation and processing of data used by our service as well as research and development efforts that require large data sets. The largest cluster to date provides hundreds of terabytes of storage across thousands of disks on over a thousand machines, and it is concurrently accessed by hundreds of clients.\par In this paper, we present file system interface extensions designed to support distributed applications, discuss many aspects of our design, and report measurements from both micro-benchmarks and real world use.", acknowledgement = ack-nhfb, keywords = "clustered storage; data storage; distributed file systems; Fault tolerance; scalability", } @Article{Gine:2003:DMC, author = "Francesc Gin{\'e} and Francesc Solsona and Porfidio Hern{\'a}ndez and Emilio Luque", title = "Dealing with Memory Constraints in a Non-Dedicated {Linux} Cluster", journal = j-IJHPCA, volume = "17", number = "1", pages = "39--48", month = "Spring", year = "2003", CODEN = "IHPCFL", ISSN = "1094-3420 (print), 1741-2846 (electronic)", ISSN-L = "1094-3420", bibdate = "Fri Nov 28 06:52:13 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Granor:2003:OTY, author = "Tamar E. Granor", title = "{OOoSwitch}: 501 Things You Wanted to Know About Switching to {OpenOffice.org} from {Microsoft Office}", publisher = "Hentzenwerke Publishing", address = "Milwaukee, WI 53217-5361, USA", pages = "310 (est.)", year = "2003", ISBN = "1-930919-36-0", ISBN-13 = "978-1-930919-36-5", LCCN = "????", bibdate = "Mon Apr 12 18:30:16 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Edited by Scott Carr and Sam Hiser.", price = "US\$49.95", URL = "http://www.hentzenwerke.com/catalogpricelists/ooo501.htm", acknowledgement = ack-nhfb, } @Book{Gropp:2003:BCC, editor = "William Gropp and Ewing Lusk and Thomas Lawrence Sterling", title = "{Beowulf} cluster computing with {Linux}", publisher = pub-MIT, address = pub-MIT:adr, edition = "Second", pages = "xxxix + 618", year = "2003", ISBN = "0-262-69292-9 (paperback)", ISBN-13 = "978-0-262-69292-2 (paperback)", LCCN = "QA76.58.B46 2003; QA76.58.B46", bibdate = "Mon Mar 20 17:08:35 MST 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; library.mit.edu:9909/mit01", series = "Scientific and engineering computation", acknowledgement = ack-nhfb, subject = "Parallel computers; Beowulf clusters (Computer systems); Linux", tableofcontents = "1. So You Want to Use a Cluster / William Gropp\\ 2. Node Hardware / Narayan Desai and Thomas Sterling\\ 3. Linux / Peter H. Beckman\\ 4. System Area Networks / Narayan Desai and Thomas Sterling\\ 5. Configuring and Tuning Cluster Networks / Daniel Nurmi and Brian Toonen\\ 6. Setting Up Clusters / Philip Papadopoulos\\ 7. An Introduction to Writing Parallel Programs for Clusters / Ewing Lusk, William Gropp and Ralph Butler\\ 8. Parallel Programming with MPI / William Gropp and Ewing Lusk\\ 9. Advanced Topics in MPI Programming / William Gropp and Ewing Lusk\\ 10. Parallel Virtual Machine / Al Geist\\ 11. Fault-Tolerant and Adaptive Programs with PVM / Al Geist and Jim Kohl\\ 12. Numerical and Scientific Software for Clusters / Victor Eijkhout and Jack Dongarra\\ 13. Cluster Management / J. P. Navarro\\ 14. Cluster Workload Management / James Patton Jones, David Lifka, Bill Nitzberg and Todd Tannenbaum\\ 15. Condor: A Distributed Job Scheduler / Todd Tannenbaum, Derek Wright, Karen Miller, Erik Paulson and Miron Livny\\ 16. Maui Scheduler: A High Performance Cluster Scheduler / David B. Jackson\\ 17. PBS: Portable Batch System / James Patton Jones\\ 18. Scyld Beowulf / Walt Ligon and Dan Stanzione\\ 19. Parallel I/O and the Parallel Virtual File System / Walt Ligon and Rob Ross\\ 20. A Tale of Two Clusters: Chiba City and Jazz / Remy Evard\\ 21. Conclusions / William Gropp and Ewing Lusk\\ B. Annotated Reading List\\ C. Annotated URLs", } @Book{Henry-Stocker:2003:SSS, author = "Sandra L. Henry-Stocker and Evan R. Marks", title = "{Solaris} Solutions for System Administrators: Time-Saving Tips, Techniques, and Workarounds", publisher = pub-WILEY, address = pub-WILEY:adr, edition = "Second", pages = "xx + 604", year = "2003", ISBN = "0-471-43115-X", ISBN-13 = "978-0-471-43115-2", LCCN = "QA76.76.O63 H476 2003", bibdate = "Mon Dec 22 11:53:27 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Howes:2003:UDL, author = "Timothy A. Howes and Mark C. Smith and Gordon S. Good", title = "Understanding and deploying {LDAP} directory services", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xxxiv + 899", year = "2003", ISBN = "0-672-32316-8", ISBN-13 = "978-0-672-32316-4", LCCN = "TK5105.595 .H69 2003", bibdate = "Mon Nov 26 18:43:22 MST 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", acknowledgement = ack-nhfb, subject = "Directory services (Computer network technology); Computer network protocols; LDAP (Computer network protocol)", } @Book{Hunt:2003:SC, author = "Craig Hunt", title = "{Sendmail} cookbook", publisher = pub-ORA, address = pub-ORA:adr, pages = "xviii + 388", year = "2003", ISBN = "0-596-00471-0", ISBN-13 = "978-0-596-00471-2", LCCN = "TK5105.74.S44 H85 2004", bibdate = "Mon Apr 18 15:06:54 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, remark = "``Administering, securing and spam-fighting''--Cover. ``Unix system administration/networking''--P. [4] of cover.", subject = "Sendmail; Electronic mail systems; UNIX (Computer file)", } @Book{Jang:2003:LTW, author = "Michael Jang", title = "{Linux} Transfer for {Windows} Network Admins: {A} roadmap for building a {Linux} file and print server", publisher = "Hentzenwerke Publishing", address = "Milwaukee, WI 53217-5361, USA", pages = "310 (est.)", year = "2003", ISBN = "1-930919-46-8", ISBN-13 = "978-1-930919-46-4", LCCN = "????", bibdate = "Mon Apr 12 18:34:10 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Edited by Elizabeth Zinkann.", price = "US\$49.95", acknowledgement = ack-nhfb, } @Book{Kochan:2003:USP, author = "Stephen Kochan and Patrick Wood", title = "{UNIX} Shell Programming", publisher = pub-HAYDEN, address = pub-HAYDEN:adr, edition = "Third", pages = "xiii + 437", year = "2003", ISBN = "0-672-32490-3", ISBN-13 = "978-0-672-32490-1", LCCN = "QA76.76.O63 K64 2003", bibdate = "Wed Jul 07 10:43:48 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Lee:2003:OSW, author = "James Lee and Brent Ware", title = "Open source {Web} development with {LAMP}: using {Linux}, {Apache}, {MySQL}, {Perl}, and {PHP}", publisher = pub-AW, address = pub-AW:adr, pages = "xxxiv + 460", year = "2003", ISBN = "0-201-77061-X (paperback)", ISBN-13 = "978-0-201-77061-2 (paperback)", LCCN = "QA76.76.D47 L435 2003", bibdate = "Wed Apr 27 05:41:25 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Computer software; Development", } @Book{Lehey:2003:CFD, author = "Greg Lehey", title = "The Complete {FreeBSD}: Documentation from the Source", publisher = pub-ORCP, address = pub-ORCP:adr, edition = "Fourth", pages = "xxxiii + 679", year = "2003", ISBN = "0-596-00516-4", ISBN-13 = "978-0-596-00516-0", LCCN = "QA76.76.O63 L44715 2003", bibdate = "Tue May 13 15:31:58 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$44.09, CAN\$69.95, UK\pounds 31.95", URL = "http://press.oreilly.com/commpress.html; http://www.oreilly.com/catalog/cfreebsd/desc.html", acknowledgement = ack-nhfb, } @Book{Lucas:2003:AOU, author = "Michael W. Lucas", title = "Absolute {OpenBSD}: {Unix} for the practical paranoid", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "xxviii + 489", year = "2003", ISBN = "1-886411-99-9", ISBN-13 = "978-1-886411-99-9", LCCN = "QA76.76.O63 L835 2003", bibdate = "Tue Mar 16 06:32:17 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.95", acknowledgement = ack-nhfb, keywords = "BSD UNIX; OpenBSD (Electronic resource); Operating systems (Computers); UNIX (Computer file)", } @Book{Lucas:2003:FLU, author = "Michael W. Lucas", title = "{FreeBSD de Luxe: UNIX-Serveradministration; Installation, Upgrading, Systemoptimierung; Mail, DNS, Web, FTP: die Konfiguration von Internetdiensten; aktuelleInformationen zur Version 5 }", publisher = "mitp Verlag", address = "Bonn, Germany", pages = "657", year = "2003", ISBN = "3-8266-1343-0", ISBN-13 = "978-3-8266-1343-2", LCCN = "????", bibdate = "Tue Mar 16 06:40:39 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{McCarty:2003:LRL, author = "Bill McCarty", title = "Learning {Red Hat Linux}", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "xvi + 319", year = "2003", ISBN = "0-596-00469-9", ISBN-13 = "978-0-596-00469-9", LCCN = "QA76.76.O63 M376 2003", bibdate = "Mon Apr 18 15:06:52 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.oreilly.com/catalog/9780596004699", acknowledgement = ack-nhfb, subject = "Linux", } @Book{McIntosh:2003:MXN, author = "Jason McIntosh and Chuck Toporek and Chris Stone", title = "{Mac OS X} in a nutshell", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxii + 801", year = "2003", ISBN = "0-596-00370-6", ISBN-13 = "978-0-596-00370-8", LCCN = "QA76.76.O63 M38 2003", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Mac OS; Mac OS (computer systems); Mac OS10 (computer systems); Macintosh (computer) -- programming; operating systems (computers)", } @Book{McReynolds:2003:AGP, author = "Tom McReynolds and David Blythe", title = "Advanced Graphics Programming with {OpenGL}", publisher = pub-MORGAN-KAUFMANN, address = pub-MORGAN-KAUFMANN:adr, pages = "600 (est.)", year = "2003", ISBN = "1-55860-659-9", ISBN-13 = "978-1-55860-659-3", LCCN = "????", bibdate = "Sat Feb 01 15:52:44 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$55.00, UK\pounds 36.95", acknowledgement = ack-nhfb, keywords = "OpenGL", } @Book{Mellen:2003:SSU, author = "Daniel Mellen and Jess Garcia and Joe Keegan and Michael Gauthier and Michael Royds", title = "Securing {Solaris 8 \& 9} Using the {Center for Internet Security} Benchmark", publisher = pub-SANS, address = pub-SANS:adr, pages = "180 (est.)", year = "2003", ISBN = "0-9724273-9-2", ISBN-13 = "978-0-9724273-9-5", LCCN = "????", bibdate = "Mon Dec 22 11:47:14 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39", acknowledgement = ack-nhfb, } @Book{Michael:2003:MUS, author = "Randal K. Michael", title = "Mastering {Unix} shell scripting", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxii + 680", year = "2003", ISBN = "0-471-21821-9", ISBN-13 = "978-0-471-21821-0", LCCN = "QA76.76.O63 M488 2003", bibdate = "Wed Mar 22 06:29:12 MST 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/bios/wiley044/2003544699.html; http://www.loc.gov/catdir/description/wiley036/2003544699.html; http://www.loc.gov/catdir/toc/wiley032/2003544699.html", acknowledgement = ack-nhfb, subject = "UNIX (Computer file); UNIX Shells", } @Book{Minasi:2003:LWA, author = "Mark Minasi and Dan York", title = "{Linux} for {Windows} administrators", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xxxiii + 522", year = "2003", ISBN = "0-7821-4119-6", ISBN-13 = "978-0-7821-4119-1", LCCN = "QA76.76.O63 M57385 2003", bibdate = "Tue Jun 20 18:10:47 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Mark Minasi Windows administrator library", URL = "http://www.loc.gov/catdir/enhancements/fy0613/2002113840-b.html; http://www.loc.gov/catdir/enhancements/fy0613/2002113840-d.html; http://www.loc.gov/catdir/enhancements/fy0613/2002113840-t.html", acknowledgement = ack-nhfb, subject = "Linux; Microsoft Windows (Computer file); Operating systems (Computers)", } @Misc{Narduzzo:2003:MAG, author = "A. Narduzzo and A. Rossi", title = "Modularity in Action: {GNU\slash Linux} and {Free\slash Open Source} Software Development Model Unleashed", howpublished = "World-Wide Web document.", pages = "41", day = "12", month = may, year = "2003", bibdate = "Wed Apr 20 11:07:07 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://opensource.mit.edu/papers/narduzzorossi.pdf", acknowledgement = ack-nhfb, } @Book{Negus:2003:LTC, author = "Chris Negus and Chuck Wolber", title = "{Linux} toys: 13 cool projects for home, office, and entertainment", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxv + 330", year = "2003", ISBN = "0-7645-2508-5", ISBN-13 = "978-0-7645-2508-7", LCCN = "QA76.76.O63 N423 2003", bibdate = "Wed Apr 25 14:26:28 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "ExtremeTech", URL = "http://www.loc.gov/catdir/bios/wiley046/2003101901.html; http://www.loc.gov/catdir/description/wiley039/2003101901.html; http://www.loc.gov/catdir/toc/wiley041/2003101901.html", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers); Multimedia systems", } @Article{Nisley:2003:ESRb, author = "Ed Nisley", title = "Embedded Space: {Real-Time Linux}", journal = j-DDJ, volume = "28", number = "4", pages = "79--81", month = apr, year = "2003", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Jun 12 05:46:22 MDT 2003", bibsource = "http://www.ddj.com/articles/2003/0304/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/documents/s=7827/ddj0304j/", abstract = "Real-time Linux is Ed's focus this month, as he reports on the Fourth Real-Time Linux Workshop, among other topics.", acknowledgement = ack-nhfb, } @Book{Olker:2003:ONP, author = "Dave Olker", title = "Optimizing {NFS} performance: tuning and troubleshooting {NFS} on {HP-UX} systems", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxxvi + 328", year = "2003", ISBN = "0-13-042816-7", ISBN-13 = "978-0-13-042816-5", LCCN = "TK5105.574 .O45 2003", bibdate = "Wed Oct 5 06:18:05 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Hewlett--Packard professional books", acknowledgement = ack-nhfb, subject = "Network File System (Computer network protocol); UNIX (Computer file); Hewlett--Packard computers; Programming; Network performance (Telecommunication)", } @Book{Poniatowski:2003:HUS, author = "Marty Poniatowski", title = "{HP-UX 11i} system administration handbook and toolkit", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Second", pages = "xxxvi + 1390", year = "2003", ISBN = "0-13-101883-3 (paperback)", ISBN-13 = "978-0-13-101883-9 (paperback)", LCCN = "QA76.76.O63 P647 2003", bibdate = "Fri Apr 29 07:17:50 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "HP-UX; Operating systems (Computers)", } @Book{Powers:2003:UPT, author = "Shelley Powers and Jerry Peek and Tim O'Reilly \& Mike Loukides and others", title = "{Unix} Power Tools", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "xxxviii + 1116", year = "2003", ISBN = "0-596-00330-7", ISBN-13 = "978-0-596-00330-2", LCCN = "QA76.76.O63 P44 2003", bibdate = "Mon Apr 18 15:05:13 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html; z3950.loc.gov:7090/Voyager", price = "US\$69.95", URL = "http://www.oreilly.com/catalog/upt3", acknowledgement = ack-nhfb, publishersummary = "The latest edition of this best-selling favorite is loaded with vital information on Linux, Darwin, and BSD. Unix Power Tools 3rd Edition now offers more coverage of bash, zsh, and other new shells, along with discussions about modern utilities and applications. Several sections focus on security and Internet access. There is a new chapter on access to Unix from Windows, and expanded coverage of software installation and packaging, as well as basic information on Perl and Python.", remark = "Rev. ed. of: Unix power tools / Jerry Peek. c1994.", subject = "UNIX (Computer file); Utilities (Computer programs)", } @Book{Ray:2003:MXM, author = "John Ray and William C. Ray", title = "{Mac OS X} Maximum Security: {A} Hacker's Guide to Protecting Your {Mac OS X} Workstation and Server", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xiii + 747", year = "2003", ISBN = "0-672-32381-8", ISBN-13 = "978-0-672-32381-2", LCCN = "QA76.76.O63 R39175 2003", bibdate = "Sat Jul 10 17:37:27 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$44.95", acknowledgement = ack-nhfb, } @Book{Rehman:2003:IDS, author = "Rafeeq Ur Rehman", title = "Intrusion Detection with {SNORT}: Advanced {IDS} Techniques Using {SNORT}, {Apache}, {MySQL}, {PHP}, and {ACID}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xii + 263", year = "2003", ISBN = "0-13-140733-3", ISBN-13 = "978-0-13-140733-6", LCCN = "TK5105.59 .R44 2003", bibdate = "Sat Dec 06 08:47:33 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.99", series = "Bruce Perens' Open source series", acknowledgement = ack-nhfb, subject = "Computer networks; Security measures; Computers; Access control", } @Book{Reid:2003:SSE, author = "Jason Reid", title = "Secure Shell in the Enterprise", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxiii + 198", year = "2003", ISBN = "0-13-142900-0", ISBN-13 = "978-0-13-142900-0", LCCN = "QA76.76.O63 R448 2003", bibdate = "Wed Jan 21 05:22:59 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.00", series = "Sun blueprints", acknowledgement = ack-nhfb, subject = "Solaris (Computer file); Operating systems (Computers); UNIX Shells; Computer networks; Security measures", } @Book{Robbins:2003:UCB, editor = "Arnold Robbins and Bill Rosenblatt and Dale Dougherty and Jerry Peek and Linda Lamb and Brian Jepson", title = "The {UNIX} {CD} bookshelf: 7 bestselling books on {CD-ROM}: {Unix} power tools", publisher = pub-ORA, address = pub-ORA:adr, pages = "????", year = "2003", ISBN = "0-596-00392-7", ISBN-13 = "978-0-596-00392-0", LCCN = "????", bibdate = "Sat Nov 13 10:18:27 MST 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", abstract = "Contains six complete books on UNIX on CD-ROM.", acknowledgement = ack-nhfb, remark = "Contains: Unix in a nutshell: a desktop quick reference for System V release 4 and Solaris 7 / Arnold Robbins. 3rd ed.. UNIX in a nutshell (3rd ed.) -- Learning the Korn shell (2nd ed.) -- UNIX power tools (3rd ed.) -- sed and awk (2nd ed.) -- Learning the UNIX operating system (5th ed.) -- Learning the vi editor (6th ed.) -- Mac OS X for Unix Geeks.", subject = "UNIX (Computer file); UNIX System V (Computer file); Vi; Solaris (Computer file); Operating systems (Computers); Utilities (Computer programs); KornShell (Computer program language); Text editors (Computer programs)", } @Book{Robbins:2003:USP, author = "Kay A. Robbins and Steven Robbins", title = "{UNIX} Systems programming: communication, concurrency, and threads", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Second", pages = "xvii + 893", year = "2003", ISBN = "0-13-042411-0", ISBN-13 = "978-0-13-042411-2", LCCN = "QA76.76.O63 R6215 2003", bibdate = "Wed Aug 20 21:08:15 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, annote = "See \cite{Robbins:1996:PUP} for first edition.", keywords = "operating systems (computers); UNIX (computer file)", } @Article{Rolfe:2003:BBP, author = "Timothy Rolfe", title = "Bargain-Basement Parallelism", journal = j-DDJ, volume = "28", number = "2", pages = "46, 48, 50", month = feb, year = "2003", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Jun 12 05:46:21 MDT 2003", bibsource = "http://www.ddj.com/articles/2003/0302/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/documents/s=7790/ddj0302f/", abstract = "The UNIX multiprocessing fork command lets you take advantage of underutilized processors in dual-processor computers.", acknowledgement = ack-nhfb, } @PhdThesis{Saers:2003:PMF, author = "Niklas Saers", title = "A project model for the {FreeBSD} project", type = "{Ph.D.} Thesis", school = "Universitetet i Oslo", address = "Oslo, Norway", pages = "232", year = "2003", bibdate = "Sat May 17 16:56:02 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Salus:2003:BRBd, author = "Peter H. Salus", title = "Book Reviews: The Bookworm; Twenty-Five Years Ago in {UNIX}", journal = j-LOGIN, volume = "28", number = "4", pages = "??--??", month = aug, year = "2003", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 10:52:30 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/2003-08/index.html", URL = "http://www.usenix.org/publications/login/2003-08/openpdfs/salus.pdf", acknowledgement = ack-nhfb, } @Article{Sherer:2003:RTS, author = "Matt Sherer", title = "Real-time Signal Analysis and {Real-Time Linux}: {Part 1}", journal = j-DDJ, volume = "28", number = "7", pages = "62--65", month = jul, year = "2003", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Jun 12 05:46:24 MDT 2003", bibsource = "http://www.ddj.com/articles/2003/0307/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/ftp/2003/2003_07/rtlp1.txt", abstract = "In the first installment of this multipart article, Matt shows how you do hard real-time signal acquisition, controlling it from a Java GUI application. Additional resources include rtlp1.txt (listings).", acknowledgement = ack-nhfb, } @Article{Shimizu:2003:TLS, author = "Naohiko Shimizu and Ken Takatori", title = "A transparent {Linux} super page kernel for {Alpha}, {Sparc64} and {IA32}: reducing {TLB} misses of applications", journal = j-COMP-ARCH-NEWS, volume = "31", number = "1", pages = "75--84", month = mar, year = "2003", CODEN = "CANED2", ISSN = "0163-5964 (ACM), 0884-7495 (IEEE)", bibdate = "Fri May 12 09:40:37 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Siever:2003:LN, author = "Ellen Siever and Stephen Figgins and Aaron Weber", title = "{Linux} in a nutshell", publisher = pub-ORA, address = pub-ORA:adr, edition = "Fourth", pages = "xiv + 928", year = "2003", ISBN = "0-596-00482-6", ISBN-13 = "978-0-596-00482-8", LCCN = "QA76.76.O63 S5582 2003", bibdate = "Mon Apr 18 15:07:01 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "In a nutshell", URL = "http://www.oreilly.com/catalog/9780596004828", acknowledgement = ack-nhfb, subject = "GNU/Linux; Operating systems (Computers)", } @Article{Sivonen:2003:ICS, author = "Timo Sivonen", title = "{IPv6} Configuration on {Solaris 9} and {FreeBSD-4.x}", journal = j-LOGIN, volume = "28", number = "2", pages = "??--??", month = apr, year = "2003", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 10:52:26 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/2003-04/index.html", URL = "http://www.usenix.org/publications/login/2003-04/pdfs/sivonen.pdf", acknowledgement = ack-nhfb, } @Book{Smith:2003:FCR, author = "Roderick W. Smith", title = "{FreeBSD}: the complete reference", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, pages = "xxxvi + 869", year = "2003", ISBN = "0-07-222409-6", ISBN-13 = "978-0-07-222409-2", LCCN = "QA76.76.O63 S588455 2003", bibdate = "Tue Mar 16 06:38:27 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://www.loc.gov/catdir/bios/mh042/2003272231.html; http://www.loc.gov/catdir/description/mh041/2003272231.html; http://www.loc.gov/catdir/toc/mh041/2003272231.html", acknowledgement = ack-nhfb, subject = "FreeBSD; Free computer software; Operating systems (Computers)", } @Book{Sobell:2003:PGR, author = "Mark G. Sobell", title = "A Practical Guide to {Red Hat Linux 8}", publisher = pub-AW, address = pub-AW:adr, pages = "xlvii + 1565", year = "2003", ISBN = "0-201-70313-0", ISBN-13 = "978-0-201-70313-9", LCCN = "QA76.76.O63 S59485 2002", bibdate = "Wed Apr 16 06:24:31 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes two CD-ROMs.", acknowledgement = ack-nhfb, } @Article{Swaine:2003:PPJ, author = "Michael Swaine", title = "Programming Paradigms: Just Released", journal = j-DDJ, volume = "28", number = "6", pages = "68, 70--71", month = jun, year = "2003", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Jun 12 05:46:23 MDT 2003", bibsource = "http://www.ddj.com/articles/2003/0306/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/documents/s=8213/ddj0306h/", abstract = "Michael feels a sense of release as he takes a look at Apple's OS X implementation of X Windows System Version 11 --- a network-transparent, client-server graphics display system that is the de facto standard for UNIX systems.", acknowledgement = ack-nhfb, } @Book{Taylor:2003:LUM, author = "Dave Taylor and Brian Jepson", title = "Learning {Unix} for {Mac OS X}", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xiv + 141", year = "2003", ISBN = "0-596-00470-2", ISBN-13 = "978-0-596-00470-5", LCCN = "QA76.76.O63 T388 2003", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Covers Mac OS X Jaguar.", acknowledgement = ack-nhfb, keywords = "Mac OS; operating systems (computers); UNIX (computer file)", } @Book{Taylor:2003:STY, author = "Dave Taylor", title = "{Sams} teach yourself {Unix} system administration in 24 hours", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xiii + 508", year = "2003", ISBN = "0-672-32398-2", ISBN-13 = "978-0-672-32398-0", LCCN = "QA76.76.O63 T3885 2003", bibdate = "Sun Mar 23 07:05:13 MST 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Covers: Unix/Linux/Solaris/Mac OS X.", acknowledgement = ack-nhfb, keywords = "operating systems (computers); UNIX (computer file)", } @InProceedings{Thomas:2003:IMF, author = "James W. Thomas", title = "Inlining of mathematical functions in {HP-UX} for {Itanium 2}", crossref = "IEEE:2003:PCI", pages = "135--144", year = "2003", DOI = "http://doi.ieeecomputersociety.org/10.1109/CGO.2003.1191540", bibdate = "Thu Jun 09 18:37:10 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "HP-UX compilers inline mathematical functions for Itanium Processor Family (IPF) systems to improve throughput 4X--8X versus external library calls, achieving speeds comparable to highly tuned vector functions, without requiring the user to code for a vector interface and without sacrificing accuracy or edge-case behaviors. This paper highlights IPF architectural features that support implementation of high-performance, high-quality math functions for inlining. It discusses strategies for utilizing the features and developing inlineable sequences on a large scale, and it presents requisite compiler features and language extensions. Also, this paper describes compiler mechanisms that produce inlineable code and inline it.", acknowledgement = ack-nhfb, keywords = "EPIC; Intel IA-64; Itanium", } @Book{Tiemann:2003:FU, author = "Brian Tiemann and Michael C. Urban", title = "{FreeBSD} Unleashed", publisher = pub-SAMS, address = pub-SAMS:adr, edition = "Second", pages = "xxvii + 974", year = "2003", ISBN = "0-672-32456-3", ISBN-13 = "978-0-672-32456-7", LCCN = "QA76.754 .T54 2003", bibdate = "Sun Apr 9 15:32:35 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "FreeBSD; Free computer software; Computer networks", } @Book{Ts:2003:USF, author = "Jay Ts and Robert Eckstein and David Collier-Brown", title = "Using {Samba}: {A} File \& Print Server for {Linux}, {Unix} \& {Mac OS X}", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xiii + 539", year = "2003", ISBN = "0-596-00256-4", ISBN-13 = "978-0-596-00256-5", LCCN = "QA76.9.C55 E38 2003", bibdate = "Mon Apr 18 15:04:25 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", price = "US\$39.95 ; EUR 44.00; SFr 72.90", URL = "http://www.oreilly.com/catalog/9780596002565; http://www.oreilly.com/catalog/samba2/", acknowledgement = ack-nhfb, remark = "Eckstein's name appears first on the earlier edition.", subject = "Samba (Computer file); Client/server computing; UNIX (Computer file)", } @Book{Urban:2003:STY, author = "Michael Urban and Brian Tiemann", title = "{Sams} teach yourself {FreeBSD} in 24 hours", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xvii + 433", year = "2003", ISBN = "0-672-32424-5", ISBN-13 = "978-0-672-32424-6", LCCN = "QA76.76.O63 U647 2003", bibdate = "Tue Mar 16 06:42:12 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{vonHagen:2003:DGG, author = "William von Hagen and Kurt Wall", title = "The Definitive Guide to {GCC}", publisher = pub-APRESS, address = pub-APRESS:adr, pages = "xxviii + 519", year = "2003", ISBN = "1-59059-109-7", ISBN-13 = "978-1-59059-109-3", LCCN = "QA76.76.C65 W36 2004", bibdate = "Fri Nov 07 05:32:50 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Vrenios:2003:LCA, author = "Alex Vrenios", title = "{Linux} cluster architecture", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "x + 247", year = "2003", ISBN = "0-672-32368-0", ISBN-13 = "978-0-672-32368-3", LCCN = "QA76.58 .V74 2002", bibdate = "Fri Nov 07 05:36:48 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Walsh:2003:RL, editor = "Matt Walsh and Lar Kaufman and Terry Dawson and Matthias Kalle Dalheimer", title = "Running {Linux}", publisher = pub-ORA, address = pub-ORA:adr, edition = "Fourth", pages = "xviii + 672", year = "2003", ISBN = "0-596-00272-6", ISBN-13 = "978-0-596-00272-5", LCCN = "QA76.76.O63 R855 2003", bibdate = "Mon Apr 18 15:04:35 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.oreilly.com/catalog/prdindex.html; z3950.loc.gov:7090/Voyager", price = "US\$44.95", URL = "http://www.oreilly.com/catalog/9780596002725; http://www.oreilly.com/catalog/runux4", acknowledgement = ack-nhfb, publishersummary = "The fourth edition of Running Linux delves deeper into installation, configuring the windowing system, system administration, and networking. A solid foundation text for any Linux user, the book also includes additional resources for dealing with special requirements imposed by hardware, advanced applications, and emerging technologies. Whether you are using Linux on a home workstation or maintaining a network server, Running Linux will provide expert advice just when you need it.", remark = "Previous eds. entered under Walsh.", subject = "GNU/Linux; Operating systems (Computers)", xxauthor = "Matt Welsh and Lar Kaufman and Terry Dawson and Matthias Kalle Dalheimer", } @Book{Ward:2003:VWH, author = "Brian Ward and Gerhard Franken", title = "{VMware Workstation: [das Handbuch; Installation, Konfiguration, Anwendung und Troubleshooting; Gast-Systeme: Windows, Linux, BSD, Novell NetWare, Solaris, FreeDOS und Oberon; virtuelle Netzwerke, Netzwerkkonfiguration und -dienste]}", publisher = "mitp-Verl.", address = "Landsberg, Germany", pages = "336", year = "2003", ISBN = "3-8266-0964-6", ISBN-13 = "978-3-8266-0964-0", LCCN = "????", bibdate = "Sat Oct 14 17:21:53 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk", price = "EUR 32.00 (DE)", URL = "http://www.gbv.de/du/services/agi/FCC0A57071BE8695C125704A0029797F/FLMA122525", acknowledgement = ack-nhfb, language = "German", subject = "VMware Workstation", } @Book{Welch:2003:PPT, author = "Brent B. Welch and Ken Jones and Jeffrey Hobbs", title = "Practical Programming in {Tcl} \& {Tk}", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Fourth", pages = "lx + 882", year = "2003", ISBN = "0-13-038560-3", ISBN-13 = "978-0-13-038560-4", LCCN = "QA76.73.T44W45 2003", bibdate = "Mon Apr 12 18:18:22 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", acknowledgement = ack-nhfb, } @Book{Wisniewski:2003:LOI, author = "John Robert Wisniewski", title = "{Linux} and {OpenVMS} interoperability: tricks for old dogs, new dogs, and hot dogs with open systems", publisher = pub-DP, address = pub-DP:adr, pages = "xiii + 198", year = "2003", ISBN = "1-55558-267-2", ISBN-13 = "978-1-55558-267-8", LCCN = "QA76.76.O63 W584 2003", bibdate = "Mon Jul 3 19:09:04 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Compact solutions", URL = "http://www.loc.gov/catdir/description/els041/2003276793.html; http://www.loc.gov/catdir/toc/els041/2003276793.html", acknowledgement = ack-nhfb, subject = "Linux; OpenVMS device drivers", } @Article{Woehr:2003:PBL, author = "Jack J. Woehr", title = "Programmer's Bookshelf: {Linux}, {XP}, and Everything in Between", journal = j-DDJ, volume = "28", number = "3", pages = "69--69", month = mar, year = "2003", CODEN = "DDJOEB", ISSN = "1044-789X", bibdate = "Thu Jun 12 05:46:22 MDT 2003", bibsource = "http://www.ddj.com/articles/2003/0303/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ddj.com/documents/s=7826/ddj0303j/", abstract = "The books Jack examines this month include The Linux Development Platform, by Rafeeq Ur Rehman and Christopher Paul; DNS and BIND Cookbook, by Cricket Liu; and Windows XP Annoyances, by David Karp.", acknowledgement = ack-nhfb, } @Book{Yaghmour:2003:BEL, author = "Karim Yaghmour", title = "Building Embedded {Linux} Systems", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxii + 391", year = "2003", ISBN = "0-596-00222-X", ISBN-13 = "978-0-596-00222-0", LCCN = "QA76.76.O63 Y35 2003", bibdate = "Mon Apr 18 15:03:59 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", price = "US\$44.95, CDN\$69.95, UK\pounds 31.95", URL = "http://www.oreilly.com/catalog/9780596002220; http://www.oreilly.com/catalog/belinuxsys/", acknowledgement = ack-nhfb, subject = "GNU/Linux; Embedded computer systems; Programming; Operating systems (Computers)", } @Book{Adelstein:2004:EJL, author = "Tom Adelstein and Sam Hiser", title = "Exploring the {JDS Linux} Desktop", publisher = pub-ORA-MEDIA, address = pub-ORA-MEDIA:adr, pages = "xiv + 390", year = "2004", ISBN = "0-596-00752-3 (paperback)", ISBN-13 = "978-0-596-00752-2 (paperback)", LCCN = "QA76.76.O63 A353 2004", bibdate = "Sat Jun 11 09:50:59 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", price = "US\$34.95, CAN\$50.95, UK\pounds 24.95", URL = "http://www.oreilly.com/catalog/9780596007522; http://www.oreilly.com/catalog/jds/index.html", acknowledgement = ack-nhfb, keywords = "Java Desktop System (JDS)", remark = "Linux for prime time with the Java Desktop System. CD-ROM contains Sun Microsystem's Java Desktop System.", subject = "GNU/Linux; Operating systems (Computers); Java (Computer program language)", } @Book{Barrett:2004:LKG, author = "Daniel J. Barrett and Torsten Wilhelm", title = "{Linux - kurz and gut}", publisher = pub-ORA, address = pub-ORA:adr, pages = "204", year = "2004", ISBN = "3-89721-501-2 (paperback)", ISBN-13 = "978-3-89721-501-6 (paperback)", LCCN = "????", bibdate = "Thu Jul 15 18:30:58 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk", price = "EUR 9.90", series = "O'Reillys Taschenbibliothek", URL = "http://www.gbv.de/dms/ilmenau/toc/388679999.PDF", acknowledgement = ack-nhfb, language = "German", } @Book{Barrett:2004:LPG, author = "Daniel J. Barrett", title = "{Linux} pocket guide", publisher = pub-ORA-MEDIA, address = pub-ORA-MEDIA:adr, pages = "viii + 191", year = "2004", ISBN = "0-596-00628-4", ISBN-13 = "978-0-596-00628-0", LCCN = "QA76.76.O63 B3685 2004", bibdate = "Thu Apr 21 09:26:06 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.oreilly.com/catalog/9780596006280", acknowledgement = ack-nhfb, remark = "Covers Fedora Linux.", subject = "GNU/Linux; Operating systems (Computers)", } @Book{Beale:2004:SLB, author = "Jay Beale", title = "Securing {Linux} the {Bastille} Way", publisher = pub-AW, address = pub-AW:adr, pages = "????", year = "2004", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Fri Oct 31 15:26:29 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "To appear.", URL = "http://www.bastille-linux.org/; http://www.linuxsecurity.com/feature_stories/feature_story-59.html", acknowledgement = ack-nhfb, } @Book{Blaess:2004:SSL, author = "Christophe Blaess", title = "Scripts sous {Linux}: {Shell Bash}, {Sed}, {Awk}, {Perl}, {TCL}, {Tk}, {Python}, {Ruby}", publisher = pub-EYROLLES, address = pub-EYROLLES:adr, edition = "Second", pages = "xxi + 761", year = "2004", ISBN = "2-212-11405-2", ISBN-13 = "978-2-212-11405-8", LCCN = "QA76.76O63; QA76.7", bibdate = "Fri Jul 01 14:51:40 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Bramer:2004:DGL, author = "Michael Bramer", title = "{Debian GNU LINUX 2.2: kompromisslos in Sicherheit \& Stabilit{\"a}t: {\"u}ber 4000 Programmpakete: ausgereifte Desktop- \& Server-L{\"o}sungen: mit Support \& Handbuch}. ({German}) [{Debian GNU LINUX 2.2}: Uncompromising in Security and Stability: Over 4000 program packages: Mature Desktop and Server Solutions: With Support and Handbook]", publisher = "LinuxLand Internationale", address = "M{\"u}enchen, Germany", pages = "????", year = "2004", ISBN = "3-00-005785-4", ISBN-13 = "978-3-00-005785-4", LCCN = "????", bibdate = "Mon Apr 18 06:47:23 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, xxnote = "Check year??", } @Book{Bulger:2004:MPD, author = "Brad Bulger and Jay Greenspan and Dave Wall", title = "{MySQL\slash PHP} database applications", publisher = pub-WILEY, address = pub-WILEY:adr, edition = "Second", pages = "xliii + 764", year = "2004", ISBN = "0-7645-3799-7 (electronic book)", ISBN-13 = "978-0-7645-3799-8 (electronic book)", LCCN = "QA7673.S67", bibdate = "Fri Oct 24 15:27:12 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk", URL = "http://www.netLibrary.com/urlapi.asp?action=summary&v=1&bookid=100883", acknowledgement = ack-nhfb, } @Book{Burtch:2004:LSS, author = "Ken O. Burtch", title = "{Linux} Shell Scripting with {Bash}", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xvi + 412", year = "2004", ISBN = "0-672-32642-6", ISBN-13 = "978-0-672-32642-4", LCCN = "QA76.76.O63 B8725 2004", bibdate = "Wed Apr 14 15:51:46 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$34.99", acknowledgement = ack-nhfb, } @Book{Cameron:2004:MLS, author = "Jamie Cameron", title = "Managing {Linux} Systems with {Webmin}: System Administration and Module Development", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xvi + 792", year = "2004", ISBN = "0-13-140882-8", ISBN-13 = "978-0-13-140882-1", LCCN = "QA76.76.O63 2004", bibdate = "Wed Dec 03 07:47:06 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$44.99", series = "Bruce Perens' Open source series", acknowledgement = ack-nhfb, } @Book{Carter:2004:OIS, author = "Brian Carter", title = "{OpenBSD}: Implementing the Secure {UNIX} Platform", publisher = pub-HUNGRY-MINDS, address = pub-HUNGRY-MINDS:adr, pages = "360 (est.)", year = "2004", ISBN = "0-7645-3933-7", ISBN-13 = "978-0-7645-3933-6", LCCN = "????", bibdate = "Sat Dec 06 08:31:00 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$40.00", acknowledgement = ack-nhfb, } @Book{Cooper:2004:HUI, author = "Chris Cooper and C. G. (Chris G.) Moore", title = "{HP-UX 11i} internals", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxxiii + 386", year = "2004", ISBN = "0-13-032861-8", ISBN-13 = "978-0-13-032861-8", LCCN = "QA76.76.O63 C6644 2004", bibdate = "Fri Apr 29 07:16:58 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Hewlett--Packard professional books", acknowledgement = ack-nhfb, subject = "HP-UX; Operating systems (Computers)", } @Book{Costales:2004:SC, author = "Bryan Costales and Gregory Neil Shapiro and Claus Assmann and George Jansen", title = "{Sendmail 8.13} companion", publisher = pub-ORA-MEDIA, address = pub-ORA-MEDIA:adr, pages = "x + 179", year = "2004", ISBN = "0-596-00845-7 (paperback)", ISBN-13 = "978-0-596-00845-1 (paperback)", LCCN = "TK5105.74.S44 C67 2004", bibdate = "Thu Apr 21 09:28:55 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Sendmail; Electronic mail systems", } @Article{Cusumano:2004:TSMc, author = "Michael A. Cusumano", title = "Technology strategy and management: Reflections on free and open software", journal = j-CACM, volume = "47", number = "10", pages = "25--27", month = oct, year = "2004", CODEN = "CACMA2", ISSN = "0001-0782 (print), 1557-7317 (electronic)", bibdate = "Thu Dec 2 06:08:31 MST 2004", bibsource = "http://www.acm.org/pubs/contents/journals/cacm/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Cathedral and the Bazaar; GNU/Linux; Red Hat", } @Article{Decrem:2004:DLW, author = "Bart Decrem", title = "Desktop {Linux}: Where Art Thou?", journal = j-QUEUE, volume = "2", number = "3", pages = "48--56", month = may, year = "2004", CODEN = "AQCUAE", ISSN = "1542-7730 (print), 1542-7749 (electronic)", ISSN-L = "1542-7730", bibdate = "Thu Jun 23 16:38:49 MDT 2005", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Dent:2004:PDG, author = "Kyle D. Dent", title = "{Postfix}: the definitive guide: a secure and easy-to-use {MTA} for {Unix}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xv + 260", year = "2004", ISBN = "0-596-00212-2", ISBN-13 = "978-0-596-00212-1", LCCN = "TK5105.74.P66 D46 2004", bibdate = "Mon Apr 18 15:03:52 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", price = "US\$", URL = "http://www.oreilly.com/catalog/postfix/", acknowledgement = ack-nhfb, subject = "Postfix (Computer file); Electronic mail systems; Computer programs; Internet", } @Book{Donato:2004:SPS, author = "Alberto Donato", title = "A software platform to support dynamically reconfigurable systems-on-chip under the {GNU\slash Linux} operating system", publisher = "Politecnico", address = "Milano, Italy", pages = "xvi + 95", year = "2004", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Fri Dec 09 05:25:52 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Dufrasne:2004:IVE, editor = "Bertrand Dufrasne and others", title = "Implementing {VMware ESX Server} with {IBM TotalStorage FAStT}", publisher = "IBM, International Support Organization", address = "????", pages = "xvi + 246", month = sep, year = "2004", ISBN = "0-7384-9134-9", ISBN-13 = "978-0-7384-9134-9", LCCN = "TK5105.86 I475 2004", bibdate = "Sun Apr 9 15:43:22 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", note = "Publication number SG24-6434-00.", series = "IBM redbooks", acknowledgement = ack-nhfb, subject = "Storage area networks (Computer networks); Web servers; IBM computers", } @Book{Dwivedi:2004:ISS, author = "Himanshu Dwivedi", title = "Implementing {SSH}: strategies for optimizing the secure shell", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxvi + 376", year = "2004", ISBN = "0-471-45880-5", ISBN-13 = "978-0-471-45880-7", LCCN = "QA76.76.O63 D895 2004", bibdate = "Wed Jan 21 05:31:30 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "UK\pounds 24.50", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://www.loc.gov/catdir/bios/wiley046/2004297174.html; http://www.loc.gov/catdir/description/wiley041/2004297174.html; http://www.loc.gov/catdir/toc/wiley041/2004297174.html", acknowledgement = ack-nhfb, remark = "Pt. 1. SSH Basics. ch. 1. Overview of SSH ; ch. 2. SSH Servers ; ch. 3. Secure Shell clients ; ch. 4. Authentication ; ch. 5. SSH Management -- pt. 2. Remote Access Solutions. ch. 6. SSH port forwarding ; ch. 7. Secure remote access -- pt. 3. Protocol replacement. ch. 8. SSH versatility ; ch. 9. Proxy technologies in a secure Web environment ; ch. 10. SSH case studies.", subject = "UNIX Shells; Computer networks; Security measures; Data encryption (Computer science)", } @Article{Edmundsson:2004:DET, author = "Niklas Edmundsson and Erik Elmroth and Bo K{\aa}gstr{\"o}m and Markus M{\aa}rtensson and Mats Nyl{\'e}n and {\AA}ke Sandgren and Mattias Wadenstein", title = "Design and evaluation of a {TOP100 Linux Super Cluster} system", journal = j-CCPE, volume = "16", number = "8", pages = "735--750", month = jul, year = "2004", CODEN = "CCPEBO", DOI = "http://dx.doi.org/10.1002/cpe.787", ISSN = "1532-0626 (print), 1532-0634 (electronic)", ISSN-L = "1532-0626", bibdate = "Sat May 14 11:30:54 MDT 2005", bibsource = "http://www.interscience.wiley.com/jpages/1532-0626; http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www3.interscience.wiley.com/journalfinder.html", acknowledgement = ack-nhfb, onlinedate = "2 Mar 2004", } @Book{Fernando:2004:GGP, editor = "Randima Fernando", title = "{GPU} gems: programming techniques, tips, and tricks for real-time graphics", volume = "1", publisher = pub-AW, address = pub-AW:adr, pages = "xvv + 765", year = "2004", ISBN = "0-321-22832-4", ISBN-13 = "978-0-321-22832-1", LCCN = "T385 .G6879 2004", bibdate = "Thu Jul 29 13:36:54 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", price = "US\$45.99", series = "GPU gems", acknowledgement = ack-nhfb, keywords = "CUDA; nVIDIA", subject = "Computer graphics; Real-time programming", } @Article{Fioretti:2004:RMU, author = "Marco Fioretti", title = "Review: {{\em Mastering UNIX Shell Scripting}}", journal = j-LINUX-J, volume = "2004", number = "127", pages = "??--??", month = nov, year = "2004", bibdate = "Sat Dec 24 17:46:02 MST 2005", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Ganten:2004:DGLa, author = "Peter H. Ganten and Wulf Alex", title = "{Debian GNU\slash Linux: Grundlagen, Installation, Administration und Anwendung}. ({German}) [{Debian GNU\slash Linux}: Basis, Installation, Administration, and Use]", publisher = pub-SV, address = pub-SV:adr, pages = "xxii + 946", year = "2004", ISBN = "3-540-43267-1", ISBN-13 = "978-3-540-43267-8", LCCN = "????", bibdate = "Mon Apr 18 06:43:09 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Ganten:2004:DGLb, author = "Peter H. Ganten", title = "{Debian-GNU-Linux-Powerpack}", publisher = pub-SV, address = pub-SV:adr, pages = "????", year = "2004", ISBN = "3-540-66384-3", ISBN-13 = "978-3-540-66384-3", LCCN = "????", bibdate = "Mon Apr 18 06:45:44 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, xxnote = "Check year??", } @Book{Grant:2004:LNG, author = "Rickford Grant", title = "{Linux} for non-geeks: a hands-on, project-based, take-it-slow guidebook", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "xx + 335", year = "2004", ISBN = "1-59327-034-8", ISBN-13 = "978-1-59327-034-6", LCCN = "QA76.76.O63 G723 2004eb", bibdate = "Tue Aug 5 18:17:57 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", note = "Includes two CD-ROMs with Fedora.", URL = "http://www.loc.gov/catdir/toc/ecip0411/2003024732.html; http://www.oreilly.com/catalog/1593270348/; http://www.oreilly.com/catalog/9781593270346", acknowledgement = ack-nhfb, bookreview = "http://www.unixreview.com/documents/s=8989/ur0406h/", subject = "Linux; Operating systems (Computers)", xxpages = "xx + 308", } @Article{Haddad:2004:RUS, author = "Ibrahim Haddad", title = "Review: {UNIX} systems programming: Communication, concurrency and theory", journal = j-LINUX-J, volume = "2004", number = "118", pages = "??--??", month = feb, year = "2004", bibdate = "Sat Dec 24 17:45:53 MST 2005", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Hearn:2004:CGO, author = "Donald Hearn and M. Baker", title = "Computer Graphics with {OpenGL}", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Third", pages = "xxii + 857", year = "2004", ISBN = "0-13-015390-7", ISBN-13 = "978-0-13-015390-6", LCCN = "T385 .H395 2004", bibdate = "Thu Jul 14 11:41:06 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$80.00", acknowledgement = ack-nhfb, } @Book{Hentzen:2004:LTW, author = "Whil Hentzen and Chris Herborth", title = "{Linux} transfer for {Windows} power users [electronic resource]", publisher = "Hentzenwerke Publishing", address = "Whitefish Bay, WI, USA", year = "2004", ISBN = "1-930919-42-5", ISBN-13 = "978-1-930919-42-6", LCCN = "QA76.76.O63 H468 2004b", bibdate = "Fri Jun 10 13:13:39 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; sirsi.library.utoronto.ca:2200/UNICORN", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://link.library.utoronto.ca/eir/EIRdetail.cfm?Resources\_\_ID=77297&T=resource", acknowledgement = ack-nhfb, remark = "Digitized and made available by: Books 24x7.com. Title from title screen. . Subtitle from caption: Getting started with Linux for the desktop.", subject = "Linux; Microsoft Windows (Computer file); Operating systems (Computers)", } @Book{Hertzog:2004:DHT, author = "Rapha{\"e}l Hertzog", title = "Debian", publisher = "Eyrolles", address = "Paris, France", pages = "xi + 246", year = "2004", ISBN = "2-212-11398-6", ISBN-13 = "978-2-212-11398-3", LCCN = "????", bibdate = "Sun Oct 26 17:16:23 MDT 2008", bibsource = "carmin.sudoc.abes.fr:210/ABES-Z39-PUBLIC; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "GNU/Linux; PostgreSQL", language = "French", } @Article{Hidgson:2004:BRL, author = "J. P. E. Hidgson", title = "Book Review: {{\em Linux on the Mainframe\/} by John Eilert, Maria Eisenhaendler, Dorothea Matthaeu, and Ingol Salm, Prentice Hall Professional Technical Reference, 2003, \$49.99, ISBN: 0-13-101415-3}", journal = j-QUEUE, volume = "2", number = "1", pages = "92--92", month = mar, year = "2004", CODEN = "AQCUAE", ISSN = "1542-7730 (print), 1542-7749 (electronic)", ISSN-L = "1542-7730", bibdate = "Mon May 17 15:38:57 MDT 2004", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @InProceedings{Hoflehner:2004:COT, author = "Gerolf Hoflehner and Knud Kirkegaard and Rod Skinner and Daniel Lavery and Yong-fong Lee and Wei Li", title = "Compiler Optimizations for Transaction Processing Workloads on {Itanium Linux} Systems", crossref = "IEEE:2004:PIS", pages = "294--303", year = "2004", DOI = "http://doi.ieeecomputersociety.org/10.1109/MICRO.2004.11", bibdate = "Thu Jun 09 19:04:31 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This paper discusses a repertoire of well-known and new compiler optimizations that help produce excellent server application performance and investigates their performance contributions. These optimizations combined produce a 40\% speed-up in on-line transaction processing (OLTP) performance and have been implemented in the Intel C/C++ Itanium compiler. In particular, the paper presents compiler optimizations that take advantage of the Itanium register stack, proposes an enhanced Linux preemption model and demonstrates their performance potential for server applications.", acknowledgement = ack-nhfb, } @Book{Jang:2004:RRC, author = "Michael Jang", title = "{RHCE Red Hat} certified engineer: {Linux} study guide (exam {RH302})", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, edition = "Fourth", pages = "755", year = "2004", ISBN = "0-07-225365-7", ISBN-13 = "978-0-07-225365-8", LCCN = "QA76.3 .R46 2002", bibdate = "Fri Apr 29 07:14:51 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Electronic data processing personnel; Certification; Operating systems (Computers); Examinations; Study guides; Linux", } @Book{Jepson:2004:MXP, author = "Brian Jepson and Ernest E. (Ernest Eric) Rothman", title = "{Mac OS X Panther} for {Unix} geeks", publisher = pub-ORA-MEDIA, address = pub-ORA-MEDIA:adr, edition = "Second", pages = "xvii + 363", year = "2004", ISBN = "0-596-00607-1", ISBN-13 = "978-0-596-00607-5", LCCN = "QA76.76.O63 J475 2004", bibdate = "Thu Apr 21 09:25:48 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.oreilly.com/catalog/9780596006075", acknowledgement = ack-nhfb, remark = "Rev. ed.: Mac OS X for Unix geeks. 2002.", subject = "Mac OS; UNIX (Computer file); Macintosh (Computer); Programming; Operating systems (Computers)", } @Book{Jordan:2004:ESL, author = "Edmund Jordan", title = "{Embedded Systeme mit Linux programmieren: GNU-Softwaretools zur Programmierung ARM-basierender Systeme}. ({German}) [Embedded Systems with Linux Programming: {GNU} Software Tools for Programming {ARM}-based Systems]", publisher = "Franzis", address = "Feldkirchen, Germany", pages = "384", year = "2004", ISBN = "3-7723-5599-4", ISBN-13 = "978-3-7723-5599-8", LCCN = "????", bibdate = "Mon Apr 18 06:40:16 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Kshetri:2004:ELA, author = "Nir Kshetri", title = "Economics of {Linux} Adoption in Developing Countries", journal = j-IEEE-SOFTWARE, volume = "21", number = "1", pages = "74--81", month = jan # "\slash " # feb, year = "2004", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/MS.2004.1259224", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Thu Nov 10 09:16:24 MST 2005", bibsource = "http://csdl2.computer.org/persagen/DLAbsToc.jsp?resourcePath=/dl/mags/so/&toc=comp/mags/so/2004/01/s1toc.xml; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Lavigne:2004:BHI, author = "Dru Lavigne", title = "{BSD} Hacks: 100 Industrial Strength Tips \& Tools", publisher = pub-ORA, address = pub-ORA:adr, pages = "xvii + 427", year = "2004", ISBN = "0-596-00679-9", ISBN-13 = "978-0-596-00679-2", LCCN = "QA76.76.O63 L372 2004", bibdate = "Sat Jul 10 17:25:51 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$24.95, CAN\$36.95", acknowledgement = ack-nhfb, subject = "UNIX (Computer file); Berkeley BSD (Computer file); Operating systems (Computers)", } @Book{Levine:2004:Q, author = "John R. Levine", title = "{Qmail}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xii + 234", year = "2004", ISBN = "1-56592-628-5", ISBN-13 = "978-1-56592-628-8", LCCN = "TK5105.74.Q43 L48 2004", bibdate = "Mon Apr 18 14:57:24 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, remark = "``Managing Unix-based mail systems''--Cover.", subject = "Qmail; Electronic mail systems", } @Book{Levine:2004:UD, author = "John Levine and Margaret Levine Young", title = "{UNIX} for Dummies", publisher = pub-WILEY, address = pub-WILEY:adr, edition = "Fifth", pages = "xxii + 380", year = "2004", ISBN = "0-7645-4147-1", ISBN-13 = "978-0-7645-4147-6", LCCN = "QA76.76.O63 L486 2004", bibdate = "Sat Jan 10 09:23:32 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$21.99", acknowledgement = ack-nhfb, } @Book{Maginnis:2004:GLZ, author = "Tobin Maginnis", title = "{GNU-Linux-Zertifizierung: Pr{\"u}fungsvorbereitung zum Sair Linux and GNU Certified Professional/Administrator (LCP\slash LCA)}. ({German}) [{GNU\slash Linux} Certification: Examination Preparation for {Sair Linux} and {GNU Certified Professional/Administrator (LCP\slash LCA)}]", publisher = pub-DPUNKT-VERLAG, address = pub-DPUNKT-VERLAG:adr, pages = "????", year = "2004", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Mon Apr 18 07:19:30 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, xxnote = "Check year??", } @Article{Marchesin:2004:ULR, author = "Armand Marchesin", title = "Using {Linux} for Real-Time Applications", journal = j-IEEE-SOFTWARE, volume = "21", number = "5", pages = "18--20", month = sep # "\slash " # oct, year = "2004", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/MS.2004.1331295", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Thu Nov 10 09:16:25 MST 2005", bibsource = "http://csdl2.computer.org/persagen/DLAbsToc.jsp?resourcePath=/dl/mags/so/&toc=comp/mags/so/2004/05/s5toc.xml; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{McCarty:2004:LRE, author = "Bill McCarty", title = "Learning {Red Hat Enterprise Linux} and {Fedora}", publisher = pub-ORA, address = pub-ORA:adr, edition = "Fourth", pages = "xvii + 326", year = "2004", ISBN = "0-596-00589-X", ISBN-13 = "978-0-596-00589-4", LCCN = "QA76.76.O63 M376 2004", bibdate = "Mon Apr 18 15:08:11 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.oreilly.com/catalog/9780596005894", acknowledgement = ack-nhfb, remark = "Originally published as: Learning Red Hat Linux.", subject = "Linux", } @InProceedings{Mohror:2004:PTS, author = "Kathryn Mohror and Karen L. Karavanic", title = "Performance Tool Support for {MPI-2} on {Linux}", crossref = "ACM:2004:SHP", pages = "28--28", year = "2004", bibdate = "Tue Dec 27 07:57:20 MST 2005", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Palmer:2004:SAO, author = "Brandon Palmer and Jose Nazario", title = "Secure architectures with {OpenBSD}", publisher = pub-AW, address = pub-AW:adr, pages = "xix + 519", year = "2004", ISBN = "0-321-19366-0 (paperback)", ISBN-13 = "978-0-321-19366-7 (paperback)", LCCN = "QA76.76.O63 P335 2004", bibdate = "Fri Apr 29 07:07:06 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://www.loc.gov/catdir/toc/ecip0413/2004001163.html", acknowledgement = ack-nhfb, subject = "OpenBSD (Electronic resource); Operating systems (Computers); Computer security; Computer architecture", } @Book{Purdy:2004:LIP, author = "Gregor N. Purdy", title = "{Linux} iptables: pocket reference", publisher = pub-ORA, address = pub-ORA:adr, pages = "iii + 91", year = "2004", ISBN = "0-596-00569-5", ISBN-13 = "978-0-596-00569-6", LCCN = "QA76.76.O63 P873 2004", bibdate = "Mon Apr 18 15:07:58 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.oreilly.com/catalog/9780596005696", acknowledgement = ack-nhfb, subject = "GNU/Linux; Operating systems (Computers)", } @Book{Rankin:2004:KHI, author = "Kyle Rankin", title = "{Knoppix} hacks: 100 industrial-strength tips and tools", publisher = pub-ORA-MEDIA, address = pub-ORA-MEDIA:adr, pages = "xx + 314", year = "2004", ISBN = "0-596-00787-6 (paperback)", ISBN-13 = "978-0-596-00787-4 (paperback)", LCCN = "QA76.76.O63 R368 2004", bibdate = "Tue Aug 2 10:55:57 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, remark = "Knoppix is a live CD Linux distribution for PCs. It runs entirely from CD, and does not require installation to the hard drive.", subject = "Linux; Knoppix (Computer file); Operating systems (Computers)", } @Book{Raymond:2004:AUP, author = "Eric Steven Raymond", title = "The Art of {UNIX} Programming", publisher = pub-AW, address = pub-AW:adr, pages = "xxxii + 525", year = "2004", ISBN = "0-13-124085-4", ISBN-13 = "978-0-13-124085-8", LCCN = "????", bibdate = "Mon Oct 20 09:40:25 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.99, CAN\$60.99", acknowledgement = ack-nhfb, annote = "With guest contributions from Ken Arnold, Steven M. Bellovin, Stuart Feldman, Jim Gettys, Steve Johnson, Brian Kernighan, David Korn, Mike Lesk, Doug McIlroy, Marshall Kirk McKusick, Keith Packard, Henry Spencer, and Ken Thompson.", } @Book{Robbins:2004:LPE, author = "Arnold Robbins", title = "{Linux} Programming by Example: The Fundamentals", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxxii + 687", year = "2004", ISBN = "0-13-142964-7", ISBN-13 = "978-0-13-142964-2", LCCN = "QA76.76.O63 R568 2004", bibdate = "Tue May 18 14:39:49 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.99, CAN\$57.99", URL = "http://www.phptr.com/title/0131429647", acknowledgement = ack-nhfb, } @Book{Rochkind:2004:AUP, author = "Marc J. Rochkind", title = "Advanced {UNIX} Programming", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xiii + 719", year = "2004", ISBN = "0-13-141154-3", ISBN-13 = "978-0-13-141154-8", LCCN = "QA76.76.O63 R63 2004", bibdate = "Wed Jul 07 10:41:05 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$44.99", URL = "http://www.aw-bc.com/catalog/academic/product/0,1144,0131411543,00.html", acknowledgement = ack-nhfb, } @Book{Sauers:2004:HUT, author = "Robert (Robert F.) Sauers and Chris P. Ruemmler and Peter Weygant", title = "{HP-UX 11i} tuning and performance", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxvi + 530", year = "2004", ISBN = "0-13-143349-0 (paperback)", ISBN-13 = "978-0-13-143349-6 (paperback)", LCCN = "QA76.76.O63 S35625 2004", bibdate = "Fri Apr 29 07:13:38 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Hewlett--Packard professional books", acknowledgement = ack-nhfb, subject = "HP-UX; Operating systems (Computers)", } @Article{Schweitzer:2004:BRL, author = "Martin Schweitzer", title = "Book Review: {{\em Linux in a Nutshell}, 4th ed., by Ellen Siever, Stephen Figgins, and Aaron Weber, O'Reilly Books, 2003, \$39.95, ISBN: 0-596-00482-6}", journal = j-QUEUE, volume = "1", number = "10", pages = "88--88", month = feb, year = "2004", CODEN = "AQCUAE", ISSN = "1542-7730 (print), 1542-7749 (electronic)", ISSN-L = "1542-7730", bibdate = "Sat Mar 6 07:19:32 MST 2004", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Serral:2004:LNS, author = "Ren{\'e} Serral and Marisa Gil", title = "A {Linux} networking study", journal = j-OPER-SYS-REV, volume = "38", number = "3", pages = "1--11", month = jul, year = "2004", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:48 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Shankar:2004:COS, author = "K. S. Shankar and Helmut Kurth", title = "Certifying Open Source---The {Linux} Experience", journal = j-IEEE-SEC-PRIV, volume = "2", number = "6", pages = "28--33", month = nov # "\slash " # dec, year = "2004", CODEN = "????", DOI = "http://dx.doi.org/10.1109/MSP.2004.96", ISSN = "1540-7993 (print), 1558-4046 (electronic)", bibdate = "Sat Dec 11 18:47:37 MST 2004", bibsource = "http://computer.org/security/sp2003/; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://csdl.computer.org/dl/mags/sp/2004/06/j6028.htm; http://csdl.computer.org/dl/mags/sp/2004/06/j6028.pdf; http://doi.ieeecomputersociety.org/10.1109/MSP.2004.96", acknowledgement = ack-nhfb, } @Article{Stanik:2004:NNW, author = "John Stanik", title = "News 2.0: New {Web} Provides Battery-powered Option; There's Nothing Like a Map; Shall {I} Compare Thee to a Big Squeeze?; {Linux} Support: {A} Black Hole?", journal = j-QUEUE, volume = "2", number = "8", pages = "14--14", month = nov, year = "2004", CODEN = "AQCUAE", ISSN = "1542-7730 (print), 1542-7749 (electronic)", ISSN-L = "1542-7730", bibdate = "Thu Jun 23 16:38:50 MDT 2005", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Stevens:2004:APU, author = "W. Richard Stevens and Stephen Rago", title = "Advanced Programming in the {UNIX} Environment", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "????", year = "2004", ISBN = "0-201-43307-9", ISBN-13 = "978-0-201-43307-4", LCCN = "QA76.76.O63 S754 2005", bibdate = "Fri Nov 07 07:24:27 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://www.loc.gov/catdir/toc/ecip059/2005007943.html", acknowledgement = ack-nhfb, subject = "Operating systems (Computers); UNIX (Computer file)", } @Book{Stevens:2004:UNP, author = "W. Richard Stevens and Bill Fenner and Andrew M. Rudoff", title = "{UNIX} network programming: The Sockets Networking {API}", volume = "1", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Third", pages = "xxiii +991", year = "2004", ISBN = "0-13-141155-1", ISBN-13 = "978-0-13-141155-5", LCCN = "QA76.76 .O63 S75 2004", bibdate = "Wed Dec 31 13:49:08 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$69.99", acknowledgement = ack-nhfb, } @Book{Stutz:2004:LCT, author = "Michael Stutz", title = "The {Linux} cookbook: tips and techniques for everyday use", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, edition = "Second", pages = "xxxiv + 788", year = "2004", ISBN = "1-59327-031-3", ISBN-13 = "978-1-59327-031-5", LCCN = "QA76.76.O63 S788 2004eb; QA76.76.O63 S788 2004", bibdate = "Tue Aug 5 18:17:53 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9781593270315", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Book{Taylor:2004:LUM, author = "Dave Taylor and Brian Jepson", title = "Learning {UNIX} for {Mac OS X} {Panther}", publisher = pub-ORA-MEDIA, address = pub-ORA-MEDIA:adr, edition = "Third", pages = "xiii + 168", year = "2004", ISBN = "0-596-00617-9", ISBN-13 = "978-0-596-00617-4", LCCN = "QA76.76.O63 T3884 2004", bibdate = "Thu Apr 21 09:25:56 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.oreilly.com/catalog/9780596006174", acknowledgement = ack-nhfb, remark = "Rev. ed. of: Learning Unix for Mac OS X. ``Unlock the power of UNIX'' --- cover.", subject = "UNIX (Computer file); Mac OS; Operating systems (Computers)", } @Book{Terpstra:2004:OSH, editor = "John H. Terpstra and Jelmer R. Vernooij", title = "The Official {Samba-3 HOWTO} and Reference Guide", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxxviii + 685", year = "2004", EAN = "9780131453555", ISBN = "0-13-145355-6", ISBN-13 = "978-0-13-145355-5", LCCN = "QA76.76.O63 O34345 2004", bibdate = "Mon Oct 27 13:49:45 2003", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$49.99, 50.99 EUR", series = "Bruce Perens Open Source series", URL = "http://vig.prenhall.com/catalog/academic/product/0,4096,0131453556,00.html", acknowledgement = ack-nhfb, subject = "Samba (Computer file); Microsoft Windows (Computer file); Operating systems (Computers)", } @Article{Thiruvathukal:2004:GLN, author = "George K. Thiruvathukal", title = "{Gentoo Linux}: The Next Generation of {Linux}", journal = j-COMPUT-SCI-ENG, volume = "6", number = "5", pages = "66--74", month = sep # "\slash " # oct, year = "2004", CODEN = "CSENFA", ISSN = "1521-9615 (print), 1558-366X (electronic)", bibdate = "Sat May 14 13:11:44 MDT 2005", bibsource = "http://csdl.computer.org/comp/mags/cs/2004/05/c5toc.htm; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://csdl.computer.org/dl/mags/cs/2004/05/c5066.htm; http://csdl.computer.org/dl/mags/cs/2004/05/c5066.pdf; http://doi.ieeecomputersociety.org/10.1109/MCSE.2004.37", acknowledgement = ack-nhfb, fjournal = "Computing in Science and Engineering", } @TechReport{Thomas:2004:LLF, author = "James W. Thomas and Jon P. Okada and Peter Markstein and Ren-Cang Li", title = "The {\tt Libm} Library and Floating-Point Arithmetic in {HP-UX} for {Itanium}-Based Systems: Updated for {HP-UX 11i v2}", type = "Technical report", institution = inst-HP, address = inst-HP:adr, pages = "26", day = "3", month = dec, year = "2004", bibdate = "Fri Jun 24 20:12:09 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://h21007.www2.hp.com/dspp/ddl/ddl_Download_File_TRX/1,1249,942,00.pdf", abstract = "The HP-UX libm library provides mathematical functions for C, C++, and Fortran 90. The HP-UX libm library and compilers for Itanium-based systems provide a leading combination of functionality, quality, and performance.With inlining and software pipelining, commonly used math functions can achieve throughput comparable to hand-tuned vector routines without requiring user code to be written for a vector interface, and with no loss of accuracy or edge-case behavior: For example, the single precision exponential can exceed 400 million evaluations per second on a 1.5 GHz Itanium 2 system. The math API encompasses C99, X/Open, and other popular functionality and offers four fully supported IEEE floating types. The libm library and compilers provide features that facilitate programming techniques that have not been practical heretofore. The libm implementation for Itanium-based systems, introduced in 2001 in HP-UX B.11.20 (11i v1.5), has been upgraded in B.11.22 (11i v1.6), B.11.23 (11i v2), and most recently in B.11.23 AR1204 and the associated Math Library Cumulative Patch PHSS_31853 with improved performance and overall quality and with a few new functions. The AR1204 compilers are available as patches for B.11.22; the associated Math patch for B.11.22 is PHSS_32066. This paper (1) describes the latest libm library (including sequences the compilers inline) in terms of functionality, speed, accuracy, standards, and special-case behavior; (2) discusses programming techniques that exploit the floating-point capabilities of HP-UX on Itanium- based systems; and (3) describes motivations, goals, and development strategies for the libm library and the compiler floating-point facilities.", acknowledgement = ack-nhfb, } @Book{Thomas:2004:PVC, author = "David Thomas and Andrew Hunt", title = "Pragmatic version control: using {CVS}", volume = "1", publisher = "Pragmatic Bookshelf", address = "Raleigh, NC, USA", pages = "xiv + 161", year = "2004", ISBN = "0-9745140-0-4", ISBN-13 = "978-0-9745140-0-0", LCCN = "QA76.76.D47 T46 2004", bibdate = "Tue Nov 28 14:40:07 MST 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", series = "Pragmatic starter kit series", abstract = "Discusses how to improve the effectiveness of the software development process using version control, sometimes called source code control. A version control system is a place to store all the various revisions of written code while an application is being developed. The book focuses on using the freely available open source CVS version control system.", acknowledgement = ack-nhfb, subject = "Database management; Source code (Computer science); Computer software; Development; Computer programming; Management", tableofcontents = "Introduction \\ What is version control? \\ Getting started \\ How to \ldots{} \\ Accessing the repository \\ Common CVS commands \\ Using tags and branches \\ Creating a project \\ Using modules \\ Third-part code \\ CVS summary and recipes \\ Other resources", } @Article{Tsegaye:2004:CLW, author = "Melekam Tsegaye and Richard Foss", title = "A comparison of the {Linux} and {Windows} device driver architectures", journal = j-OPER-SYS-REV, volume = "38", number = "2", pages = "8--33", month = apr, year = "2004", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:43 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Ward:2004:HLW, author = "Brian Ward", title = "How {Linux} works: what every super-user should know", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "xvi + 347 + 4", year = "2004", ISBN = "1-59327-035-6", ISBN-13 = "978-1-59327-035-3", LCCN = "QA76.76.O63 W3654 2004eb; QA76.76.O63 W3654 2004", bibdate = "Tue Aug 5 18:18:01 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9781593270353", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Book{Weeks:2004:LU, author = "Roger Weeks and Edd Dumbill and Brian Jepson", title = "{Linux} unwired", publisher = pub-ORA-MEDIA, address = pub-ORA-MEDIA:adr, pages = "xii + 297", year = "2004", ISBN = "0-596-00583-0", ISBN-13 = "978-0-596-00583-2", LCCN = "QA76.76.O63 W433 2004", bibdate = "Mon Apr 18 15:08:07 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.oreilly.com/catalog/9780596005832", acknowledgement = ack-nhfb, remark = "``A complete guide to wireless configuration'' --- cover. . Introduction to wireless -- Wi-Fi on your Linux box -- Getting on the network -- Communicating securely -- Configuring access points with Linux -- Building your own access point -- Bluetooth -- Infrared -- Cellular networking -- GPS.", subject = "GNU/Linux; Operating systems (Computers); Wireless communication systems", } @Book{Weinstabl:2004:PAE, author = "Paul Weinstabl", title = "{PostgreSQL: [Administration und Einsatz ; f{\"u}r Linux und Windows]}", publisher = "Computer- und Literatur-Verlag", address = "B{\"o}blingen, Germany", pages = "589", year = "2004", ISBN = "3-936546-22-3", ISBN-13 = "978-3-936546-22-4", LCCN = "????", bibdate = "Mon Oct 27 18:46:59 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk", price = "EUR 49.90", series = "Computer and Literatur", acknowledgement = ack-nhfb, language = "German", subject = "PostgreSQL 7.4.5", } @Article{Wolfe:2004:GTC, author = "Alexander Wolfe", title = "Toolkit: {Grid} Tools: Coming to a Cluster Near You", journal = j-QUEUE, volume = "2", number = "4", pages = "20--23", month = jun, year = "2004", bibdate = "Thu Jun 03 17:42:59 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Gelato Federation; GNU/Linux; HP Ski emulator for Itanium architecture; SmartFrog (Smart Framework for Object Groups)", } @Article{Wolfe:2004:TSD, author = "Alex Wolfe", title = "Toolkit: {Samba} Does {Windows-to-Linux} Dance", journal = j-QUEUE, volume = "2", number = "5", pages = "18--21", month = jul, year = "2004", CODEN = "AQCUAE", ISSN = "1542-7730 (print), 1542-7749 (electronic)", ISSN-L = "1542-7730", bibdate = "Sat Nov 6 17:44:33 MST 2004", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Anand:2005:MPC, author = "V. K. Anand and W. C. Jamison", title = "A middleware performance characterization of {Linux} using {IBM WebSphere Application Server}", journal = j-IBM-SYS-J, volume = "44", number = "2", pages = "353--367", month = "????", year = "2005", CODEN = "IBMSA7", ISSN = "0018-8670", bibdate = "Sat Apr 16 18:29:43 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.research.ibm.com/journal/", URL = "http://www.research.ibm.com/journal/sj/442/anand.html; http://www.research.ibm.com/journal/sj/442/anand.pdf; http://www.research.ibm.com/journal/sj/442/anand.txt", acknowledgement = ack-nhfb, } @Book{Anonymous:2005:DGL, author = "Anonymous", title = "{Debian GNU\slash Linux 3.1 r0a ``Sarge''}", publisher = "Lehmann", address = "Berlin, Germany", year = "2005", ISBN = "3-86541-064-2", ISBN-13 = "978-3-86541-064-1", LCCN = "????", bibdate = "Fri Dec 09 06:13:21 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Two DVD-ROMs.", price = "EUR9.95", acknowledgement = ack-nhfb, } @Article{Appavoo:2005:EKO, author = "J. Appavoo and M. Auslander and M. Butrico and D. da Silva and O. Krieger and M. Mergen and M. Ostrowski and B. Rosenburg and R. W. Wisniewski and J. Xenidis", title = "Experiences with {K42}, an open-source, {Linux}-compatible, scalable operating-system kernel", journal = j-IBM-SYS-J, volume = "44", number = "2", pages = "427--440", month = "????", year = "2005", CODEN = "IBMSA7", ISSN = "0018-8670", bibdate = "Sat Apr 16 18:29:43 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.research.ibm.com/journal/", URL = "http://www.research.ibm.com/journal/sj/442/appavoo.html; http://www.research.ibm.com/journal/sj/442/appavoo.pdf; http://www.research.ibm.com/journal/sj/442/appavoo.txt", acknowledgement = ack-nhfb, } @Book{Ballew:2005:DYM, author = "Joli Ballew", title = "Degunking your {Mac}", publisher = "Paraglyph Press", address = "Scottsdale, AZ, USA", edition = "Tiger", pages = "xxvii + 396", year = "2005", ISBN = "1-933097-05-1", ISBN-13 = "978-1-933097-05-3", LCCN = "QA76.76.S64 B35 2005", bibdate = "Thu Oct 6 07:25:51 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", acknowledgement = ack-nhfb, subject = "Macintosh (Computer); Maintenance and repair; Software maintenance; Operating systems (Computers)", } @Book{Bauer:2005:LSS, author = "Michael D. Bauer and Michael D. Building secure servers with Linux Bauer", title = "{Linux} server security", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xvii + 522", year = "2005", ISBN = "0-596-00670-5", ISBN-13 = "978-0-596-00670-9", LCCN = "TK5105.59 .B38 2005; TK5105.59 .B38 2005eb; TK5105.59", bibdate = "Tue Aug 5 17:42:40 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9780596006709", acknowledgement = ack-nhfb, remark = "Tools and best practices for bastion hosts. Previous ed. published as: Building secure servers with Linux, 2002.", subject = "Linux; Client/server computing; Computer security", } @Book{Bautts:2005:LNA, author = "Tony Bautts and Terry Dawson and Gregor N. Purdy", title = "{Linux} network administrator's guide", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "xxii + 338", year = "2005", ISBN = "0-596-00548-2", ISBN-13 = "978-0-596-00548-1", LCCN = "QA76.76.O63; QA76.76.O63 K566 2005; QA76.76.O63 K566 2005eb", bibdate = "Tue Aug 5 17:41:32 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9780596005481", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Book{Best:2005:LDP, author = "Steve (Steve Francis) Best", title = "{Linux} debugging and performance tuning: tips and techniques", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "????", year = "2005", ISBN = "0-13-149247-0", ISBN-13 = "978-0-13-149247-9", LCCN = "QA76.76.O63 B4756 2005", bibdate = "Fri Oct 21 12:57:25 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://www.loc.gov/catdir/toc/ecip0514/2005017192.html; http://www.phptr.com/title/0131492470", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers); Debugging in computer science", } @Article{Borntrager:2005:PLS, author = "C. Borntr{\"a}ger and M. Schwidefsky", title = "Providing {Linux 2.6} support for the {zSeries} platform", journal = j-IBM-SYS-J, volume = "44", number = "2", pages = "331--340", month = "????", year = "2005", CODEN = "IBMSA7", ISSN = "0018-8670", bibdate = "Sat Apr 16 18:29:43 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.research.ibm.com/journal/", URL = "http://www.research.ibm.com/journal/sj/442/borntraeger.html; http://www.research.ibm.com/journal/sj/442/borntraeger.pdf; http://www.research.ibm.com/journal/sj/442/borntraeger.txt", acknowledgement = ack-nhfb, } @Book{Brickner:2005:LDP, author = "David Brickner", title = "{Linux} desktop pocket guide", publisher = pub-ORA, address = pub-ORA:adr, pages = "xvi + 181", year = "2005", ISBN = "0-596-10104-X", ISBN-13 = "978-0-596-10104-6", LCCN = "QA76.76.O63 B7423 2005", bibdate = "Wed May 19 06:19:18 MDT 2010", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, subject = "Linux; operating systems (computers)", } @Book{Brickner:2005:TDL, author = "David Brickner", title = "Test driving {Linux}: from {Windows} to {Linux} in 60 seconds", publisher = pub-ORA, address = pub-ORA:adr, pages = "xvii + 341", year = "2005", ISBN = "0-596-00754-X", ISBN-13 = "978-0-596-00754-6", LCCN = "QA76.76.O63 B744 2005", bibdate = "Thu Oct 6 07:23:07 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9780596007546", acknowledgement = ack-nhfb, subject = "GNU/Linux; Operating systems (Computers)", } @Article{Chanet:2005:SWC, author = "Dominique Chanet and Bjorn {De Sutter} and Bruno {De Bus} and Ludo {Van Put} and Koen {De Bosschere}", title = "System-wide compaction and specialization of the {Linux} kernel", journal = j-SIGPLAN, volume = "40", number = "7", pages = "95--104", month = jul, year = "2005", CODEN = "SINODQ", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Wed Oct 5 07:55:13 MDT 2005", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Corbet:2005:LDD, author = "Jonathan Corbet and Alessandro Rubini and Greg Kroah-Hartman", title = "{Linux} device drivers", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "xviii + 615", year = "2005", ISBN = "0-596-00590-3", ISBN-13 = "978-0-596-00590-0", LCCN = "QA76.76.D49 R92 2005; QA76.76.D49 R92 2005eb; QA76.76.D49", bibdate = "Tue Aug 5 17:41:57 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9780596005900", acknowledgement = ack-nhfb, remark = "On t.p. of previous ed. Alessandro Rubini's name appeared first.", subject = "Linux device drivers (Computer programs)", } @Book{Cornelio:2005:MLG, author = "Pietro Cornelio", title = "Il mondo libero di {GNU\slash Linux} e {UNIX BSD}: storia, filosofia, tecnologia. ({Italian}) [The free world of {GNU}\slash Linux and {BSD} {UNIX}: stories, philosophies, technology]", publisher = "Duke Italia", address = "Milano, Italy", pages = "104", year = "2005", ISBN = "88-86460-10-4", ISBN-13 = "978-88-86460-10-1", LCCN = "????", bibdate = "Fri Dec 09 05:22:13 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Suppement to Linux Journal (Italian edition), number 59, October 2005.", acknowledgement = ack-nhfb, language = "Italian", } @Book{Dalrymple:2005:AMX, author = "Mark Dalrymple and Aaron Hillegass", title = "Advanced {Mac OS X} Programming", publisher = "Big Nerd Ranch", address = "Atlanta, GA, USA", edition = "Second", pages = "646 (est.)", year = "2005", ISBN = "0-9740785-1-4", ISBN-13 = "978-0-9740785-1-9", LCCN = "????", bibdate = "Tue May 29 15:32:31 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Dodge:2005:SIL, author = "Catherine Dodge and Cynthia Irvine and Thuy Nguyen", title = "A study of initialization in {Linux} and {OpenBSD}", journal = j-OPER-SYS-REV, volume = "39", number = "2", pages = "79--93", month = apr, year = "2005", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:43 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Dumbill:2005:DGL, author = "Edd Dumbill", title = "{Debian GNU\slash Linux}: An Explorer's Notebook", publisher = pub-ORA, address = pub-ORA:adr, pages = "256 (est.)", year = "2005", ISBN = "0-596-00883-X", ISBN-13 = "978-0-596-00883-3", LCCN = "????", bibdate = "Fri Dec 09 06:16:03 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "EUR 24.00", URL = "http://www.oreilly.com/catalog/9780596008833", acknowledgement = ack-nhfb, } @MastersThesis{Dupuy:2005:CBD, author = "St{\'e}phane Dupuy", title = "Conception d'une base de donn{\'e}es {PostgreSQL} sous {Linux}", type = "M{\'e}moire de dipl{\^o}me d'ing{\'e}nieur", school = "Centre d'enseignement, Universit{\'e} de soutenance", address = "Bordeaux, France", pages = "99", year = "2005", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Sun Oct 26 17:16:23 MDT 2008", bibsource = "carmin.sudoc.abes.fr:210/ABES-Z39-PUBLIC; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, language = "French", } @Article{Durbec:2005:FDA, author = "C. Mant{\'e}J. P. Durbec and J. C. Dauvin", title = "A functional data-analytic approach to the classification of species according to their spatial dispersion. {Application} to a marine macrobenthic community from the {Bay of Morlaix (Western English Channel)}", journal = j-J-APPL-STAT, volume = "32", number = "8", pages = "831--840", year = "2005", CODEN = "????", ISSN = "0266-4763 (print), 1360-0532 (electronic)", ISSN-L = "0266-4763", bibdate = "Wed Aug 25 11:41:53 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.tandf.co.uk/journals/routledge/02664763.html", acknowledgement = ack-nhfb, } @Article{Eggert:2005:PEN, author = "P. R. Eggert and D. S. Parker", title = "Perturbing and evaluating numerical programs without recompilation --- the wonglediff way", journal = j-SPE, volume = "35", number = "4", pages = "313--322", day = "10", month = apr, year = "2005", CODEN = "SPEXBL", DOI = "http://dx.doi.org/10.1002/spe.637", ISSN = "0038-0644 (print), 1097-024X (electronic)", bibdate = "Sat Apr 16 07:26:37 MDT 2005", bibsource = "http://www.interscience.wiley.com/jpages/0038-0644; http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www3.interscience.wiley.com/journalfinder.html", abstract = "wonglediff is a program that tests the sensitivity of arbitrary program executables or processes to changes that are introduced by a process that runs in parallel. On Unix and Linux kernels, wonglediff creates a supervisor process that runs applications and, on the fly, introduces desired changes to their process state. When execution terminates, it then summarizes the resulting changes in the output files. The technique employed has a variety of uses. This paper describes an implementation of wonglediff that checks the sensitivity of programs to random changes in the floating-point rounding modes. It runs a program several times, wongling it each time: randomly toggling the IEEE-754 rounding mode of the program as it executes. By comparing the resulting output, one gets a poor man's numerical stability analysis for the program. Although the analysis does not give any kind of guarantee about a program's stability, it can reveal genuine instability, and it does serve as a particularly useful and revealing idiot light. In our implementation, differences among the output files from the program's multiple runs are summarized in a report. This report is in fact an HTML version of the output file, with inline mark-up summarizing individual differences among the multiple instances. When viewed with a browser, the differences can be highlighted or rendered in many different ways.", acknowledgement = ack-nhfb, keywords = "diff; IEEE-754 floating point arithmetic; numerical instability checking; random rounding; rounding modes; sensitivity analysis", onlinedate = "21 Dec 2004", } @Book{Foster-Johnson:2005:BSS, author = "Eric Foster-Johnson and John C. Welch and Micah Anderson", title = "Beginning shell scripting", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xviii + 510", year = "2005", ISBN = "0-7645-8320-4", ISBN-13 = "978-0-7645-8320-9", LCCN = "QA76.76.O63 F59717 2005", bibdate = "Tue Oct 11 05:00:51 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Programmer to programmer", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://www.loc.gov/catdir/toc/ecip056/2005002075.html", acknowledgement = ack-nhfb, subject = "Operating systems (Computers)", } @Article{Galvin:2005:SC, author = "Peter Baer Galvin", title = "{Solaris 10 Containers}", journal = j-LOGIN, volume = "30", number = "5", pages = "??--??", month = oct, year = "2005", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 10:52:57 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/2005-10/index.html", URL = "http://www.usenix.org/publications/login/2005-10/pdfs/galvin.pdf", acknowledgement = ack-nhfb, } @InProceedings{Ganapathy:2005:APA, author = "Vinod Ganapathy and Trent Jaeger and Somesh Jha", title = "Automatic placement of authorization hooks in the {Linux} security modules framework", crossref = "Meadows:2005:CHE", pages = "330--339", year = "2005", bibdate = "Mon Apr 3 08:07:46 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Gemmell:2005:MMA, author = "Keith Gemmell", title = "Making music on the {Apple Mac}", publisher = "PC", address = "Merton, UK", pages = "103", year = "2005", ISBN = "1-870775-95-3 (paperback)", ISBN-13 = "978-1-870775-95-3 (paperback)", bibdate = "Thu Oct 6 07:25:32 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", acknowledgement = ack-nhfb, subject = "GarageBand (Computer file); Digital audio editors; Computer sound processing; Macintosh (Computer)", } @Book{Grant:2005:LME, author = "Rickford Grant", title = "{Linux} made easy: the official guide to {Xandros 3} for everyday users", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "xxvi + 463", year = "2005", ISBN = "1-59327-057-7", ISBN-13 = "978-1-59327-057-5", LCCN = "QA76.76.O63 G7245 2005; QA76.76.O63 .G7245 2005eb", bibdate = "Tue Aug 5 18:18:36 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9781593270575", acknowledgement = ack-nhfb, remark = "Accompanying disc contains: Xandros Linux distribution.", subject = "Linux; Operating systems (Computers)", } @Book{Haletky:2005:DLD, author = "Edward Haletky", title = "Deploying {Linux} on the desktop", publisher = pub-DP, address = pub-DP:adr, pages = "????", year = "2005", ISBN = "1-55558-328-8", ISBN-13 = "978-1-55558-328-6", LCCN = "QA76.76.O63 H34345 2005", bibdate = "Fri Oct 21 06:03:03 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Article{Hanslien:2005:MPE, author = "Monica Hanslien and Kenneth H. Karlsen and Aslak Tveito", title = "A Maximum Principle for an Explicit Finite Difference Scheme Approximating the {Hodgkin--Huxley} Model", journal = j-BIT-NUM-MATH, volume = "45", number = "4", pages = "725--741", month = dec, year = "2005", CODEN = "BITTEL, NBITAB", DOI = "http://www.springerlink.com/openurl.asp?genre=article&id=doi:10.1007/s10543-005-0023-2", ISSN = "0006-3835 (print), 1572-9125 (electronic)", ISSN-L = "0006-3835", bibdate = "Wed Jan 4 15:06:07 MST 2006", bibsource = "http://springerlink.metapress.com/openurl.asp?genre=issue&issn=0006-3835&volume=45&issue=4; http://www.math.utah.edu/pub/tex/bib/bit.bib; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.springerlink.com/openurl.asp?genre=article&issn=0006-3835&volume=45&issue=4&spage=725", acknowledgement = ack-nhfb, } @Book{Hildebrandt:2005:BPS, author = "Ralf Hildebrandt and Patrick Koetter", title = "The book of {Postfix}: state-of-the-art message transport", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "xxviii + 464", year = "2005", ISBN = "1-59327-001-1", ISBN-13 = "978-1-59327-001-8", LCCN = "TK5105.74.P66 H55 2005", bibdate = "Mon May 9 17:32:09 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://www.loc.gov/catdir/toc/ecip047/2003017563.html", acknowledgement = ack-nhfb, subject = "Postfix (Computer file); Electronic mail systems; Computer programs; Internet", } @Book{Hill:2005:DGL, author = "Benjamin Mako Hill and David B. Harris and Jaldhar Vyas", title = "{Debian GNU\slash Linux 3.1} bible", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxvi + 640", year = "2005", ISBN = "0-7645-7644-5", ISBN-13 = "978-0-7645-7644-7", LCCN = "QA76.76.O63 H57135 2005", bibdate = "Fri Sep 22 09:34:46 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.loc.gov/catdir/toc/ecip054/2004027963.html", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Book{Hook:2005:WPC, author = "Brian Hook", title = "Write portable code: an introduction to developing software for multiple platforms", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "xx + 248", year = "2005", ISBN = "1-59327-056-9", ISBN-13 = "978-1-59327-056-8", LCCN = "QA76.76.C64 H66 2005", bibdate = "Thu Oct 6 07:25:18 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", acknowledgement = ack-nhfb, subject = "Software compatibility; Computer software; Development", } @Article{Hoskins:2005:UOS, author = "Matthew Hoskins", title = "{Unix}: Old school", journal = j-LINUX-J, volume = "2005", number = "140", pages = "??--??", month = dec, year = "2005", bibdate = "Sat Dec 24 17:46:13 MST 2005", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Hudson:2005:RFL, author = "Paul Hudson and Andrew Hudson", title = "{Red Hat Fedora 5 Linux} unleashed", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "????", year = "2005", ISBN = "0-672-32847-X (paperback)", ISBN-13 = "978-0-672-32847-3 (paperback)", LCCN = "????", bibdate = "Tue Jun 20 17:36:30 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", note = "Includes DVD.", acknowledgement = ack-nhfb, } @Article{Hulse:2005:RBC, author = "Paul Hulse", title = "Review: {{\em Beowulf Cluster Computing with Linux}}, Second Edition", journal = j-COMP-J, volume = "48", number = "3", pages = "379--380", month = may, year = "2005", CODEN = "CMPJA6", DOI = "http://dx.doi.org/10.1093/comjnl/bxh078", ISSN = "0010-4620 (print), 1460-2067 (electronic)", ISSN-L = "0010-4620", bibdate = "Tue Nov 8 05:58:50 MST 2005", bibsource = "http://comjnl.oxfordjournals.org/content/vol48/issue3/index.dtl; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://comjnl.oxfordjournals.org/cgi/reprint/48/3/379", acknowledgement = ack-nhfb, } @Misc{IBM:2005:MAS, author = "{IBM Corporation}", title = "{Mathematical Acceleration Subsystem} for {Linux}", howpublished = "World Wide Web document", year = "2005", bibdate = "Mon Dec 05 18:59:35 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www-306.ibm.com/software/awdtools/mass/linux/mass-linux.html", abstract = "Mathematical Acceleration Subsystem (MASS) for Linux consists of libraries of mathematical intrinsic functions tuned specifically for optimum performance on POWER architectures.", acknowledgement = ack-nhfb, keywords = "Mathematical Acceleration Subsystem (MASS)", remark = "Scalar library functions: atan, atan2, cos, cosh, dnint, exp, log, pow [Fortran **], rsqrt, sin, sinh, sqrt, tan, and tanh.\par Vector library double-precision function: vacos, vasin, vatan2, vcbrt, vcos, vcosh, vcosisin, vdint, vdiv, vdnint, vexp, vexpm1, vlog, vlog10, vlog1p, vpow, vrcbrt, vrec, vrsqrt, vsin, vsincos, vsinh, vsqrt, vtan, and vtanh.\par Vector library single-precision functions: vsacos, vsasin, vsatan2, vscbrt, vscos, vscosh, vscosisin, vsdiv, vsexp, vsexpm1, vslog, vslog10, vslog1p, vspow, vsrcbrt, vsrec, vsrsqrt, vssin, vssincos, vssinh, vssqrt, vstan, and vstanh.", } @Book{ISO:2005:IID, author = "{ISO}", title = "{ISO\slash IEC DIS 23360}: Draft International Standard: {Linux Standard Base Core Specification 2.0.1}", publisher = pub-ISO, address = pub-ISO:adr, pages = "1214", year = "2005", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Fri Jun 10 12:54:40 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.iso.org/iso/en/CatalogueDetailPage.CatalogueDetail?CSNUMBER=41481&scopelist=PROGRAMME; http://www.linuxbase.org/LSBWiki/IsoBallot", acknowledgement = ack-nhfb, } @Article{Jenkins:2005:RLE, author = "G. K. Jenkins", title = "Review of {``The Linux Enterprise Cluster'', by Karl Kopper, No Starch Press, 2005, \$49.95 ISBN: 1-59327-036-4}", journal = j-QUEUE, volume = "3", number = "9", pages = "58--58", month = nov, year = "2005", CODEN = "AQCUAE", ISSN = "1542-7730 (print), 1542-7749 (electronic)", ISSN-L = "1542-7730", bibdate = "Sat Dec 17 07:37:28 MST 2005", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Jepson:2005:MXT, author = "Brian Jepson and Ernest E. (Ernest Eric) Rothman", title = "{Mac OS X Tiger} for {Unix} geeks", publisher = pub-ORA-MEDIA, address = pub-ORA-MEDIA:adr, edition = "Third", pages = "xviii + 395", year = "2005", ISBN = "0-596-00912-7", ISBN-13 = "978-0-596-00912-0", LCCN = "QA76.76.O63 J47 2005", bibdate = "Thu Oct 6 07:24:04 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9780596009120", acknowledgement = ack-nhfb, remark = "First edition published as: Mac OS X for Unix geeks; 2nd edition published as: Mac OS X Panther for Unix geeks, 2004.", subject = "Mac OS; UNIX (Computer file); TIGER System (Information retrieval system); UNIX device drivers (Computer programs)", } @Book{Johnson:2005:LAD, author = "Michael K. Johnson and Erik W. Troan", title = "{Linux} application development", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xxxi + 702", year = "2005", ISBN = "0-321-21914-7", ISBN-13 = "978-0-321-21914-5", LCCN = "QA76.76.O63 J635 2005", bibdate = "Mon Nov 26 17:27:24 MST 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/toc/ecip0421/2004017882.html", acknowledgement = ack-nhfb, subject = "Linux; Application software; Development", } @Book{Johnson:2005:SSR, author = "Chris F. A. Johnson", title = "Shell scripting recipes: a problem-solution approach", publisher = pub-APRESS, address = pub-APRESS:adr, pages = "xxiv + 421", year = "2005", ISBN = "1-59059-471-1 (paperback)", ISBN-13 = "978-1-59059-471-1 (paperback)", LCCN = "QA76.76.O63 J628 2005", bibdate = "Wed Sep 21 13:46:15 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", series = "The expert's voice in open source; Books for professionals by professionals", acknowledgement = ack-nhfb, subject = "Operating systems (Computers)", } @Book{Jones:2005:GLA, author = "M. Tim Jones", title = "{GNU\slash Linux} application programming", publisher = "Charles River Media", address = "Hingham, MA, USA", pages = "xxv + 486", year = "2005", ISBN = "1-58450-371-8", ISBN-13 = "978-1-58450-371-2", LCCN = "QA76.76.O63 J665 2005", bibdate = "Fri Sep 22 09:40:03 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Charles River Media programming series", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://www.loc.gov/catdir/toc/ecip052/2004024882.html", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @MastersThesis{Kaza:2005:PAE, author = "Avinash Kaza", title = "Preparation of acoustic emission data for neural network analysis using {AWK} and {C} programs", type = "Thesis ({M.S.})", school = "West Virginia University", address = "Morgantown, WV, USA", pages = "xiv + 189", year = "2005", bibdate = "Fri Jul 01 14:40:09 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "https://etd.wvu.edu/etd/controller.jsp?moduleName=documentdata&jsp%5FetdId=3896", acknowledgement = ack-nhfb, } @Book{Keenan:2005:HUC, author = "Charles Keenan", title = "{HP-UX CSE}: official study guide and desk reference", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxxiv + 1664", year = "2005", ISBN = "0-13-146396-9 (hardcover)", ISBN-13 = "978-0-13-146396-7 (hardcover)", LCCN = "QA76.76.O63 K43 2004", bibdate = "Fri Apr 29 07:12:26 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Hewlett--Packard professional books", acknowledgement = ack-nhfb, subject = "UNIX (Computer file); Examinations; Hewlett--Packard computers; Programming; Examinations; Study guides", } @Book{Kopper:2005:LEC, author = "Karl Kopper", title = "The {Linux Enterprise Cluster}: build a highly available cluster with commodity hardware and free software", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "xxiv + 430", year = "2005", ISBN = "1-59327-036-4", ISBN-13 = "978-1-59327-036-0", LCCN = "QA76.58 .K67 2005; QA76.58 K67 2005eb", bibdate = "Tue Aug 5 18:18:04 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9781593270360", acknowledgement = ack-nhfb, remark = "Accompanying disc contains copies of the stock Linux 2.4 and 2.6 kernels with the LVS kernel modules; the ldirectord software and all of its dependencies; the Mon monitoring package, monitoring scripts, and dependencies; the Ganglia package; OpenSSH; rsync; SystemImager; and Heartbeat..", subject = "Linux; Parallel processing (Electronic computers); Electronic data processing; Distributed processing; Cluster analysis", } @Book{Korff:2005:MFO, author = "Yanek Korff and Paco Hope and Bruce Potter", title = "Mastering {FreeBSD} and {OpenBSD} security", publisher = pub-ORA, address = pub-ORA:adr, pages = "xiv + 445", year = "2005", ISBN = "0-596-00626-8", ISBN-13 = "978-0-596-00626-6", LCCN = "QA76.76.O63 K67 2005", bibdate = "Thu Oct 6 07:22:48 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", acknowledgement = ack-nhfb, subject = "FreeBSD; OpenBSD; Operating systems (Computers); Computer security", } @Book{Krafft:2005:DSC, author = "Martin F. Krafft", title = "The {Debian} system: concepts and techniques", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "????", year = "2005", ISBN = "1-59327-069-0", ISBN-13 = "978-1-59327-069-8", LCCN = "QA76.76.O63 K68 2005", bibdate = "Mon Nov 21 06:07:34 MST 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://www.loc.gov/catdir/toc/ecip0515/2005019963.html", acknowledgement = ack-nhfb, remark = "Mainly about the Debian package system.", subject = "Linux; Operating systems (Computers)", } @Article{Liu:2005:PAL, author = "Chun-Ho Liu and Chat-Ming Woo and Dennis Y. C. Leung", title = "Performance Analysis of a {Linux PC} Cluster Using a Direct Numerical Simulation of Fluid Turbulence Code", journal = j-IJHPCA, volume = "19", number = "4", pages = "365--374", month = "Winter", year = "2005", CODEN = "IHPCFL", DOI = "http://dx.doi.org/10.1177/1094342005056133", ISSN = "1094-3420 (print), 1741-2846 (electronic)", ISSN-L = "1094-3420", bibdate = "Tue Aug 31 09:59:45 MDT 2010", bibsource = "http://hpc.sagepub.com/content/19/4.toc; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://hpc.sagepub.com/content/19/4/365.full.pdf+html", acknowledgement = ack-nhfb, } @Book{Love:2005:LKD, author = "Robert Love", title = "{Linux} kernel development", publisher = "Novell Press", address = "Indianapolis, IN, USA", edition = "Second", pages = "xvi + 401", year = "2005", ISBN = "0-672-32720-1 (paperback)", ISBN-13 = "978-0-672-32720-9 (paperback)", LCCN = "QA76.76.O63 L673 2005", bibdate = "Thu Jul 14 11:58:09 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Article{Loza:2005:UAD, author = "Boris Loza", title = "Under Attack: Dealing with Missing {UNIX} Files", journal = j-LOGIN, volume = "30", number = "3", pages = "??--??", month = jun, year = "2005", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 10:52:53 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/2005-06/index.html", URL = "http://www.usenix.org/publications/login/2005-06/pdfs/loza0506.pdf", acknowledgement = ack-nhfb, } @Book{Loza:2005:USL, author = "Boris Loza", title = "{UNIX}, {Solaris} and {Linux}: {A} Practical Security Cookbook: Securing {UNIX} Operating System without Third-Party Applications", publisher = "AuthorHouse", address = "????", pages = "368 (est.)", year = "2005", ISBN = "1-4208-4824-0", ISBN-13 = "978-1-4208-4824-3", LCCN = "????", bibdate = "Wed Jan 02 16:41:29 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{LSBT:2005:BAL, author = "{Core Members of the Linux Standard Base Team}", title = "Building applications with the {Linux Standard Base}", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxvi + 246", year = "2005", ISBN = "0-13-145695-4", ISBN-13 = "978-0-13-145695-2", LCCN = "QA76.76.O63 B8375 2004", bibdate = "Thu Jun 22 05:22:21 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", note = "Foreword by Theodore Ts'o. Includes CD-ROM.", URL = "http://www.freestandards.org/; http://www.lanana.org/; http://www.linuxbase.org/; http://www.linuxbase.org/test/registered.html; http://www.phptr.com/title/0131456954; https://www.linux-foundation.org/en/Book", acknowledgement = ack-nhfb, baseteam = "Stuart Anderson and Mark Brown and Kevin Caunt and Marvin Heffler and Andrew Josey and George Kraft IV and Radhakrishnan Sethuraman and Matt Taggart and Kristin Thomas and Theodore Ts'o and Mats Wichmann and Chris Yeoh", subject = "Linux; Operating systems (Computers); Application software; Development", } @Book{Lucke:2005:BCL, author = "Robert W. Lucke", title = "Building clustered {Linux} systems", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxxviii + 606", year = "2005", ISBN = "0-13-144853-6", ISBN-13 = "978-0-13-144853-7", LCCN = "QA76.76.O63 L838 2005", bibdate = "Thu Jun 23 18:36:30 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Hewlett--Packard professional books", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://www.loc.gov/catdir/toc/ecip0418/2004014016.html", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers); Embedded computer systems; Programming", } @Book{Lumens:2005:SLE, author = "Chris Lumens and David Cantrell and Logan Johnson and Alan Hicks", title = "{Slackware Linux} Essentials", publisher = "Slackware Linux, Inc.", address = "1164 Claremont Drive, Brentwood, CA 94513, USA", edition = "Second", pages = "xxii + 262", year = "2005", ISBN = "1-57176-338-4", ISBN-13 = "978-1-57176-338-9", LCCN = "????", bibdate = "Tue Jun 20 18:19:09 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "ftp://ftp.slackbook.org/pub/slackbook/slackbook-2.0.pdf; http://www.slackbook.org/", acknowledgement = ack-nhfb, } @Book{Mason:2005:PVC, author = "Michael (Michael G.) Mason", title = "Pragmatic version control using {\tt subversion}", publisher = "Pragmatic Bookshelf", address = "Raleigh, NC, USA", pages = "xii + 207", year = "2005", ISBN = "0-9745140-6-3", ISBN-13 = "978-0-9745140-6-2", LCCN = "QA76.76.D4 M3 2005 itb", bibdate = "Thu Oct 6 07:25:05 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", series = "Pragmatic starter kit", acknowledgement = ack-nhfb, remark = "The Pragmatic Programmers. Subversion edition.", subject = "CVS; Computer software; Development; svn", } @Book{McCarty:2005:SNO, author = "Bill McCarty", title = "{SELINUX}: {NSA}'s open source {Security Enhanced Linux}", publisher = pub-ORA-MEDIA, address = pub-ORA-MEDIA:adr, pages = "xiii + 238", year = "2005", ISBN = "0-596-00716-7", ISBN-13 = "978-0-596-00716-4", LCCN = "TK5105.59 .M37 2005", bibdate = "Sat Jun 11 09:50:39 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.oreilly.com/catalog/9780596007164", acknowledgement = ack-nhfb, subject = "Computer networks; security measures; Linux", } @Book{McElhearn:2005:MXC, author = "Kirk McElhearn", title = "The {Mac OS X} command line: {Unix} under the hood", publisher = pub-SYBEX, address = pub-SYBEX:adr, pages = "xxv + 438", year = "2005", ISBN = "0-7821-4354-7, 0-470-11385-5", ISBN-13 = "978-0-7821-4354-6, 978-0-470-11385-1", LCCN = "QA76.76.O63 M387152 2005eb; QA76.8.M3 M395 2005", bibdate = "Tue Sep 23 17:09:21 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90; z3950.bibsys.no:2100/BIBSYS", acknowledgement = ack-nhfb, subject = "Mac OS; Programming", } @Book{McKusick:2005:DIF, author = "Marshall Kirk McKusick and George V. Neville-Neil", title = "The Design and Implementation of the {FreeBSD} Operating System", publisher = pub-AW, address = pub-AW:adr, pages = "xxviii + 683", year = "2005", ISBN = "0-201-70245-2", ISBN-13 = "978-0-201-70245-3", LCCN = "QA76.76.O63 M398745 2005", bibdate = "Fri Jul 09 07:45:56 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.mckusick.com/FreeBSDbook.html", acknowledgement = ack-nhfb, subject = "FreeBSD; Free computer software; Operating systems (Computers)", } @Book{McShaffry:2005:GCC, author = "Mike McShaffry", title = "Game coding complete", publisher = "Paraglyph Press", address = "Scottsdale, AZ, USA", edition = "Second", pages = "xxix + 906", year = "2005", ISBN = "1-932111-91-3", ISBN-13 = "978-1-932111-91-0", LCCN = "QA76.76.C672 M35 2005", bibdate = "Thu Oct 6 07:25:40 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", acknowledgement = ack-nhfb, subject = "Computer games; Design; Computer games; Programming", } @Book{Mecklenburg:2005:MPG, author = "Robert Mecklenburg", title = "Managing Projects with {GNU} Make", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "xviii + 280", year = "2005", ISBN = "0-596-00610-1", ISBN-13 = "978-0-596-00610-5", LCCN = "QA76.76.U84 O73 2005", bibdate = "Sun Dec 26 08:57:19 2004", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @Book{Moskowitz:2005:WLI, author = "Jeremy Moskowitz and Thomas Boutell", title = "{Windows} and {Linux} integration: hands-on solutions for a mixed environment", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xix + 539", year = "2005", ISBN = "0-7921-4428-6, 0-7821-4428-4", ISBN-13 = "978-0-7921-4428-1, 978-0-7821-4428-4", LCCN = "????", bibdate = "Wed Aug 23 12:42:39 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.bibsys.no:2100/BIBSYS", acknowledgement = ack-nhfb, } @Article{Nagle:2005:BRH, author = "Dan Nagle", title = "Book Review: {{\em High Performance Linux Clusters}, by A. Joseph and D. Sloan}", journal = j-SCI-PROG, volume = "13", number = "2", pages = "173--175", month = "????", year = "2005", CODEN = "SCIPEV", ISSN = "1058-9244 (print), 1875-919X (electronic)", ISSN-L = "1058-9244", bibdate = "Wed Sep 1 14:50:28 MDT 2010", bibsource = "http://www.iospress.nl/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Navarro:2005:LBM, author = "Gonzalo Navarro and Jorma Tarhio", title = "{LZgrep}: a {Boyer--Moore} string matching tool for {Ziv--Lempel} compressed text", journal = j-SPE, volume = "35", number = "12", pages = "1107--1130", month = oct, year = "2005", CODEN = "SPEXBL", DOI = "http://dx.doi.org/10.1002/spe.663", ISSN = "0038-0644 (print), 1097-024X (electronic)", bibdate = "Tue Oct 4 05:39:38 MDT 2005", bibsource = "http://www.interscience.wiley.com/jpages/0038-0644; http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www3.interscience.wiley.com/journalfinder.html", URL = "http://www.dcc.uchile.cl/~gnavarro/pubcode/", abstract = "We present a Boyer--Moore (BM) approach to string matching over LZ78 and LZW compressed text. The idea is to search the text directly in compressed form instead of decompressing and then searching it. We modify the BM approach so as to skip text using the characters explicitly represented in the LZ78\slash LZW formats, modifying the basic technique where the algorithm can choose which characters to inspect. We present and compare several solutions for single and multipattern searches. We show that our algorithms obtain speedups of up to 50\% compared to the simple decompress-then-search approach. Finally, we present a public tool, LZgrep, which uses our algorithms to offer grep-like capabilities directly searching files compressed using Unix's Compress, an LZW compressor. LZgrep can also search files compressed with Unix gzip, using new decompress-then-search techniques we develop, which are faster than the current tools. This way, users can always keep their files in compressed form and still search them, uncompressing only when they want to see them.", acknowledgement = ack-nhfb, keywords = "compressed pattern matching; direct search on compressed text; text searching; Ziv--Lempel format", onlinedate = "6 May 2005", } @Book{Newham:2005:LBS, author = "Cameron Newham and Bill Rosenblatt", title = "Learning the {\tt bash} shell", publisher = pub-ORA-MEDIA, address = pub-ORA-MEDIA:adr, edition = "Third", pages = "xvi + 333", year = "2005", ISBN = "0-596-00965-8 (paperback)", ISBN-13 = "978-0-596-00965-6 (paperback)", LCCN = "QA76.76.O63 N458 2005", bibdate = "Sat Jun 11 09:10:15 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "UK\pounds 24.95", acknowledgement = ack-nhfb, subject = "Programming (Electronic computers); UNIX device drivers (Computer programs)", } @Book{Oglesby:2005:VES, author = "Ron Oglesby and Scott Herold", title = "{VMware ESX Server}: Advanced Technical Design Guide", publisher = "Brian Madden Publishing", address = "Silver Spring, MD, USA", year = "2005", ISBN = "0-9711510-6-7", ISBN-13 = "978-0-9711510-6-2", LCCN = "QA76.9.V5 O35 2005eb; **See", bibdate = "Sun Apr 9 15:35:45 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; library.mit.edu:9909/mit01", URL = "http://library.books24x7.com/library.asp?B&bookid=12048", acknowledgement = ack-nhfb, subject = "WMware; Virtual computer systems; Web servers", } @Book{Pere:2005:GLR, author = "Pere L{\'a}szl{\'o}", title = "{GNU\slash LINUX} rendszerek {\"u}zemeltet{\'e}se. ({Hungarian}) []", publisher = "Kiskapu", address = "P{\'e}cs, Hungary", pages = "????", year = "2005", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Fri Dec 09 05:39:21 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, language = "Hungarian", xxnote = "Hungarian name order: family first", } @Book{Petreley:2005:LDH, author = "Nick Petreley and Jono Bacon", title = "{Linux} desktop hacks", publisher = pub-ORA-MEDIA, address = pub-ORA-MEDIA:adr, pages = "xxi + 318", year = "2005", ISBN = "0-596-00911-9", ISBN-13 = "978-0-596-00911-3", LCCN = "QA76.76.O63 P528645 2005", bibdate = "Thu Sep 22 19:02:02 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.oreilly.com/catalog/9780596009113", acknowledgement = ack-nhfb, remark = "Tips and tools for customizing and optimizing your OS --- cover.", subject = "GNU/Linux; Operating systems (Computers)", } @Book{Pharr:2005:GGP, editor = "Matt Pharr and Randima Fernando", title = "{GPU} gems 2: programming techniques for high-performance graphics and general-purpose computation", volume = "2", publisher = pub-AW, address = pub-AW:adr, pages = "xlix + 814", year = "2005", ISBN = "0-321-33559-7 (hardcover)", ISBN-13 = "978-0-321-33559-3 (hardcover)", LCCN = "T385 .G688 2005", bibdate = "Thu Jul 29 13:36:54 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "GPU gems", URL = "http://www-docs.tu-cottbus.de/bibliothek/public/katalog/420569.PDF; http://www.loc.gov/catdir/toc/ecip055/2004030181.html", abstract = "This sequel to the best-selling, first volume of GPU Gems details the latest programming techniques for today's graphics processing units (GPUs). As GPUs find their way into mobile phones, handheld gaming devices, and consoles, GPU expertise is even more critical in today's competitive environment. Real-time graphics programmers will discover the latest algorithms for creating advanced visual effects, strategies for managing complex scenes, and techniques for advanced image processing. Readers will also learn new methods for using the substantial processing power of the GPU in other computationally intensive applications, such as scientific computing and finance. Twenty of the book's forty-eight chapters are devoted to GPGPU programming, from basic concepts to advanced techniques. Written by experts in cutting-edge GPU programming, this book offers readers practical means to harness the enormous capabilities of GPUs.", acknowledgement = ack-nhfb, keywords = "CUDA; nVIDIA", remark = "CD-ROM contents: Complementary examples and samples.", } @Book{Pogue:2005:MXT, author = "David Pogue", title = "{Mac OS X}, {Tiger} edition: the missing manual", publisher = pub-ORA, address = pub-ORA:adr, pages = "xvi + 847", year = "2005", ISBN = "0-596-00941-0 (paperback)", ISBN-13 = "978-0-596-00941-0 (paperback)", LCCN = "QA76.76.O63 P634 2005", bibdate = "Thu Oct 6 08:01:10 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", series = "Missing manual", acknowledgement = ack-nhfb, remark = "Covers Mac OS X 10.4.", subject = "Mac OS; Macintosh (Computer); Operating systems (Computers)", } @Book{Poniatowski:2005:HUV, author = "Marty Poniatowski", title = "{HP-UX 11i Version 2} system administration: {HP Integrity} and {HP 9000} servers", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxiv + 643", year = "2005", ISBN = "0-13-192759-0", ISBN-13 = "978-0-13-192759-9", LCCN = "QA76.76.O63 P6477 2005", bibdate = "Wed Oct 5 06:21:40 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Hewlett--Packard professional books", acknowledgement = ack-nhfb, subject = "HP-UX; Operating systems (Computers)", } @Book{Poniatowski:2005:LHI, author = "Marty Poniatowski", title = "{Linux} on {HP Integrity Servers}: system administration for {Itanium}-based systems", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxvi + 332", year = "2005", ISBN = "0-13-140000-2", ISBN-13 = "978-0-13-140000-9", LCCN = "QA76.76.O63 P652 2005", bibdate = "Wed Nov 19 08:25:10 MST 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, keywords = "IA-64; Itanium", subject = "Linux; Operating systems (Computers); Hewlett--Packard computers; Computer networks", } @Book{Prinz:2005:CEP, author = "Peter Prinz and Ulla Kirch-Prinz", title = "{C --- Einf{\"u}hrung und professionelle Anwendung: [auf Basis des Standards ANSI C 99; Anwendungen: Windows-Programmierung, Grafik und hardwarenahe Programmierung; auf CD: Microsoft C/C++-Compiler Book edition, GNU C/C++-Compiler, Beispiele, Musterl{\"o}ungen]}. ({German}) [{C} --- Introductory and Professional Use [based on {ANSI C 99}; Use: Windows Programming, Graphics and Hardware Programming; with {CD}: Microsoft {C}/{C}++-Compiler Book edition, {GNU} {C}/{C}++-Compiler, Examples, and Solutions]", publisher = "mitp-Verlag", address = "Bonn, Germany", pages = "800", year = "2005", ISBN = "3-8266-1580-8", ISBN-13 = "978-3-8266-1580-1", LCCN = "????", bibdate = "Fri Dec 09 06:06:36 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes one CD-ROM.", acknowledgement = ack-nhfb, language = "German", } @Book{Quigley:2005:USE, author = "Ellie Quigley", title = "{UNIX} shells by example", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Fourth", pages = "xxxv + 1150", year = "2005", ISBN = "0-13-147572-X", ISBN-13 = "978-0-13-147572-4", LCCN = "QA76.76.O63 Q54 2004", bibdate = "Mon Jan 8 06:35:48 MST 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "UNIX (Computer file); UNIX Shells", } @Book{Rankin:2005:KPR, author = "Kyle Rankin", title = "{Knoppix} pocket reference", publisher = pub-ORA, address = pub-ORA:adr, pages = "vii + 84", year = "2005", ISBN = "0-596-10075-2", ISBN-13 = "978-0-596-10075-9", LCCN = "QA76.76.O63 R36 2005", bibdate = "Thu Oct 6 07:24:53 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", acknowledgement = ack-nhfb, remark = "Troubleshoot, repair, and disinfect both Linux and Windows.", subject = "Linux; Operating systems (Computers)", } @Book{Rehman:2005:HUC, author = "Rafeeq Ur Rehman", title = "{HP-UX CSA}: official study guide and desk reference", publisher = pub-PHPTR, address = pub-PHPTR:adr, edition = "Second", pages = "xxxviii + 1031", year = "2005", ISBN = "0-13-144854-4", ISBN-13 = "978-0-13-144854-4", LCCN = "QA76.76.O63 R4352 2005", bibdate = "Fri Apr 29 07:16:07 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "HP-UX; Operating systems (Computers)", } @Book{Rehn-Gostenmeier:2005:LE, author = "Gudrun Rehn-G{\"o}stenmeier and Ralph Rehn-G{\"o}stenmeier", title = "{Linux --- Das Einsteigerseminar}. ({German}) [{Linux} --- The Beginner Seminar]", publisher = "bhv", address = "Bonn, Germany", pages = "448", year = "2005", ISBN = "3-8266-7375-1", ISBN-13 = "978-3-8266-7375-7", LCCN = "????", bibdate = "Mon Apr 18 07:13:52 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Robbins:2005:CSS, author = "Arnold Robbins and Nelson H. F. Beebe", title = "Classic Shell Scripting", publisher = pub-ORA-MEDIA, address = pub-ORA-MEDIA:adr, pages = "xxii + 534", year = "2005", ISBN = "0-596-00595-4", ISBN-13 = "978-0-596-00595-5", LCCN = "QA76.76.O63 R633 2005", bibdate = "Tue Jul 12 16:13:16 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.oreilly.com/catalog/shellsrptg/", acknowledgement = ack-nhfb, } @Book{Robbins:2005:UN, author = "Arnold Robbins", title = "{Unix} in a Nutshell", publisher = pub-ORA-MEDIA, address = pub-ORA-MEDIA:adr, edition = "Fourth", pages = "xviii + 885", year = "2005", ISBN = "0-596-10029-9", ISBN-13 = "978-0-596-10029-2", LCCN = "????", bibdate = "Mon Nov 21 12:08:47 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$34.95, CAN\$48.95, UK\pounds 24.95", URL = "http://www.oreilly.com/catalog/unixnut4/index.html", acknowledgement = ack-nhfb, } @Book{Rodriguez:2005:LKP, author = "Claudia Salzberg Rodriguez and Gordon Fischer and Steven Smolski", title = "The {Linux} Kernel primer: a top-down approach for {x86} and {PowerPC} architectures", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "????", year = "2005", ISBN = "0-13-118163-7 (paperback)", ISBN-13 = "978-0-13-118163-2 (paperback)", LCCN = "QA76.76.O63 R633 2005", bibdate = "Fri Oct 21 12:57:27 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Prentice Hall open source software development series", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://www.loc.gov/catdir/toc/ecip0514/2005016702.html; http://www.phptr.com/title/0131181637", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Book{Ronneburg:2005:DGLa, author = "Frank Ronneburg", title = "{Debian GNU\slash Linux}: installation, administration, exploitation. (French) [{Debian GNU\slash Linux}: installation, administration, use]", publisher = "Campus Press", address = "Paris, France", pages = "624", year = "2005", ISBN = "2-7440-1941-0", ISBN-13 = "978-2-7440-1941-8", LCCN = "????", bibdate = "Fri Dec 09 05:48:41 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes one CD-ROM.", acknowledgement = ack-nhfb, language = "French", } @Book{Ronneburg:2005:DGLb, author = "Frank Ronneburg", title = "{Debian GNU\slash Linux Anwenderhandbuch: f{\"u}r Einsteiger, Umsteiger und Fortgeschritten}. ({German}) [{Debian GNU\slash Linux} User Handbook: for Beginning, Switching, and Advanced Users]", publisher = "Addison Wesley in Pearson Education Deutschland", address = "M{\"u}nchen, Germany", pages = "744", year = "2005", ISBN = "3-8273-2148-4", ISBN-13 = "978-3-8273-2148-0", LCCN = "????", bibdate = "Fri Dec 09 05:50:45 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes one DVD.", price = "EUR49.95", acknowledgement = ack-nhfb, } @Book{Schoblick:2005:DGL, author = "Gabriele Schoblick and Robert Schoblick", title = "{Debian GNU\slash Linux}", publisher = "bhv", address = "Bonn, Germany", pages = "767", year = "2005", ISBN = "3-8266-8151-7", ISBN-13 = "978-3-8266-8151-6", LCCN = "????", bibdate = "Fri Dec 09 06:10:57 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes two CD-ROMs.", price = "EUR22.95", acknowledgement = ack-nhfb, language = "German", } @Book{Schroder:2005:LC, author = "Carla Schroder", title = "{Linux} cookbook", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxiii + 553", year = "2005", ISBN = "0-596-00640-3 (paperback)", ISBN-13 = "978-0-596-00640-2 (paperback)", LCCN = "QA76.76.O63; QA76.76.O63 S377 2004eb; QA76.76.O63 S377 2004", bibdate = "Tue Aug 5 17:42:11 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9780596006402", acknowledgement = ack-nhfb, remark = "Practical advice for Linux users and system administrators.", subject = "Operating systems (Computers); Linux", } @Book{Seacord:2005:SCC, author = "Robert C. Seacord", title = "Secure coding in {C} and {C++}", publisher = pub-AW, address = pub-AW:adr, pages = "xxiv + 341", year = "2005", ISBN = "0-321-33572-4 (paperback)", ISBN-13 = "978-0-321-33572-2 (paperback)", LCCN = "QA76.9.A25 S368 2005", bibdate = "Thu Aug 31 10:52:01 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.cert.org/books/secure-coding/; http://www.loc.gov/catdir/toc/ecip0513/2005015012.html", acknowledgement = ack-nhfb, subject = "Computer security; C (Computer program language); C++ (Computer program language)", tableofcontents = "Contents \\ Preface ix \\ 1 Running with Scissors 1 \\ 1.1 Gauging the Threat 4 \\ 1.2 Security Concepts 9 \\ 1.3 C and C++ 14 \\ 1.4 Development Platforms 17 \\ 1.5 Summary 21 \\ 1.6 For Further Reading 21 \\ 2 Strings 23 \\ 2.1 String Characteristics 23 \\ 2.2 Common String Manipulation Errors 24 \\ 2.3 String Vulnerabilities 30 \\ 2.4 Process Memory Organization 33 \\ 2.5 Stack Smashing 37 \\ 2.6 Code Injection 42 \\ 2.7 Arc Injection 45 \\ 2.8 Mitigation Strategies 48 \\ 2.9 Notable Vulnerabilities 66 \\ 2.10 Summary 68 \\ 2.11 For Further Reading 70 \\ 3 Pointer Subterfuge 71 \\ 3.1 Data Locations 72 \\ 3.2 Function Pointers 73 \\ 3.3 Data Pointers 74 \\ 3.4 Modifying the Instruction Pointer 75 \\ 3.5 Global Offset Table 76 \\ 3.6 The .dtors Section 78 \\ 3.7 Virtual Pointers 80 \\ 3.8 The atexit() and on_exit() Functions 82 \\ 3.9 The longjmp() Function 84 \\ 3.10 Exception Handling 85 \\ 3.11 Mitigation Strategies 89 \\ 3.12 Summary 89 \\ 3.13 For Further Reading 90 \\ 4 Dynamic Memory Management 91 \\ 4.1 Dynamic Memory Management 92 \\ 4.2 Common Dynamic Memory Management Errors 94 \\ 4.3 Doug Lea's Memory Allocator 100 \\ 4.4 RtlHeap 113 \\ 4.5 Mitigation Strategies 129 \\ 4.6 Notable Vulnerabilities 138 \\ 4.7 Summary 140 \\ 4.8 For Further Reading 141 \\ 5 Integer Security 143 \\ 5.1 Integers 144 \\ 5.2 Integer Conversions 151 \\ 5.3 Integer Error Conditions 156 \\ 5.4 Integer Operations 159 \\ 5.5 Vulnerabilities 172 \\ 5.6 Non-Exceptional Integer Logic Errors 177 \\ 5.7 Mitigation Strategies 178 \\ 5.8 Notable Vulnerabilities 187 \\ 5.9 Summary 190 \\ 5.10 For Further Reading 191 \\ 6 Formatted Output 193 \\ 6.1 Variadic Functions 194 \\ 6.2 Formatted Output Functions 198 \\ 6.3 Exploiting Formatted Output Functions 203 \\ 6.4 Stack Randomization 214 \\ 6.5 Mitigation Strategies 220 \\ 6.6 Notable Vulnerabilities 230 \\ 6.7 Summary 231 \\ 6.8 For Further Reading 233 \\ 7 File I/O 235 \\ 7.1 Concurrency 235 \\ 7.2 Time of Check, Time of Use 238 \\ 7.3 Files as Locks and File Locking 240 \\ 7.4 File System Exploits 242 \\ 7.5 Mitigation Strategies 249 \\ 7.6 Summary 259 \\ 8 Recommended Practices 261 \\ 8.1 Secure Software Development Principles 263 \\ 8.2 Systems Quality Requirements Engineering 267 \\ 8.3 Threat Modeling 269 \\ 8.4 Use/Misuse Cases 270 \\ 8.5 Architecture and Design 271 \\ 8.6 Off-the-Shelf Software 273 \\ 8.7 Compiler Checks 275 \\ 8.8 Input Validation 275 \\ 8.9 Data Sanitization 277 \\ 8.10 Static Analysis 280 \\ 8.11 Quality Assurance 283 \\ 8.12 Memory Permissions 286 \\ 8.13 Defense in Depth 288 \\ 8.14 TSP-Secure 289 \\ 8.15 Summary 292 \\ 8.16 Further Reading 292", } @Book{Siever:2005:LN, author = "Ellen Siever", title = "{Linux} in a nutshell", publisher = pub-ORA, address = pub-ORA:adr, edition = "Fifth", pages = "xiv + 928", year = "2005", ISBN = "0-596-00930-5", ISBN-13 = "978-0-596-00930-4", LCCN = "QA76.76.O63; QA76.76.O63 H453 2005eb; QA76.76.O63 H453 2005; QA76.76.O63 L5459 2003", bibdate = "Tue Aug 5 17:45:57 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", series = "In a nutshell", URL = "http://www.oreilly.com/catalog/9780596009304", acknowledgement = ack-nhfb, remark = "A Desktop Quick Reference.", subject = "Operating systems (Computers); Linux", } @Book{Silberschatz:2005:OSC, author = "Abraham Silberschatz and Peter B. Galvin and Greg Gagne", title = "Operating System Concepts", publisher = pub-WILEY, address = pub-WILEY:adr, edition = "Seventh", pages = "xxii + 921", year = "2005", ISBN = "0-471-69466-5 (hardcover)", ISBN-13 = "978-0-471-69466-3 (hardcover)", LCCN = "QA76.76.O63 S5583 2005", bibdate = "Mon Apr 2 16:14:20 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/enhancements/fy0618/2004059084-b.html; http://www.loc.gov/catdir/enhancements/fy0618/2004059084-d.html; http://www.loc.gov/catdir/toc/wiley051/2004059084.html", acknowledgement = ack-nhfb, subject = "Operating systems (Computers)", } @Book{Sloan:2005:HPL, author = "Joseph D. (Joseph Donald) Sloan", title = "High performance {Linux} clusters with {OSCAR}, {Rocks}, {openMosix}, and {MPI}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xv + 350", year = "2005", ISBN = "0-596-00570-9", ISBN-13 = "978-0-596-00570-2", LCCN = "QA76.58; QA76.58 .S56 2005eb; QA76.58 .S56 2005; QA76.58 .S58 2005; QA76.58 .S595 2005", bibdate = "Tue Aug 5 17:41:39 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9780596005702", acknowledgement = ack-nhfb, subject = "Linux; Parallel processing (Electronic computers); Electronic data processing; Distributed processing", } @Book{Smith:2005:DL, author = "Roderick Smith and Jeff Duntemann", title = "Degunking {Linux}", publisher = pub-PARAGLYPH, address = pub-PARAGLYPH:adr, pages = "xx + 332", year = "2005", ISBN = "1-933097-04-3", ISBN-13 = "978-1-933097-04-6", LCCN = "QA76.76.O63 S58 2005", bibdate = "Tue Aug 5 18:30:00 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9781933097046", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Book{Smith:2005:DLH, author = "Roderick Smith and Jeff Duntemann", title = "Degunking {Linux}", publisher = "Paraglyph Press", address = "Scottsdale, AZ, USA", pages = "xx + 332", year = "2005", ISBN = "????", ISBN-13 = "????", LCCN = "QA76.76.O63 S65 2005", bibdate = "Thu Oct 6 07:25:50 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://site.ebrary.com/lib/ucsc/Doc?id=10080003 (Web view)", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Book{Smith:2005:LNS, author = "Peter G. Smith", title = "{Linux} network security", publisher = "Charles River Media", address = "Hingham, MA, USA", pages = "xviii + 541", year = "2005", ISBN = "1-58450-396-3 (pbk. with CD-ROM)", ISBN-13 = "978-1-58450-396-5 (pbk. with CD-ROM)", LCCN = "TK5105.59 .S59 2005", bibdate = "Fri Dec 9 06:47:17 MST 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Administrator's advantage series", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://www.loc.gov/catdir/toc/ecip056/2005000312.html", acknowledgement = ack-nhfb, subject = "Computer networks; Security measures; Linux", } @Book{Smith:2005:LWW, author = "Roderick W. Smith", title = "{Linux} in a {Windows} world", publisher = pub-ORA-MEDIA, address = pub-ORA-MEDIA:adr, pages = "xiv + 478", year = "2005", ISBN = "0-596-00758-2", ISBN-13 = "978-0-596-00758-4", LCCN = "QA76.76.O63 S548 2005", bibdate = "Tue Aug 2 10:55:32 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.oreilly.com/catalog/9780596007584", acknowledgement = ack-nhfb, subject = "GNU/Linux; Operating systems (Computers)", } @Article{Spinellis:2005:WUT, author = "Diomidis Spinellis", title = "Working with {Unix} Tools", journal = j-IEEE-SOFTWARE, volume = "22", number = "6", pages = "9--11", month = nov # "\slash " # dec, year = "2005", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/MS.2005.170", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Thu Nov 10 09:16:26 MST 2005", bibsource = "http://csdl2.computer.org/persagen/DLAbsToc.jsp?resourcePath=/dl/mags/so/&toc=comp/mags/so/2005/06/s6toc.xml; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Stanik:2005:NLO, author = "John Stanik", title = "News 2.0: Losing our Edge? The Real Cost of {Linux}; Say No to Crackberries", journal = j-QUEUE, volume = "3", number = "5", pages = "14--14", month = jun, year = "2005", CODEN = "AQCUAE", ISSN = "1542-7730 (print), 1542-7749 (electronic)", ISSN-L = "1542-7730", bibdate = "Mon Aug 1 06:01:27 MDT 2005", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Stanik:2005:NRW, author = "John Stanik", title = "News 2.0: ``Ransom-ware'' on the loose; Adopt {IPv6} or die; {IBM} Steps up on {Linux} training", journal = j-QUEUE, volume = "3", number = "6", pages = "10--10", month = jul, year = "2005", CODEN = "AQCUAE", ISSN = "1542-7730 (print), 1542-7749 (electronic)", ISSN-L = "1542-7730", bibdate = "Fri Oct 21 05:53:50 MDT 2005", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Stevens:2005:APU, author = "W. Richard Stevens and Stephen A. Rago", title = "Advanced Programming in the {Unix} Environment", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xxviii + 927", year = "2005", ISBN = "0-201-43307-9 (hardcover)", ISBN-13 = "978-0-201-43307-4 (hardcover)", LCCN = "QA76.76.O63 S754 2005", bibdate = "Tue Jul 19 14:11:18 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://www.aw-bc.com/catalog/academic/product/0,1144,0201433079,00.html; http://www.loc.gov/catdir/toc/ecip059/2005007943.html", acknowledgement = ack-nhfb, subject = "Operating systems (Computers); UNIX (Computer file)", xxURL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://www.aw-bc.com/catalog/academic/product/0,1144,0201433079,00.html; http://www.loc.gov/catdir/toc/ecip059/2005007943.html", } @Book{Taylor:2005:LUM, author = "Dave Taylor", title = "Learning {UNIX} for {Mac OS X Tiger}", publisher = pub-ORA-MEDIA, address = pub-ORA-MEDIA:adr, edition = "Fourth", pages = "xviii + 260", year = "2005", ISBN = "0-596-00915-1", ISBN-13 = "978-0-596-00915-1", LCCN = "QA76.76.O63 T388 2005", bibdate = "Thu Oct 6 07:24:07 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", acknowledgement = ack-nhfb, remark = "First 2 edition have title: Learning Unix for Mac OS X; 3rd edition has title: Learning Unix for Mac OS X Panther. Unlock the power of UNIX.", subject = "UNIX (Computer file); Mac OS; TIGER System (Information retrieval system); Operating systems (Computers)", } @Book{Teer:2005:SSP, author = "Rich Teer", title = "{Solaris} systems programming", publisher = pub-AW, address = pub-AW:adr, pages = "xxxvi + 1211", year = "2005", ISBN = "0-201-75039-2", ISBN-13 = "978-0-201-75039-3", LCCN = "QA76.76.O63 T4314 2005", bibdate = "Wed Oct 5 06:01:58 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Solaris (Computer file); Operating systems (Computers)", } @Article{Thomas:2005:RBC, author = "Marlin Thomas", title = "Review of {{\em Building Clustered Linux Systems\/} by Robert W. Lucke, Prentice Hall PTR, 2004, \$49.99, ISBN: 0-13-144853-6}", journal = j-QUEUE, volume = "3", number = "4", pages = "60--60", month = may, year = "2005", CODEN = "AQCUAE", ISSN = "1542-7730 (print), 1542-7749 (electronic)", ISSN-L = "1542-7730", bibdate = "Thu Jun 23 16:38:50 MDT 2005", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Toporek:2005:MXT, author = "Chuck Toporek", title = "{Mac OS X Tiger}: pocket guide", publisher = pub-ORA-MEDIA, address = pub-ORA-MEDIA:adr, edition = "Fourth", pages = "xi + 223", year = "2005", ISBN = "0-596-00914-3 (paperback)", ISBN-13 = "978-0-596-00914-4 (paperback)", LCCN = "QA76.76.O63 T668 2005", bibdate = "Thu Oct 6 07:24:05 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", acknowledgement = ack-nhfb, remark = "Previous editions of this book were published under the titles Mac OS X Pocket Reference, Mac OS X Pocket Guide, and Mac OS X Panther Pocket Guide. A user's guide to Mac OS X.", subject = "Mac OS; Operating systems (Computers); Macintosh (Computer); Programming", } @Article{Turk:2005:VLS, author = "D. Turk and J. Bausch", title = "Virtual {Linux} servers under {z/VM}: Security, performance, and administration issues", journal = j-IBM-SYS-J, volume = "44", number = "2", pages = "341--??", month = "????", year = "2005", CODEN = "IBMSA7", ISSN = "0018-8670", bibdate = "Sat Apr 16 18:29:43 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.research.ibm.com/journal/", URL = "http://www.research.ibm.com/journal/sj/442/turk.html; http://www.research.ibm.com/journal/sj/442/turk.pdf; http://www.research.ibm.com/journal/sj/442/turk.txt", acknowledgement = ack-nhfb, } @Book{Turnbull:2005:HL, author = "James Turnbull", title = "Hardening {Linux}", publisher = pub-APRESS, address = pub-APRESS:adr, pages = "xxvii + 552", year = "2005", ISBN = "1-59059-444-4 (paperback)", ISBN-13 = "978-1-59059-444-5 (paperback)", LCCN = "QA76.76.D49 T87 2005", bibdate = "Tue Apr 1 16:57:21 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "The expert's voice in open source", URL = "http://www.loc.gov/catdir/enhancements/fy0663/2005280402-d.html", acknowledgement = ack-nhfb, subject = "Linux device drivers (Computer programs); Computer security; Operating systems (Computers); Software maintenance; Computer networks; Security measures", tableofcontents = "Chapter 1: Hardening the basics \\ Chapter 2: Firewalling your hosts \\ Chapter 3: Securing connections and remote administration \\ Chapter 4: Securing files and file systems \\ Chapter 5: Understanding logging and log monitoring \\ Chapter 6: Using tools for security testing \\ Chapter 7: Securing your mail server \\ Chapter 8: Authenticating and securing your mail \\ Chapter 9: Hardening remote access to e-mail \\ Chapter 10: Securing an FTP server \\ Chapter 11: Hardening DNS and BIND \\ Appendix A: The bastion host firewall script \\ Appendix B: BIND configuration files \\ Appendix C: Checkpoints", } @Book{VanBon:2005:FIS, editor = "Jan {Van Bon}", title = "Foundations of {IT} service management based on {ITIL}", publisher = "Van Haren Publishing", address = "Zaltbommel, The Netherlands", edition = "Second", pages = "233", year = "2005", ISBN = "90-77212-58-2", ISBN-13 = "978-90-77212-58-5", LCCN = "????", bibdate = "Mon Nov 26 18:54:04 MST 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.bibsys.no:2100/BIBSYS", acknowledgement = ack-nhfb, subject = "Computer service industry; Management", } @Article{Venton:2005:ULH, author = "T. Venton and M. Miller and R. Kalla and A. Blanchard", title = "Using {Linux} for hardware bring up, development, and manufacturing", journal = j-IBM-SYS-J, volume = "44", number = "2", pages = "319--329", month = "????", year = "2005", CODEN = "IBMSA7", ISSN = "0018-8670", bibdate = "Sat Apr 16 18:29:43 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.research.ibm.com/journal/", URL = "http://www.research.ibm.com/journal/sj/442/venton.html; http://www.research.ibm.com/journal/sj/442/venton.pdf; http://www.research.ibm.com/journal/sj/442/venton.txt", acknowledgement = ack-nhfb, } @Book{Warren:2005:VWH, author = "Steven S. Warren", title = "The {VMWare Workstation 5} Handbook", publisher = "Charles River Media", address = "Hingham, MA, USA", pages = "352 (est.)", year = "2005", ISBN = "1-58450-393-9", ISBN-13 = "978-1-58450-393-4", LCCN = "QA76.76.O63 W3665 2005", bibdate = "Sun Apr 09 15:40:54 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/toc/ecip0510/2005010053.html", acknowledgement = ack-nhfb, } @Article{Witchel:2005:MMI, author = "Emmett Witchel and Junghwan Rhee and Krste Asanovi{\'c}", title = "{Mondrix}: memory isolation for {Linux} using {Mondrian} memory protection", journal = j-OPER-SYS-REV, volume = "39", number = "5", pages = "31--44", month = dec, year = "2005", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:58 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Yeoh:2005:BAL, author = "C. Yeoh", title = "Building applications for the {Linux Standard Base}", journal = j-IBM-SYS-J, volume = "44", number = "2", pages = "369--??", month = "????", year = "2005", CODEN = "IBMSA7", ISSN = "0018-8670", bibdate = "Sat Apr 16 18:29:43 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.research.ibm.com/journal/", URL = "http://www.research.ibm.com/journal/sj/442/yeoh.html; http://www.research.ibm.com/journal/sj/442/yeoh.pdf; http://www.research.ibm.com/journal/sj/442/yeoh.txt", acknowledgement = ack-nhfb, } @Article{Yu:2005:MXD, author = "Yijun Yu and Jianguo Lu and John Mylopoulos and Weiwei Sun and Jing-Hao Xue and Erik H. D'Hollander", title = "Making {XML} document markup international", journal = j-SPE, volume = "35", number = "1", pages = "1--14", month = jan, year = "2005", CODEN = "SPEXBL", DOI = "http://dx.doi.org/10.1002/spe.621", ISSN = "0038-0644 (print), 1097-024X (electronic)", bibdate = "Sat Apr 16 07:26:36 MDT 2005", bibsource = "http://www.interscience.wiley.com/jpages/0038-0644; http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www3.interscience.wiley.com/journalfinder.html", abstract = "In name and in practice, the World-Wide Web (hereafter Web) is used around the World beyond English-speaking areas. This creates a tremendous need to internationalize standard terminology used in the technologies that make the Web possible. Existing efforts on XML internationalization (i18n) and localization (i10n) have focused on the content of XML documents instead of the terms used in markup (annotations) such as elements and attributes. The SGML standard ISO 8879 supports the use of Unicode (ISO 10646) throughout a document, including markups. However, most elements and attributes of XML documents are still defined in English, thereby limiting their use among non-English speakers. This paper presents an XSLT-based method that can completely localize the markup of XML documents into different natural languages. We also describe how the proposed technique can be applied to translation problems in programming (e.g. C and Java) or documentation (e.g. \LaTeX{} or other formatting languages) so that a program or a document can be converted to and from an XML format", acknowledgement = ack-nhfb, keywords = "eXtensible Markup Language (XML); eXtensible Stylesheet Language Transformations (XSLT); localization (l10n) and internationalization (i18n); markup; programming and documentation languages; transformation", onlinedate = "18 Oct 2004", } @Book{Zdziarski:2005:ESB, author = "Jonathan A. Zdziarski", title = "Ending spam: {Bayesian} content filtering and the art of statistical language classification", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "312 (est.)", year = "2005", ISBN = "1-59327-052-6", ISBN-13 = "978-1-59327-052-0", LCCN = "TK5105.743 .Z35 2005", bibdate = "Wed Jun 22 14:40:22 MDT 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://www.loc.gov/catdir/toc/ecip0510/2005008221.html; http://www.oreilly.com/catalog/1593270526/", acknowledgement = ack-nhfb, remark = "An introduction to spam filtering concepts --- The history of spam --- Historical approaches to fighting spam --- Next generation filtering --- Shining examples of filtering --- Machine learning concepts --- Fundamentals of statistical filtering --- Statistical filtering fundamentals --- Decoding: uncombobulating messages --- Tokenization: the building blocks of spam --- Open source, OSX, and Milk Duds --- The low-down dirty details of spam --- Data storage for a zillion records --- Scaling for large-scale environments --- Advanced concepts of statistical filtering --- Concept identification: advanced tokenization --- Testing theory --- Fifth-order Markovian discrimination --- Concept identification: advanced tokenization --- Intelligent feature set reduction --- Collaborative algorithms --- Installing and using open source filters.", subject = "Spam filtering (Electronic mail); Filters (Mathematics)", } @Book{Zeller:2005:EOS, author = "Andreas Zeller and Jens Krinke", title = "Essential open source toolset: programming with {Eclipse}, {JUnit}, {CVS}, {Bugzilla}, {Ant}, {Tcl\slash Tk} and more", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xii + 392", year = "2005", ISBN = "0-470-84445-0 (paperback)", ISBN-13 = "978-0-470-84445-8 (paperback)", LCCN = "QA76.76.D47 Z45 2005", bibdate = "Tue Nov 28 14:20:32 MST 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.loc.gov/catdir/toc/ecip053/2004026271.html", acknowledgement = ack-nhfb, subject = "Computer software; Development; Open source software", } @Book{Anderson:2006:SXM, author = "Fritz Anderson", title = "Step into {Xcode}: {Mac OS X} development", publisher = pub-AW, address = pub-AW:adr, pages = "xxii + 463", year = "2006", ISBN = "0-321-33422-1 (paperback)", ISBN-13 = "978-0-321-33422-0 (paperback)", LCCN = "QA76.76.O63 A53 2006", bibdate = "Tue May 29 15:07:38 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/toc/ecip062/2005029875.html", acknowledgement = ack-nhfb, subject = "Operating systems (Computers); Software; Macintosh (Computer)", } @Book{Anonymous:2006:SSD, author = "Anonymous", title = "{Solaris} Security for Developers Guide", publisher = pub-SUN, address = pub-SUN:adr, pages = "????", year = "2006", ISBN = "0-595-28558-9", ISBN-13 = "978-0-595-28558-7", LCCN = "????", bibdate = "Mon Jun 19 12:17:50 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://docs.sun.com/app/docs/doc/816-4863", acknowledgement = ack-nhfb, tableofcontents = "Preface \\ Solaris Security for Developers (Overview) \\ Developing Privileged Applications \\ Writing PAM Applications and Services \\ Writing Applications That Use GSS-API \\ GSS-API Client Example \\ GSS-API Server Example \\ Writing Applications That Use SASL \\ Introduction to the Solaris Cryptographic Framework \\ Writing User-Level Cryptographic Applications and Providers \\ Using the Smart Card Framework \\ Sample C-Based GSS-API Programs \\ GSS-API Reference \\ Specifying an OID \\ Source Code for SASL Example \\ SASL Reference Tables \\ Packaging and Signing Cryptographic Providers \\ Glossary", } @Book{Becker:2006:CSL, author = "Pete Becker", title = "The {C++ Standard Library} Extensions: {A} Tutorial and Reference", publisher = pub-AW, address = pub-AW:adr, pages = "????", year = "2006", ISBN = "0-321-41299-0 (hardback)", ISBN-13 = "978-0-321-41299-7 (hardback)", LCCN = "QA76.73.C153 B43 2006", bibdate = "Wed Sep 6 08:04:57 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.awprofessional.com/bookstore/product.asp?isbn=0321412990; http://www.loc.gov/catdir/toc/ecip0613/2006014959.html; http://www.unixreview.com/documents/s=10094/ur0608k/ur0608k.html", acknowledgement = ack-nhfb, subject = "C++ (Computer program language)", tableofcontents = "Contents \\ Introduction \\ Part I: Utilities \\ Chapter 1: Tuples \\ Chapter 2: Reference-counted Pointers \\ Part II: Containers \\ Chapter 3: Container Basics \\ Chapter 4: The array Class Template \\ Chapter 5: Unordered Associative Containers \\ Part III: Call Wrappers \\ Chapter 6: Call Wrapper Basics \\ Chapter 7: The mem_fn Function Template \\ Chapter 8: The reference_wrapper Class Template \\ Chapter 9: The function Class Template \\ Chapter 10: The bind Function Template \\ Part IV: Type Traits \\ Chapter 11: Type Traits \\ Part V: Numerics \\ Chapter 12 Numeric Functions \\ Chapter 13 Random Number Generators \\ Part VI: Regular Expressions \\ Chapter 14: The Header \\ Chapter 15: Regular Expression Grammars \\ Chapter 16: Regular Expression Objects \\ Chapter 17: Searching \\ Chapter 18: Search Results \\ Chapter 19: Repetitive Searches \\ Chapter 20: Formatting and Text Replacement \\ Chapter 21: Customizing Regular Expressions \\ Part VII: C Compatibility \\ Chapter 22: C Compatibility \\ Appendices \\ Appendix A: Headers \\ Appendix B: Utility Headers \\ Appendix C: Multi-threading \\ Bibliography \\ Index", } @Book{Benvenuti:2006:ULN, author = "Christian Benvenuti", title = "Understanding {Linux} network internals", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxiv + 1035", year = "2006", ISBN = "0-596-00255-6", ISBN-13 = "978-0-596-00255-8", LCCN = "QA76.76.O63; QA76.76.O63 B46 2006eb; QA76.76.O63 B46 2006", bibdate = "Tue Aug 5 17:41:13 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9780596002558", acknowledgement = ack-nhfb, subject = "Operating systems (Computers); Linux", } @Book{Bovet:2006:ULK, author = "Daniel P. (Daniel Pierre) Bovet and Marco Cesati", title = "Understanding the {Linux} kernel", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "xvi + 923", year = "2006", ISBN = "0-596-00565-2 (paperback)", ISBN-13 = "978-0-596-00565-8 (paperback)", LCCN = "QA76.76.O63 B683 2006", bibdate = "Mon Oct 23 08:08:57 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.oreilly.com/catalog/9780596005658", acknowledgement = ack-nhfb, subject = "GNU/Linux; Operating systems (Computers)", } @Article{Breuer:2006:RNO, author = "Peter T. Breuer and Marisol Garc{\'\i}a Valls", title = "Raiding the {Noosphere}: the open development of networked {RAID} support for the {Linux} kernel", journal = j-SPE, volume = "36", number = "4", pages = "365--395", month = "????", year = "2006", CODEN = "SPEXBL", DOI = "http://dx.doi.org/10.1002/spe.701", ISSN = "0038-0644 (print), 1097-024X (electronic)", bibdate = "Tue Mar 14 11:39:21 MST 2006", bibsource = "http://www.interscience.wiley.com/jpages/0038-0644; http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www3.interscience.wiley.com/journalfinder.html", abstract = "The Noosphere is a term borrowed by open-source advocate Eric Raymond to denote the virtual world of the Internet. Fitting a new driver into the Linux kernel requires a noospheric strategy as well as an engineering strategy, because the code is part of the open-source development process, not its end. This article recounts the technology and the development process followed for a fast and intelligent driver extension to the existing Linux software RAID subsystem. The development adapts the kernel RAID subsystem for use in the context of network-attached storage.", acknowledgement = ack-nhfb, keywords = "Linux; networking; open source; operating systems; software engineering; storage", onlinedate = "13 Dec 2005", } @Book{Brown:2006:SL, author = "Chris Brown", title = "{SuSE Linux}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xiii + 430", year = "2006", ISBN = "0-596-10183-X", ISBN-13 = "978-0-596-10183-1", LCCN = "QA76.76.O63 B76 2006", bibdate = "Wed Oct 04 18:14:17 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$39.99", URL = "http://www.oreilly.com/catalog/9780596101831", acknowledgement = ack-nhfb, } @Book{Brown:2006:SLM, author = "Mark Brown and Chuck Davis and William Dy and Paul Ionescu and Jeff Richardson and Kurt Taylor and Robbie Williamson", title = "{Solaris} to {Linux} Migration: {A} Guide for System Administrators", publisher = pub-IBM, address = pub-IBM:adr, pages = "xx + 424", year = "2006", ISBN = "0-7384-9608-1", ISBN-13 = "978-0-7384-9608-5", LCCN = "????", bibdate = "Wed Jun 21 17:20:10 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "IBM order number SG24-7186-00.", series = "IBM redbooks", URL = "http://www.redbooks.ibm.com/redbooks/pdfs/sg247186.pdf", acknowledgement = ack-nhfb, tableofcontents = "Part 1. Background and planning \\ Chapter 1. Introduction \\ Chapter 2. Planning for migration \\ Part 2. System administration differences guide \\ Chapter 3. Operating system installation \\ Chapter 4. Disks and file systems \\ Chapter 5. Software management \\ Chapter 6. Device management \\ Chapter 7. Network services \\ Chapter 8. Boot and system initialization \\ Chapter 9. Managing system resources \\ Chapter 10. Printing services \\ Chapter 11. Users and groups \\ Chapter 12. Monitoring and performance \\ Chapter 13. Backup and restore \\ Chapter 14. Security and hardening \\ Chapter 15. Linux high availability overview \\ Chapter 16. Shell scripting \\ Chapter 17. Troubleshooting \\ Part 3. IBM eServer platforms \\ Chapter 18. IBM eServer xSeries hardware platform specifics \\ Chapter 19. IBM POWER technology hardware platform specifics \\ Chapter 20. IBM eServer zSeries and IBM System z hardware platform specifics \\ Appendix A. Tasks reference \\ Appendix B. Commands and configuration files reference \\ Appendix C. UNIX to Linux Porting: A Comprehensive Reference (table of contents and sample chapter) \\ Appendix D. Example: System information gathering script \\ Appendix E. Additional material", } @Book{Bucanek:2006:BX, author = "James Bucanek", title = "Beginning {Xcode}", publisher = "Wrox/Wiley Publishers", address = "Indianapolis, IN, USA", pages = "xxviii + 590", year = "2006", ISBN = "0-471-75479-X (paper\slash website)", ISBN-13 = "978-0-471-75479-4 (paper\slash website)", LCCN = "QA76.76.O63 B826 2006", bibdate = "Fri Oct 31 09:41:33 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Wrox beginning guides", URL = "http://www.loc.gov/catdir/enhancements/fy0623/2005037953-d.html; http://www.loc.gov/catdir/enhancements/fy0740/2005037953-b.html; http://www.loc.gov/catdir/toc/ecip066/2005037953.html", acknowledgement = ack-nhfb, subject = "Mac OS; operating systems (Computers); computer software; development", } @Book{Calkins:2006:SSA, author = "Bill Calkins", title = "{Solaris 10} system administration", publisher = pub-QUE, address = pub-QUE:adr, pages = "xx + 1077", year = "2006", ISBN = "0-7897-3461-3", ISBN-13 = "978-0-7897-3461-7", LCCN = "QA76.76.O63 C3518 2006", bibdate = "Mon Nov 26 18:44:30 MST 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Exam prep", acknowledgement = ack-nhfb, subject = "Operating systems (Computers); Examinations; Study guides; Solaris (Computer file)", } @Article{Chae:2006:ATA, author = "Bongsug (Kevin) Chae and Roger McHaney", title = "{Asian} trio's adoption of {Linux}-based open source development", journal = j-CACM, volume = "49", number = "9", pages = "95--99", month = sep, year = "2006", CODEN = "CACMA2", DOI = "http://doi.acm.org/10.1145/1151030.1151035", ISSN = "0001-0782 (print), 1557-7317 (electronic)", bibdate = "Tue Aug 22 07:27:40 MDT 2006", bibsource = "http://www.acm.org/pubs/contents/journals/cacm/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @InProceedings{Chatterjee:2006:BML, author = "Soumitra Chatterjee", title = "64-Bit Migration to {Linux} on {Itanium}: Challenges, Advantages, and Tools", crossref = "Anonymous:2006:PGI", pages = "??--??", year = "2006", bibdate = "Sat Oct 14 18:26:53 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "GNU/Linux; Intel IA-64; Itanium", } @Book{Chryselius:2006:DQE, author = "Toralf Chryselius and Andrea Kuntz", title = "{Debian unter Qemu Einf{\"u}hrung in das Betriebssystem Debian Linux in der virtuellen Umgebung Qemu unter Windows}. ({German}) [Debian under {Qemu}: Introduction in the {Debian Linux} operating systems in the {Qemu} virtual machine under {Windows}]", volume = "17", publisher = "CVTD", address = "Bergfelde bei Berlin, Germany", pages = "159", year = "2006", ISBN = "3-86768-116-3 (book), 3-86768-716-1 (DVD)", ISBN-13 = "978-3-86768-116-2 (book), 978-3-86768-716-4 (DVD)", LCCN = "????", bibdate = "Mon May 17 09:07:48 MDT 2010", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Schriftenreihe Grenzg{\"a}nger - Linux leicht verst{\"a}ndlich", acknowledgement = ack-nhfb, language = "German", subject = "Debian GNU/LINUX 3.1; Windows XP; Qemu", } @Book{Chryselius:2006:IDQ, author = "Toralf Chryselius and Andrea Kuntz", title = "{Internetkommunikation in Debian unter Qemu Einf{\"u}hrung in das Betriebssystem Debian Linux in Qemu und Vorstellung der wichtigsten Internetprogramme}. ({German}) [{Internet} Communication in {Debian} under {Qemu}: Introduction in the {Debian Linux} operating system in {Qemu} and creation of the most important Internet programs]", volume = "18", publisher = "CVTD", address = "Bergfelde bei Berlin, Germany", pages = "109", year = "2006", ISBN = "3-86768-117-1 (book), 3-86768-717-X (DVD)", ISBN-13 = "978-3-86768-117-9 (book), 978-3-86768-717-1 (DVD)", LCCN = "????", bibdate = "Mon May 17 09:07:48 MDT 2010", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Schriftenreihe Grenzg{\"a}nger - Linux leicht verst{\"a}ndlich; Schriftenreihe Grenzg{\"a}nger - Linux leicht verst{\"a}ndlich", acknowledgement = ack-nhfb, language = "German", subject = "Internet; Computerunterst{\"u}tzte Kommunikation; Debian GNU/LINUX 3.1; Qemu", } @Book{Chryselius:2006:IOQ, author = "Toralf Chryselius and Andrea Kuntz", title = "{Internetkommunikation mit OpenSUSE unter Qemu: Einf{\"u}hrung in das Betriebssystem OpenSUSE Linux und Vorstellung von Internetprogrammen in der virtuellen Umgebung Qemu}", volume = "66", publisher = "CVTD", address = "Bergfelde bei Berlin, Germany", pages = "104", year = "2006", ISBN = "3-86768-165-1", ISBN-13 = "978-3-86768-165-0", LCCN = "????", bibdate = "Mon May 17 09:07:48 MDT 2010", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Schriftenreihe Grenzg{\"a}nger - Linux leicht verst{\"a}ndlich", acknowledgement = ack-nhfb, language = "German", } @Book{Chryselius:2006:IOV, author = "Toralf Chryselius and Andrea Kuntz", title = "{Internetkommunikation in OpenSUSE unter VMware [Qemu] Einf{\"u}hrung in das Betriebssystem OpenSUSE Linux und Vorstellung von Internetprogrammen in der virtuellen Umgebung VMware}", volume = "66", publisher = "CVTD", address = "Bergfelde bei Berlin, Germany", pages = "117", year = "2006", ISBN = "3-86768-165-1 (book)", ISBN-13 = "978-3-86768-165-0 (book)", LCCN = "????", bibdate = "Mon May 17 09:07:48 MDT 2010", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Schriftenreihe Grenzg{\"a}nger - Linux leicht verst{\"a}ndlich; Schriftenreihe Grenzg{\"a}nger - Linux leicht verst{\"a}ndlich", acknowledgement = ack-nhfb, language = "German", subject = "Internet; Computerunterst{\"u}tzte Kommunikation; SuSE LINUX 10.2 OSS; Qemu", } @Book{Chryselius:2006:KLQa, author = "Toralf Chryselius and Andrea Kuntz", title = "{Knoppix Linux unter Qemu Einf{\"u}hrung in das Betriebssystem Knoppix Linux in der virtuellen Umgebung Qemu unter Windows}", volume = "49", publisher = "CVTD", address = "Bergfelde bei Berlin, Germany", pages = "142", year = "2006", ISBN = "3-86768-148-1 (book), 3-86768-748-X (DVD)", ISBN-13 = "978-3-86768-148-3 (book), 978-3-86768-748-5 (DVD)", LCCN = "????", bibdate = "Mon May 17 09:07:48 MDT 2010", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Schriftenreihe Grenzg{\"a}nger - Linux leicht verst{\"a}ndlich; Schriftenreihe Grenzg{\"a}nger - Linux leicht verst{\"a}ndlich", acknowledgement = ack-nhfb, language = "German", subject = "Knoppix; Windows XP; Qemu", } @Book{Chryselius:2006:KLQb, author = "Toralf Chryselius and Andrea Kuntz", title = "{Kanotix Linux unter Qemu Einf{\"u}hrung in das Betriebssystem Kanotix Linux in der virtuellen Umgebung Qemu unter Windows}", volume = "33", publisher = "CVTD", address = "Bergfelde bei Berlin, Germany", pages = "156", year = "2006", ISBN = "3-86768-132-5 (book), 3-86768-732-3 (DVD)", ISBN-13 = "978-3-86768-132-2 (book), 978-3-86768-732-4 (DVD)", LCCN = "????", bibdate = "Mon May 17 09:07:48 MDT 2010", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Schriftenreihe Grenzg{\"a}nger - Linux leicht verst{\"a}ndlich; Schriftenreihe Grenzg{\"a}nger - Linux leicht verst{\"a}ndlich", acknowledgement = ack-nhfb, language = "German", subject = "Kanotix; Windows XP; Qemu", } @Book{Chryselius:2006:KQE, author = "Toralf Chryselius and Andrea Kuntz", title = "{Kubuntu unter Qemu Einf{\"u}hrung in das Betriebssystem Kubuntu Linux in der virtuellen Umgebung Qemu}", volume = "5", publisher = "CVTD", address = "Bergfelde bei Berlin, Germany", pages = "158", year = "2006", ISBN = "3-86768-104-X (book), 3-86768-704-8 (DVD)", ISBN-13 = "978-3-86768-104-9 (book), 978-3-86768-704-1 (DVD)", LCCN = "????", bibdate = "Mon May 17 09:07:48 MDT 2010", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Schriftenreihe Grenzg{\"a}nger - Linux leicht verst{\"a}ndlich; Schriftenreihe Grenzg{\"a}nger - Linux leicht verst{\"a}ndlich", acknowledgement = ack-nhfb, language = "German", subject = "Kubuntu ; Windows XP; Qemu", } @Book{Chryselius:2006:LOL, author = "Toralf Chryselius and Andrea Kuntz", title = "{Lernprogramme mit OpenSUSE Linux unter Qemu: Einf{\"u}hrung in das Betriebssystem, OpenSUSE Linux und Vorstellung von Lernprogrammen in der virtuellen Umgebung Quemu}", volume = "63", publisher = "CVTD", address = "Bergfelde bei Berlin, Germany", pages = "147", year = "2006", ISBN = "386768166X, 3867687665", ISBN-13 = "978386768166797838676816679783867687661", LCCN = "????", bibdate = "Mon May 17 09:07:48 MDT 2010", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Schriftenreihe Grenzg{\"a}nger - Linux leicht verst{\"a}ndlich", acknowledgement = ack-nhfb, language = "German", remark = "Auf dem Buchr{\"u}cken ``Lernsoftware in OpenSUSE unter Qemu'' und Band 67.", } @Book{Chryselius:2006:OLQ, author = "Toralf Chryselius and Andrea Kuntz", title = "{OpenSuSE Linux unter Qemu Einf{\"u}hrung in das Betriebssystem Open{SUSE} Linux in der virtuellen Umgebng Qemu unter Windows}", volume = "65", publisher = "CVTD", address = "Bergfelde bei Berlin, Germany", pages = "168", year = "2006", ISBN = "3-86768-164-3 (book)", ISBN-13 = "978-3-86768-164-3 (book)", LCCN = "????", bibdate = "Mon May 17 09:07:48 MDT 2010", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Schriftenreihe Grenzg{\"a}nger - Linux leicht verst{\"a}ndlich; Schriftenreihe Grenzg{\"a}nger - Linux leicht verst{\"a}ndlich", acknowledgement = ack-nhfb, language = "German", subject = "SuSE LINUX 10.2 OSS; Windows XP; Qemu", } @Book{Covington:2006:SGG, author = "Jim Covington", title = "The {Sun} Geeks Guide To Native {LDAP:} {A} Native {LDAP} Blueprint", publisher = "BookSurge Publishing", address = "????", pages = "126 (est.)", year = "2006", ISBN = "1-4196-3028-8", ISBN-13 = "978-1-4196-3028-6", LCCN = "????", bibdate = "Mon Nov 26 18:40:46 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$34.95", acknowledgement = ack-nhfb, } @Book{Dalheimer:2006:RL, author = "Matthias Kalle Dalheimer and Matt Welsh", title = "Running Linux", publisher = pub-ORA, address = pub-ORA:adr, edition = "Fifth", pages = "xviii + 951", year = "2006", ISBN = "0-596-00760-4 (paperback)", ISBN-13 = "978-0-596-00760-7 (paperback)", LCCN = "QA76.76.O63 R855 2006", bibdate = "Wed Jun 25 17:33:31 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/enhancements/fy0715/2007270110-d.html; http://www.oreilly.com/catalog/9780596007607", acknowledgement = ack-nhfb, remark = "Previous edition by Matt Welsh and others 2002.", subject = "Linux; Operating systems (Computers)", tableofcontents = "Part 1.\\ Enjoying and being productive on Linux\\ Introduction to Linux \\ Preinstallation and installation \\ Desktop environments \\ Basic Unix commands and concepts \\ Web browsers and instant messaging \\ Electronic mail clients \\ Games \\ Office suites and personal productivity \\ Multimedia \\ Part 2. System administration \\ System administration basics \\ Managing users, groups, and permissions \\ Installing, updating, and compiling programs \\ Networking \\ Printing \\ File sharing \\ The X Window system \\ System start and shutdown \\ Configuring and building the Kernel \\ Text editing \\ Text processing \\ Part 3. Programming \\ Programming tools \\ Running a Web server \\ Transporting and handling email messages \\ Running an FTP server \\ Part 4. Network services \\ Running Web applications with MySQL and PHP \\ Running a secure system \\ Backup and recovery \\ Heterogeneous networking and running Windows programs", } @Book{Davidson:2006:RMX, author = "James Duncan Davidson", title = "Running {Mac OS X Panther}", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "372", year = "2006", ISBN = "0-596-00913-5 (paperback)", ISBN-13 = "978-0-596-00913-7 (paperback)", LCCN = "QA76.76.O63 D3498 2006", bibdate = "Thu Apr 19 18:14:40 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.oreillynet.com/catalog/runmacx2/", acknowledgement = ack-nhfb, subject = "Mac OS; Operating systems (Computers); Macintosh (Computer); Programming", tableofcontents = "Part I: Getting started \\ 1. Where it all came from \\ The classic Mac OS \\ System 7 \\ Copland \\ NEXTSTEP \\ Rhapsody \\ Continued development of the classic Mac OS \\ Mac OS X 10.0 \\ Mac OS 10.1 \\ Mac OS 10.2 jaguar \\ Mac OS X panther \\ What does the future hold? \\ 2. Lay of the land \\ Filesystem hierarchy \\ The many roots of the finder \\ Filesystem domains \\ The library \\ 3. The terminal and shell \\ Terminal overview \\ Mac-specific shell commands \\ Configuring and using bash \\ Using other shells \\ Shell scripts \\ Getting help \\ Editing text files \\ Part II: Essentials \\ 4. System startup and login \\ The hardware boot process \\ The operating system boot process \\ Logging in \\ Monitoring users \\ Logging out \\ Shutting down the system \\ 5. Users and groups \\ What is a user anyway? \\ Managing users \\ Nonhuman users \\ 6. Files and permissions \\ Finding files \\ File ownership \\ Type and creator codes \\ 7. Monitoring the system \\ About this Mac \\ System profiler \\ Monitoring system activity \\ Working with processes \\ 8. Scheduling tasks \\ Setting the time \\ Using iCal to schedule tasks \\ Using periodic \\ Cron \\ Changing periodic's execution time \\ 9. Preferences and defaults \\ Property lists \\ Where preferences are stored \\ Reading and writing preferences \\ Determining preference keys \\ 10. Disks and filesystems \\ Filesystems \\ Network-based filesystems \\ Disk utility \\ Erasing and formatting disks \\ Partitioning disks \\ Disk images \\ Creating a RAID \\ Part III: Advanced topics \\ 11. Open directory \\ Open directory in action \\ Directory services defined \\ Directory domains \\ The local domain and NetInfo \\ Configuring shared domains \\ Kerberos and single sign-on \\ Command-line open directory tools \\ 12. Printing \\ Print system overview \\ Managing printers \\ Adding and configuring printers \\ Anatomy of a print job \\ Printing from the command line \\ 13. Networking \\ The Internet protocol \\ Configuring IP addresses \\ Naming and DNS \\ Private networks and NAT \\ Routing \\ Active network connections \\ Appletalk \\ Locations \\ Using a dial-up connection \\ Virtual private networks \\ Firewalls \\ Internet connection sharing \\ 14. Network services \\ File sharing \\ Web sharing \\ Remote login \\ FTP access \\ sharing printers \\ Mail.", } @Book{Davies:2006:SLB, author = "Justin Davies and Roger Whittaker and William {Von Hagen}", title = "{SUSE Linux 10} bible", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xlvii + 852", year = "2006", ISBN = "0-471-75488-9 (paperback/DVD)", ISBN-13 = "978-0-471-75488-6 (paperback/DVD)", LCCN = "QA76.76.O63 D34992 2006", bibdate = "Tue Dec 5 14:08:05 MST 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/toc/ecip0519/2005027885.html", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", tableofcontents = "Ch. 1. Installing SUSE 10 \\ Ch. 2. Linux fundamentals \\ Ch. 3. Partitions, filesystems, and files \\ Ch. 4. Booting the system \\ Ch. 5. Documentation \\ Ch. 6. Understanding your linux network \\ Ch. 7. Logging \\ Ch. 8. The X Window system \\ Ch. 9. Configuring the system with YaST \\ Ch. 10. Text manipulation \\ Ch. 11. Text editors \\ Ch. 12. Working with packages \\ Ch. 13. Working with files \\ Ch. 14. Working with the system \\ Ch. 15. Linux networking \\ Ch. 16. Setting up a Web site with the Apache Web server \\ Ch. 17. Mail servers - Postfix, Sendmail, Qpopper, and Cyrus \\ Ch. 18. Setting up Windows interoperability with Samba \\ Ch. 19. Setting up printing with CUPS \\ Ch. 20. Configuring the using DHCP services \\ Ch. 21. Configuring a DNS server \\ Ch. 22. Working with NFS and NIS \\ Ch. 23. Running an FTP server on SUSE \\ Ch. 24. Implementing firewalls in SUSE Linux \\ Ch. 25. Working with LDAP in SUSE \\ Ch. 26. Setting up a Web proxy with Squid \\ Ch. 27. Enterprise architecture \\ Ch. 28. Emulation and virtualization \\ Ch. 29. The kernel \\ Ch. 30. SUSE Linux OpenExchange server \\ Ch. 31. The Novell Open Enterprise server \\ Ch. 32. Business desktop Linux : the Novell Linux desktop", } @Book{Dike:2006:UML, author = "Jeff Dike", title = "User Mode {Linux}", publisher = pub-PH, address = pub-PH:adr, pages = "????", year = "2006", ISBN = "0-13-186505-6 (paperback)", ISBN-13 = "978-0-13-186505-1 (paperback)", LCCN = "QA76.76.O63 D545 2006", bibdate = "Wed Mar 15 17:45:09 MST 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Bruce Perens Open Source series", URL = "http://www.loc.gov/catdir/toc/ecip068/2006004225.html", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers); Application software porting", tableofcontents = "Preface Acknowledgments \\ Chapter 1: Introduction \\ What Is UML? \\ Comparison with Other Virtualization Technologies \\ Why Virtual Machines? \\ A Bit of History \\ What Is UML Used For? \\ Server Consolidation \\ Education \\ Development \\ Disaster Recovery Practice \\ The Future \\ Chapter 2: A Quick Look at UML \\ Booting UML for the First Time \\ Booting UML Successfully \\ Looking at a UML from the Inside and Outside \\ Conclusion \\ Chapter 3: Exploring UML \\ Logging In as a Normal User \\ Consoles and Serial Lines \\ Adding Swap Space \\ Partitioned Disks \\ UML Disks as Raw Data \\ Networking \\ Shutting Down \\ Chapter 4: A Second UML \\ COW Files \\ Booting from COW Files \\ Moving a Backing File \\ Merging a COW File with Its Backing File \\ Networking the UML Instances \\ A Virtual Serial Line \\ Chapter 5: Playing with a UML Instance \\ Use and Abuse of UML Block Devices \\ Networking and the Host \\ Chapter 6: UML Filesystem Management \\ Mounting Host Directories within a UML \\ hostfs \\ humfs \\ Host Access to UML Filesystems \\ Making Backups \\ Extending Filesystems \\ When to Use What \\ Chapter 7: UML Networking in Depth \\ Manually Setting Up Networking \\ TUN/TAP with Routing \\ Bridging \\ The UML Networking Transports \\ Access to the Host Network \\ Isolated Networks \\ pcap \\ How to Choose the Right Transport \\ Configuring the Transports \\ An Extended Example \\ A Multicast Network \\ A Second Multicast Network \\ Adding a uml_switch Network \\ Summary of the Networking Example \\ Chapter 8: Managing UML Instances from the Host \\ The Management Console \\ MConsole Queries \\ The uml_mconsole Client \\ The MConsole Protocol \\ The MConsole Perl Library \\ Requests Handled in Process and Interrupt Contexts \\ MConsole Notifications \\ Controlling a UML Instance with Signals \\ Chapter 9: Host Setup for a Small UML Server \\ Host Kernel Version \\ UML Execution Modes \\ tt Mode \\ skas3 Mode \\ skas0 Mode \\ To Patch or Not to Patch? \\ Vanderpool and Pacifica \\ Managing Long-Lived UML Instances \\ Networking \\ UML Physical Memory \\ Host Memory Consumption \\ umid Directories \\ Overall Recommendations \\ Chapter 10: Large UML Server Management \\ Security \\ UML Configuration \\ Jailing UML Instances \\ Providing Console Access Securely \\ skas3 versus skas0 \\ Future Enhancements \\ sysemu \\ PTRACE_FAULTINFO \\ MADV_TRUNCATE \\ remap_file_pages \\ VCPU \\ Final Points \\ Chapter 11: Compiling UML from Source \\ Downloading UML Source \\ Configuration \\ Useful Configuration Options \\ Compilation \\ Chapter 12: Specialized UML Configurations \\ Large Numbers of Devices \\ Network Interfaces \\ Memory \\ Clusters \\ Getting Started \\ Booting the Cluster \\ Exercises \\ Other Clusters \\ UML as a Decision-Making Tool for Hardware \\ Chapter 13: The Future of UML \\ The externfs Filesystem \\ Virtual Processes \\ Captive UML \\ Secure mod_perl \\ Evolution \\ Application Administration \\ A Standard Application Programming Interface \\ Application-Level Clustering \\ Virtualized Subsystems \\ Conclusion \\ Appendix A: UML Command-Line Options \\ Device and Hardware Specifications \\ Debugging Options \\ Management Options \\ Informational Options \\ Appendix B: UML Utilities Reference \\ humfsify \\ uml_moo \\ uml_mconsole \\ tunctl \\ uml_switch \\ Internal Utilities \\ Index", } @Book{Dulaney:2006:LSK, author = "Emmett Dulaney", title = "{Linux} Starter Kit", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "????", year = "2006", ISBN = "0-672-32887-9", ISBN-13 = "978-0-672-32887-9", LCCN = "????", bibdate = "Tue Jun 20 18:02:20 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$31.99", acknowledgement = ack-nhfb, } @Book{Friedl:2006:MRE, author = "Jeffrey E. F. Friedl", title = "Mastering regular expressions", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "xxiv + 515", year = "2006", ISBN = "0-596-52812-4 (paperback)", ISBN-13 = "978-0-596-52812-6 (paperback)", LCCN = "QA76.9.T48 F75 2006", bibdate = "Mon Aug 4 15:33:41 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/enhancements/fy0715/2007272426-d.html; http://www.oreilly.com/catalog/9780596528126", abstract = "A regular expression (regex) is a pattern that describes a set of strings. Regular expressions are used for advanced context-sensitive searches (e.g. parsing data streams, data mining) and text modifications. They can be found in many advanced editors (e.g. vi, Emacs), in parser programs (e.g. grep) and in languages (e.g. Perl), mostly in a UNIX environment. This book is the standard work on regexes.", acknowledgement = ack-nhfb, subject = "text processing (computer science); perl (computer program language); computer programming", } @Book{Gagne:2006:MUL, author = "Marcel Gagn{\'e}", title = "Moving to {Ubuntu Linux}", publisher = pub-AW, address = pub-AW:adr, pages = "xxii + 463", year = "2006", ISBN = "0-321-42722-X (paperback)", ISBN-13 = "978-0-321-42722-9 (paperback)", LCCN = "QA76.76.O63 .G3455 2006", bibdate = "Wed Oct 04 18:13:08 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Includes CD-ROM.", price = "US\$34.99", URL = "http://www.aw-bc.com/catalog/academic/product/0,1144,032142722X,00.html", acknowledgement = ack-nhfb, bookreview = "http://www.unixreview.com/documents/s=10097/ur0609i/ur0609i.htm", } @Book{Geiselhart:2006:IZV, editor = "Gregory Geiselhart and others", title = "{IBM z\slash VM} and {Linux} on {IBM System z}: virtualization cookbook for {Red Hat Enterprise Linux 4}", number = "SG24-7272-00", publisher = pub-IBM, address = pub-IBM:adr, pages = "xiv + 218", year = "2006", ISBN = "0-7384-9495-X (paperback)", ISBN-13 = "978-0-7384-9495-1 (paperback)", LCCN = "QA76.76.O63 I28 2006", bibdate = "Thu Jan 21 14:11:12 MST 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "IBM redbooks", acknowledgement = ack-nhfb, remark = "September 2006.", subject = "Linux; Operating systems (Computers); Computer systems; IBM computers; Programming", } @Book{Gelphman:2006:PQP, author = "David Gelphman and Bunny Laden", title = "Programming with {Quartz}: {2D} and {PDF} graphics in {Mac OS X}", publisher = pub-ELSEVIER-MORGAN-KAUFMANN, address = pub-ELSEVIER-MORGAN-KAUFMANN:adr, pages = "xxviii + 668", year = "2006", ISBN = "0-12-369473-6", ISBN-13 = "9780123694737", LCCN = "T385 .G392 2006", bibdate = "Tue Jul 3 15:43:07 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/enhancements/fy0625/2005052186-d.html; http://www.loc.gov/catdir/enhancements/fy0625/2005052186-t.html", acknowledgement = ack-nhfb, subject = "Computer graphics; Quartz (Electronic resource); Mac OS X; Macintosh (Computer); Programming", } @Book{Gerner:2006:PLL, editor = "Jason Gerner and others", title = "Professional {LAMP}: {Linux}, {Apache}, {MySQL}, and {PHP} {Web} development", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxii + 379", year = "2006", ISBN = "0-7645-9723-X", ISBN-13 = "978-0-7645-9723-7", LCCN = "TK5105.888 .P677 2006", bibdate = "Wed Jun 25 17:33:31 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/enhancements/fy0623/2005026487-d.html; http://www.loc.gov/catdir/enhancements/fy0654/2005026487-b.html; http://www.loc.gov/catdir/enhancements/fy0654/2005026487-t.html", acknowledgement = ack-nhfb, subject = "Web site development; open source software", tableofcontents = "Introduction\\ Whom Is This Book For? \\ What's Covered in the Book \\ What You Need to Use This Book \\ Conventions \\ Source Code \\ Errata \\ p2p.wrox.com \\ Chapter 1: Whats New in PHP5? Object-Oriented Changes New Functions Other Changes to PHP5 Summary \\ Chapter 2: PHP5 OOP Procedural Programming versus OOP Inheritance and Interfaces Magic Methods Summary \\ Chapter 3: More Obscure PHP Array Functions and Callbacks glob() PHP Streams Summary \\ Chapter 4: Advanced MySQL The Basics, Revisited Querying Multiple Tables Full-Text Searching InnoDB Tables Controlling Access Analyzing the Database Database Maintenance Summary \\ Chapter 5: PHP Configuration Modifying php.ini PHP Configuration during Runtime Summary \\ Chapter 6: Apache Tricks URL Rewriting URL Spell Checking Content Compression Using MySQL with Apache Apache and SSL Apache as a File Repository Summary \\ Chapter 7: Site Security Controlling Access Website Attacks Other Considerations Summary \\ Chapter 8: PEAR and PECL What Is PEAR? What Is PECL? Exploring PEAR Exploring PECL Summary \\ Chapter 9: Code Efficiency Why Bother? Benchmarking and Profiling Hardware Improvements Web Server Improvements PHP Improvements Summary \\ Chapter 10: PHP Extensions PDFLib GD Library Ming SimpleXML Summary \\ Chapter 11: AJAX History XMLHTTP and XMLHttpRequest AJAX Libraries When Not to Use AJAX Further Information Summary \\ Chapter 12: Caching Engines Alternative PHP Cache eAccelerator Zend Optimizer JPCache memcached Using Different Caching Engines Together Choosing Your Caching Engine Summary \\ Chapter 13: Content Management Systems Types of CMSs Open Source Web CMS Packages All-Inclusive Web CMSs Micro CMSs Other Helpful Resources Summary Appendix A: Language Translation Appendix B: Alternative Tools MySQL Tools Version Control UML Tools.", } @InProceedings{Gigante:2006:HPS, author = "Mike Gigante", title = "High-Performance Storage Solutions on {IA-64 Linux}", crossref = "Anonymous:2006:PGI", pages = "??--??", year = "2006", bibdate = "Sat Oct 14 18:26:53 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "GNU/Linux; Intel IA-64; Itanium", } @Book{Granneman:2006:LP, author = "Scott Granneman", title = "{Linux} Phrasebook", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xvii + 382", year = "2006", ISBN = "0-672-32909-3; 0-672-32838-0 (paperback)", ISBN-13 = "978-0-672-32909-8; 978-0-672-32838-1 (paperback)", LCCN = "QA76.76.O63 G72 2006", bibdate = "Wed Aug 30 16:08:50 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "EUR 13.90", acknowledgement = ack-nhfb, } @Book{Grant:2006:ULN, author = "Rickford Grant", title = "{Ubuntu Linux} for non-geeks: a pain-free, project-based, get-things-done guidebook", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "xx + 334", year = "2006", ISBN = "1-59327-118-2", ISBN-13 = "978-1-59327-118-3", LCCN = "QA76.76.O63 G7246 2006eb", bibdate = "Mon Oct 29 18:40:51 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90; z3950.loc.gov:7090/Voyager", URL = "http://site.ebrary.com/lib/ucmerced/Doc?id=10137836; http://site.ebrary.com/lib/ucsc/Doc?id=10137836; http://www.loc.gov/catdir/enhancements/fy0715/2006015576-d.html; http://www.loc.gov/catdir/toc/ecip0613/2006015576.html", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Book{Hallinan:2006:ELP, author = "Christopher Hallinan", title = "{Embedded Linux} primer: a practical, real-world approach", publisher = pub-PH, address = pub-PH:adr, pages = "xxix + 537", year = "2006", ISBN = "0-13-167984-8 (paperback)", ISBN-13 = "978-0-13-167984-9 (paperback)", LCCN = "QA76.76.O63 H34462 2006", bibdate = "Tue Dec 5 16:08:01 MST 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", price = "US\$44.99", series = "Prentice Hall open source software development series", URL = "http://www.loc.gov/catdir/toc/ecip0612/2006012886.html", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers); Embedded computer systems; Programming", } @Article{Haynes:2006:OM, author = "Tom Haynes", title = "{OpenSolaris}: The Model", journal = j-LOGIN, volume = "31", number = "2", pages = "5--8", month = apr, year = "2006", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 10:53:03 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/2006-04/index.html", URL = "http://www.usenix.org/publications/login/2006-04/pdfs/haynes.pdf", acknowledgement = ack-nhfb, } @Article{Herder:2006:MHR, author = "Jorrit N. Herder and Herbert Bos and Ben Gras and Philip Homburg and Andrew S. Tanenbaum", title = "{MINIX 3}: a highly reliable, self-repairing operating system", journal = j-OPER-SYS-REV, volume = "40", number = "3", pages = "80--89", month = jul, year = "2006", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:58 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Herder:2006:MSP, author = "Jorrit N. Herder and Herbert Bos and Ben Gras and Philip Homburg and Andrew S. Tanenbaum", title = "Modular System Programming in {MINIX 3}", journal = j-LOGIN, volume = "31", number = "2", pages = "19--28", month = apr, year = "2006", CODEN = "LOGNEM", ISSN = "1044-6397", bibdate = "Tue Apr 11 10:53:03 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.usenix.org/publications/login/2006-04/index.html", URL = "http://www.minix3.org/; http://www.usenix.org/publications/login/2006-04/openpdfs/herder.pdf", acknowledgement = ack-nhfb, } @Book{Hill:2006:OUB, editor = "Benjamin Mako Hill and Jono Bacon and Corey Burger and Jonathan Jesse and Ivan Krsti{\'c}", title = "The official {Ubuntu} book", publisher = pub-PH, address = pub-PH:adr, pages = "320 (est.)", year = "2006", ISBN = "0-13-243594-2 (paperback)", ISBN-13 = "978-0-13-243594-9 (paperback)", LCCN = "QA76.76.O63 O34348 2006", bibdate = "Tue Jun 20 17:37:08 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", price = "US\$34.99", URL = "http://vig.prenhall.com/catalog/academic/product/0,1144,0132435942,00.html; http://www.loc.gov/catdir/toc/ecip0613/2006016172.html", acknowledgement = ack-nhfb, remark = "Foreword by Mark Shuttleworth, founder of Ubuntu.", subject = "Ubuntu (Electronic resource); Operating systems (Computers)", } @Book{Hong:2006:BIS, author = "Bryan Hong", title = "Building an {Internet} Server with {FreeBSD 6}", publisher = "Lulu.com", address = "????", pages = "228 (est.)", year = "2006", ISBN = "1-4116-9574-7", ISBN-13 = "978-1-4116-9574-0", LCCN = "????", bibdate = "Wed Feb 21 14:41:23 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", acknowledgement = ack-nhfb, } @InProceedings{Huang:2006:CLK, author = "Feilong Huang", title = "Compiling the {Linux} Kernel with the {Intel} Compiler", crossref = "Anonymous:2006:PGI", pages = "??--??", year = "2006", bibdate = "Sat Oct 14 18:26:53 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "GNU/Linux kernel; Intel IA-64; Itanium", } @Book{Hudson:2006:PN, author = "Paul Hudson", title = "{PHP} in a nutshell", publisher = pub-ORA, address = pub-ORA:adr, pages = "xv + 352", year = "2006", ISBN = "0-596-10067-1 (paperback)", ISBN-13 = "978-0-596-10067-4 (paperback)", LCCN = "QA76.73.P224 H83 2006", bibdate = "Wed Nov 15 09:59:06 MST 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.oreilly.com/catalog/9780596100674", acknowledgement = ack-nhfb, subject = "PHP (Computer program language); Internet programming", tableofcontents = "Introduction to PHP \\ Installing PHP \\ The PHP interpreter \\ The PHP language \\ Variables and constants \\ Operators \\ Function reference \\ Object-oriented PHP \\ HTML forms \\ Cookies and sessions \\ Output buffering \\ Security \\ Files \\ Databases \\ Regular expressions \\ Manipulating images \\ Creating PDFs \\ Creating flash \\ XML and XSLT \\ Network programming \\ Distributing your code \\ Debugging \\ Performance", } @Book{Hudson:2006:UU, author = "Andrew Hudson and Paul Hudson", title = "{Ubuntu} Unleashed", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "800 (est.)", year = "2006", ISBN = "0-672-32909-3 (hardcover)", ISBN-13 = "978-0-672-32909-8 (hardcover)", LCCN = "????", bibdate = "Tue Jun 20 18:15:53 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$66.99", acknowledgement = ack-nhfb, } @Book{Jang:2006:LAG, author = "Michael H. Jang", title = "{Linux} annoyances for geeks", publisher = pub-ORA, address = pub-ORA:adr, pages = "xv + 484", year = "2006", ISBN = "0-596-00801-5", ISBN-13 = "978-0-596-00801-7", LCCN = "QA76.76.O63; QA76.76.O63 J36 2006eb; QA76.76.O63 J36 2006", bibdate = "Tue Aug 5 17:44:21 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9780596008017", acknowledgement = ack-nhfb, remark = "Includes desktop management, system setup, and server configuration. For all major distributions.", subject = "Linux; Operating systems (Computers); Computer security; Software maintenance", } @Book{Jang:2006:LPM, author = "Michael H. Jang", title = "{Linux} Patch Management: keeping {Linux} systems up to date", publisher = pub-PH, address = pub-PH:adr, pages = "????", year = "2006", ISBN = "0-13-236675-4", ISBN-13 = "978-0-13-236675-5", LCCN = "QA76.76.O63 J368 2006", bibdate = "Tue Jun 20 17:37:27 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/toc/ecip0519/2005028070.html", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers); Computer security; Software maintenance", } @Article{Keromytis:2006:COS, author = "Angelos D. Keromytis and Jason L. Wright and Theo {De Raadt} and Matthew Burnside", title = "Cryptography as an operating system service: {A} case study", journal = j-TOCS, volume = "24", number = "1", pages = "1--38", month = feb, year = "2006", CODEN = "ACSYEC", DOI = "http://doi.acm.org/10.1145/1124153.1124154", ISSN = "0734-2071", bibdate = "Fri Apr 7 08:15:08 MDT 2006", bibsource = "http://www.acm.org/pubs/contents/journals/tocs/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Cryptographic transformations are a fundamental building block in many security applications and protocols. To improve performance, several vendors market hardware accelerator cards. However, until now no operating system provided a mechanism that allowed both uniform and efficient use of this new type of resource. We present the OpenBSD Cryptographic Framework (OCF), a service virtualization layer implemented inside the operating system kernel, that provides uniform access to accelerator functionality by hiding card-specific details behind a carefully designed API. We evaluate the impact of the OCF in a variety of benchmarks, measuring overall system performance, application throughput and latency, and aggregate throughput when multiple applications make use of it. We conclude that the OCF is extremely efficient in utilizing cryptographic accelerator functionality, attaining 95\% of the theoretical peak device performance and over 800 Mbps aggregate throughput using 3DES. We believe that this validates our decision to opt for ease of use by applications and kernel components through a uniform API and for seamless support for new accelerators. Furthermore, our evaluation points to several bottlenecks in system and operating system design: data copying between user and kernel modes, PCI bus signaling inefficiency, protocols that use small data units, and single-threaded applications. We identify some of these limitations through a set of measurements focusing on application-layer cryptographic protocols such as SSL. We offer several suggestions for improvements and directions for future work. We provide experimental evidence of the effectiveness of a new approach which we call operating system shortcutting. Shortcutting can improve the performance of application-layer cryptographic protocols by 27\% with very small changes to the kernel.", acknowledgement = ack-nhfb, } @Book{Kirkland:2006:LTS, editor = "James Kirkland and David Carmichael and Christopher L. Tinker and Gregory L. Tinker", title = "{Linux} troubleshooting for system administrators and power users", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "624 (est.)", year = "2006", ISBN = "0-13-185515-8 (paperback)", ISBN-13 = "978-0-13-185515-1 (paperback)", LCCN = "QA76.76.O63 L54875 2006", bibdate = "Wed Mar 15 17:46:10 MST 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", price = "US\$49.99", URL = "http://vig.prenhall.com/catalog/academic/product/0,1144,0131855158,00.html; http://www.loc.gov/catdir/toc/ecip066/2006000036.html", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", tableofcontents = "Preface \\ Chapter 1 System Boot, Startup, and Shutdown Issues \\ Chapter 2 System Hangs and Panics \\ Chapter 3 Performance Tools \\ Chapter 4 Performance \\ Chapter 5 Adding New Storage via SAN with Reference to PCMCIA and USB \\ Chapter 6 Disk Partitions and File Systems \\ Chapter 7 Device Failure and Replacement \\ Chapter 8 Linux Processes: Structures, Hangs, and Core Dumps \\ Chapter 9 Backup/Recovery \\ Chapter 10 cron and at \\ Chapter 11 Printing and Printers \\ Chapter 12 System Security \\ Chapter 13 Network Problems \\ Chapter 14 Login Problems \\ Chapter 15 X Windows Problems", } @Article{Kohlhepp:2006:RWL, author = "Bayard Kohlhepp", title = "Review of {``Windows and Linux Integration: Hands-on Solutions for a Mixed Environment by Jermy Moskowitz and Thomas Boutell,'' Sybex Inc., 2005, \$59.99, ISBN 0-7821-4428-4}", journal = j-QUEUE, volume = "4", number = "6", pages = "58--58", month = jul # "\slash " # aug, year = "2006", CODEN = "AQCUAE", ISSN = "1542-7730 (print), 1542-7749 (electronic)", ISSN-L = "1542-7730", bibdate = "Wed Aug 23 12:29:00 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "See \cite{Moskowitz:2005:WLI}.", acknowledgement = ack-nhfb, } @Article{Konishi:2006:LIL, author = "Ryusuke Konishi and Yoshiji Amagai and Koji Sato and Hisashi Hifumi and Seiji Kihara and Satoshi Moriai", title = "The {Linux} implementation of a log-structured file system", journal = j-OPER-SYS-REV, volume = "40", number = "3", pages = "102--107", month = jul, year = "2006", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:58 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Koren:2006:SLK, author = "Oded Koren", title = "A study of the {Linux} kernel evolution", journal = j-OPER-SYS-REV, volume = "40", number = "2", pages = "110--112", month = apr, year = "2006", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:43 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @InProceedings{Kulkarni:2006:SCS, author = "Pankaj Kulkarni", title = "{S7} Case Study: Porting 2 Million Lines of {C++} Code to {HP-UX Itanium}", crossref = "Anonymous:2006:PGI", pages = "??--??", year = "2006", bibdate = "Sat Oct 14 18:26:53 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ice.gelato.org/oct06/pres_pdf/gelato_ICE06oct_s7study_kulkarni_s7softwaresolutions.pdf", acknowledgement = ack-nhfb, keywords = "Intel IA-64; Itanium", } @MastersThesis{Lacheiner:2006:EPB, author = "Hermann Lacheiner", title = "{Entwicklung einer auf Python basierenden Rich Client Platform f{\"u}r Linux}. ({German}) [{Development} of a {Python}-based {Rich Client Platform} for {Linux}]", type = "{Diplome-Arbeit}", school = "Universit{\"a}t Linz", address = "Linz, Austria", pages = "v + 86", year = "2006", bibdate = "Thu Apr 16 09:12:12 2009", bibsource = "http://meteor.bibvb.ac.at/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, language = "German", } @Article{Lee:2006:HLK, author = "Yueh-Feng Lee and Ruei-Chuan Chang", title = "Hotswapping {Linux} kernel modules", journal = j-J-SYST-SOFTW, volume = "79", number = "2", pages = "163--175", month = feb, year = "2006", CODEN = "JSSODM", ISSN = "0164-1212", bibdate = "Tue Sep 7 07:27:01 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sciencedirect.com/science/journal/01641212", acknowledgement = ack-nhfb, } @Article{Liu:2006:PAP, author = "Chun-Ho Liu and Chat-Ming Woo and Dennis Y. C. Leung", title = "Performance analysis of a parallel finite element solution to the direct numerical simulation of fluid turbulence on {Linux} {PC} clusters", journal = j-APPL-MATH-COMP, volume = "172", number = "2", pages = "731--743", day = "15", month = jan, year = "2006", CODEN = "AMHCBQ", ISSN = "0096-3003 (print), 1873-5649 (electronic)", bibdate = "Sat Jul 12 09:02:52 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sciencedirect.com/science/journal/00963003", acknowledgement = ack-nhfb, } @Book{Marsh:2006:PRU, author = "Matthew G. Marsh", title = "Policy Routing Using {Linux}", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "205 (est.)", year = "2006", ISBN = "0-672-32052-5", ISBN-13 = "978-0-672-32052-1", LCCN = "????", bibdate = "Tue Jun 20 18:06:23 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "EUR 35.90", acknowledgement = ack-nhfb, } @Book{Marshall:2006:ASV, author = "David (David W.) Marshall and Wade A. Reynolds and Dave McCrory", title = "Advanced server virtualization: {VMware} and {Microsoft} platforms in the virtual data center", publisher = "Taylor and Francis", address = "Boca Raton, FL, USA", pages = "????", year = "2006", ISBN = "0-8493-3931-6", ISBN-13 = "9780849339318", LCCN = "QA76.76.O63 M3646 2006", bibdate = "Sun Apr 9 15:43:22 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "VMware; Operating systems (Computers); Virtual computer systems", } @Book{Mayer:2006:SEU, author = "Frank Mayer and Karl MacMillan and David Caplan", title = "{SELinux} by example: using {Security Enhanced Linux}", publisher = pub-PH, address = pub-PH:adr, pages = "460 (est.)", year = "2006", ISBN = "0-13-196369-4 (paperback)", ISBN-13 = "978-0-13-196369-6 (paperback)", LCCN = "QA76.76.O63 M3738 2006", bibdate = "Tue Jun 20 17:36:49 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", price = "US\$44.99", URL = "http://vig.prenhall.com/catalog/academic/product/0,1144,0131963694,00.html; http://www.loc.gov/catdir/toc/ecip0612/2006012657.html", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers); Computer networks; Security measures", xxtitle = "{SELinux} by example: understanding {Security Enhanced Linux}", } @Article{McIlwain:2006:TCL, author = "Sean McIlwain and Barton P. Miller", title = "A tool for converting {Linux} device drivers into {Solaris} compatible binaries", journal = j-SPE, volume = "36", number = "7", pages = "689--710", month = jun, year = "2006", CODEN = "SPEXBL", DOI = "http://dx.doi.org/10.1002/spe.714", ISSN = "0038-0644 (print), 1097-024X (electronic)", bibdate = "Wed Oct 17 18:33:12 MDT 2007", bibsource = "http://www.interscience.wiley.com/jpages/0038-0644; http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www3.interscience.wiley.com/journalfinder.html", abstract = "The Linux operating system is quickly becoming a standard, attracting a wide user community and supporting a broad variety of applications and devices. Other vendors, such as Sun, have provided Linux-compatible system call interfaces to their kernels, but are constrained by the lack of device support. To address this problem, we present a system (called PITS) to build device drivers, in this case for Solaris x86, from Linux source code. To accomplish this goal, we designed tools and Linux kernel emulation code to handle the myriad incompatibilities. These incompatibilities require the ability to resolve symbol conflicts, emulate internal Linux kernel data structures, handle module initialization, and generate module dependencies. With our method, we show that converting Linux device drivers is possible, but has a few technical difficulties. Issues arise with sparse documentation, external user interfaces, and modular driver implementations. There are also fundamental differences between the two operating systems, such as interrupt and DMA handling. We describe each of these issues and their current solutions to build a functional driver in the Solaris environment. Using the IOzone file system benchmark, we also demonstrate comparable performance between our generated SCSI driver set and their corresponding native counterparts.", acknowledgement = ack-nhfb, onlinedate = "7 Mar 2006", } @Book{Mendoza:2006:ULP, author = "Alfredo Mendoza and Chakarat Skawratananond and Artis Walker", title = "{Unix} to {Linux} porting: a comprehensive reference", publisher = pub-PH, address = pub-PH:adr, pages = "????", year = "2006", ISBN = "0-13-187109-9 (paperback)", ISBN-13 = "978-0-13-187109-0 (paperback)", LCCN = "QA76.76.O63 M437 2006", bibdate = "Wed Mar 15 17:45:29 MST 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/toc/ecip066/2006000234.html", acknowledgement = ack-nhfb, subject = "Linux; UNIX (Computer file); Operating systems (Computers)", tableofcontents = "Preface \\ Chapter 1: Porting Project Considerations \\ Chapter 2: Scoping \\ Chapter 3: Analysis \\ Chapter 4: Porting Solaris applications \\ Chapter 5: Porting AIX applications \\ Chapter 6: Porting HP-UX applications \\ Chapter 7: Testing and Debugging \\ Appendix A: Solaris to Linux Reference Tables \\ Appendix B: AIX to Linux Reference Tables \\ Appendix C: HP-UX to Linux Reference Tables \\ Appendix D: Linux on POWER \\ Appendix E: gprof helper", } @Book{Negus:2006:LBB, author = "Chris Negus", title = "{Linux} bible: boot up to {Fedora}, {KNOPPIX}, {Debian}, {SUSE}, {Ubuntu}, and 7 other distributions", publisher = pub-WILEY, address = pub-WILEY:adr, edition = "2006", pages = "xxix + 870", year = "2006", ISBN = "0-471-75489-7 (paper/DVD)", ISBN-13 = "978-0-471-75489-3 (paper/DVD)", LCCN = "QA76.76.O63 N42143 2006", bibdate = "Mon Oct 29 18:40:51 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", acknowledgement = ack-nhfb, remark = "Accompanying CD-ROM and DVD-ROM contains 12 different Linux distributions from bonus multi-boot.", subject = "Linux; Operating systems (Computers)", } @Book{Negus:2006:LLC, author = "Chris Negus", title = "Live {Linux CDs}: building and customizing bootables", publisher = pub-PH, address = pub-PH:adr, pages = "448 (est.)", year = "2006", ISBN = "0-13-243274-9 (paperback)", ISBN-13 = "978-0-13-243274-0 (paperback)", LCCN = "QA76.76.O63 N4245 2006", bibdate = "Tue Dec 5 14:07:45 MST 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/toc/ecip0619/2006027573.html", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers); CD-Rs", } @Book{Negus:2006:LTI, author = "Chris Negus", title = "{Linux} toys {II}: 9 cool new projects for home, office, and entertainment", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxii + 397", year = "2006", ISBN = "0-7645-7995-9 (paper/CD-ROM + e-book)", ISBN-13 = "978-0-7645-7995-0 (paper/CD-ROM + e-book)", LCCN = "QA76.76.O63 N4233 2006", bibdate = "Wed Apr 25 14:26:28 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "ExtremeTech", URL = "http://www.loc.gov/catdir/enhancements/fy0623/2005025375-d.html; http://www.loc.gov/catdir/enhancements/fy0662/2005025375-b.html; http://www.loc.gov/catdir/toc/ecip0518/2005025375.html", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers); Multimedia systems", } @Book{Nemeth:2006:LAH, author = "Evi Nemeth and Garth Snyder and Trent R. Hein", title = "{Linux} administration handbook", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "xxxvii + 1001", year = "2006", ISBN = "0-13-148004-9 (paperback)", ISBN-13 = "978-0-13-148004-9 (paperback)", LCCN = "QA76.76.O63 N448 2006", bibdate = "Tue Dec 5 14:07:25 MST 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/toc/ecip0620/2006030150.html", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @InProceedings{Neuner:2006:ILS, author = "Steve Neuner", title = "An Inside Look at Scaling {Linux} to 1024 Processors", crossref = "Anonymous:2006:PGI", pages = "??--??", year = "2006", bibdate = "Sat Oct 14 18:26:53 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ice.gelato.org/oct06/pres_pdf/gelato_ICE06oct_scaling1024_neuner_sgi.pdf", acknowledgement = ack-nhfb, keywords = "GNU/Linux; Intel IA-64; Itanium", } @Article{Nieh:2006:ETO, author = "Jason Nieh and Chris Vaill", title = "Experiences teaching operating systems using virtual platforms and {Linux}", journal = j-OPER-SYS-REV, volume = "40", number = "2", pages = "100--104", month = apr, year = "2006", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:43 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Oxer:2006:UH, author = "Jonathan Oxer and Kyle Rankin and Bill Childers", title = "{Ubuntu} Hacks", publisher = pub-ORA, address = pub-ORA:adr, pages = "xix + 426", year = "2006", ISBN = "0-596-52720-9", ISBN-13 = "978-0-596-52720-4", LCCN = "QA76.76.O63 2006", bibdate = "Sat Jun 17 20:11:50 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk", price = "EUR 29.00", acknowledgement = ack-nhfb, remark = "Tips and tools for exploring, using, and tuning Linux.", subject = "Operating systems (Computers); Ubuntu (Electronic resource); Linux", } @Article{Padioleau:2006:UCE, author = "Yoann Padioleau and Julia L. Lawall and Gilles Muller", title = "Understanding collateral evolution in {Linux} device drivers", journal = j-OPER-SYS-REV, volume = "40", number = "4", pages = "59--71", month = oct, year = "2006", CODEN = "OSRED8", DOI = "http://doi.acm.org/10.1145/1217935.1217942", ISSN = "0163-5980", bibdate = "Fri Jun 20 17:14:10 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "In a modern operating system (OS), device drivers can make up over 70\% of the source code. Driver code is also heavily dependent on the rest of the OS, for functions and data structures defined in the kernel and driver support libraries. These properties pose a significant problem for OS evolution, as any changes in the interfaces exported by the kernel and driver support libraries can trigger a large number of adjustments in dependent drivers. These adjustments, which we refer to as collateral evolutions, may be complex, entailing substantial code reorganizations. As to our knowledge there exist no tools to help in this process, collateral evolution is thus time consuming and error prone. In this paper, we present a qualitative and quantitative assessment of collateral evolution in Linux device driver code. We provide a taxonomy of evolutions and collateral evolutions, and use an automated patch-analysis tool that we have developed to measure the number of evolutions and collateral evolutions that affect device drivers between Linux versions 2.2 and 2.6. In particular, we find that from one version of Linux to the next, collateral evolutions can account for up to 35\% of the lines modified in such code.", acknowledgement = ack-nhfb, keywords = "device drivers; Linux; software evolution", } @Book{Rankin:2006:LMH, author = "Kyle Rankin", title = "{Linux} multimedia hacks: tips and tools for taming images, audio and video", publisher = pub-ORA, address = pub-ORA:adr, pages = "xviii + 310", year = "2006", ISBN = "0-596-10076-0", ISBN-13 = "978-0-596-10076-6", LCCN = "QA76.575; QA76.575 .R345 2006eb", bibdate = "Tue Aug 5 17:48:49 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9780596100766", abstract = "Presents Linux's multimedia tools with step-by-step instructions to maximize entertainment capabilities for images, audio, and video.", acknowledgement = ack-nhfb, subject = "Linux; Multimedia systems; Interactive multimedia", } @Book{Reed:2006:OPP, editor = "Jeremy C. Reed", title = "The {OpenBSD PF} Packet Filter Book: {PF} for {NetBSD}, {FreeBSD}, {DragonFly}, and {OpenBSD}", publisher = "Reed Media Services", address = "????", pages = "193 (est.)", year = "2006", ISBN = "0-9790342-0-5", ISBN-13 = "978-0-9790342-0-6", LCCN = "????", bibdate = "Wed Feb 21 14:35:24 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$19.90", URL = "http://www.reedmedia.net/books/pf-book/", acknowledgement = ack-nhfb, } @Book{Robbins:2006:KSP, author = "Arnold Robbins and Nelson H. F. Beebe", title = "{Klassische Shell-Programmierung: [automatisieren Sie Ihre Unix/Linux-Tasks]}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxiii + 572", year = "2006", ISBN = "3-89721-441-5", ISBN-13 = "978-3-89721-441-5", LCCN = "QA76.76.O63 R563 2005", bibdate = "Tue Dec 23 09:41:24 MST 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk", note = "German translation of \cite{Robbins:2005:CSS} by Kathrin Lichtenberg.", price = "EUR 44.00; EUR 45.65 (AT)", URL = "http://www.gbv.de/dms/hebis-darmstadt/toc/17645067X.pdf", acknowledgement = ack-nhfb, language = "German", subject = "SHELL ; Skript ; UNIX", } @Book{Robbins:2006:UN, author = "Arnold Robbins", title = "{Unix} in a Nutshell", publisher = pub-ORA-MEDIA, address = pub-ORA-MEDIA:adr, edition = "Fourth", pages = "xviii + 885", year = "2006", ISBN = "0-596-10029-9", ISBN-13 = "978-0-596-10029-2", LCCN = "QA76.76.O63 R566 2006", bibdate = "Mon Nov 21 12:08:47 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$34.95, CAN\$48.95, UK\pounds 24.95", URL = "http://www.oreilly.com/catalog/9780596100292; http://www.oreilly.com/catalog/unixnut4/index.html", acknowledgement = ack-nhfb, } @Book{Rodriguez:2006:LKP, author = "Claudia Salzberg Rodriguez and Gordon Fischer and Steven Smolski", title = "The {Linux} Kernel primer: a top-down approach for {X86} and {PowerPC} architectures", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxvii + 616", year = "2006", ISBN = "0-13-118163-7 (paperback)", ISBN-13 = "978-0-13-118163-2 (paperback)", LCCN = "QA76.76.O63 R633 2006", bibdate = "Wed Mar 15 17:45:49 MST 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Prentice Hall open source software development series", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Book{Rosenthal:2006:ACG, author = "Hanaan Rosenthal", title = "{AppleScript}: the comprehensive guide to scripting and automation on {Mac OS X}", publisher = pub-APRESS, address = pub-APRESS:adr, edition = "Second", pages = "xxxiv + 772", year = "2006", ISBN = "1-59059-653-6 (paperback)", ISBN-13 = "978-1-59059-653-1 (paperback)", LCCN = "QA76.73.A66 R67 2006", bibdate = "Mon Oct 13 14:35:48 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Expert's voice in Mac development", acknowledgement = ack-nhfb, subject = "AppleScript (Computer program language); Mac OS", } @Article{Rozman:2006:CPL, author = "Igor Rozman and Marjan {\v{s}}terk and Roman Trobec", title = "Communication Performance of {LAM\slash MPI} and {MPICH} on a {Linux} Cluster", journal = j-PARALLEL-PROCESS-LETT, volume = "16", number = "3", pages = "323--334", month = sep, year = "2006", CODEN = "PPLTEE", DOI = "http://dx.doi.org/10.1142/S0129626406002678", ISSN = "0129-6264", bibdate = "Thu Sep 2 09:08:11 MDT 2010", bibsource = "http://ejournals.wspc.com.sg/ppl/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Sanghera:2006:SCS, author = "Paul Sanghera and Nalneesh Gaur", title = "{Sun} Certified System Administrator for {Solaris 10} Study Guide (Exams {CX-310-200} and {CX-310-202})", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, pages = "599 (est.)", year = "2006", ISBN = "0-07-222959-4", ISBN-13 = "978-0-07-222959-2", LCCN = "????", bibdate = "Mon Apr 10 19:24:57 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, tableofcontents = "1. UNIX operating system : mind the gap \\ 2. Installing Solaris 10 software \\ 3. Performing system boot and shutdown \\ 4. Managing file systems \\ 5. Managing disks \\ 6. Performing user administration \\ 7. Performing security administration \\ 8. Managing network printers and system processes \\ 9. Performing system backups and restores \\ 10. Working with the solaris network environment \\ 11. Managing naming services \\ 12. Managing virtual file systems and core dumps \\ 13. Managing storage volumes \\ 14. Managing access control and system messaging \\ 15. Performing advanced installation", } @Book{Schroeder:2006:VTO, author = "Will Schroeder and Ken Martin and Bill Lorensen", title = "The visualization toolkit: an object-oriented approach to {3D} graphics [visualize data in 3{D} --- medical, engineering or scientific; build your own applications with {C}++, Tcl, Java or Python; includes source code for {VTK} (supports {UNIX}, Windows and Mac)]", publisher = "Kitware", address = "Clifton Park, NY", edition = "Fourth", pages = "xvi + 512", year = "2006", ISBN = "1-930934-19-X", ISBN-13 = "978-1-930934-19-1", LCCN = "????", bibdate = "Thu Apr 16 09:20:47 MDT 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.bibsys.no:2100/BIBSYS", acknowledgement = ack-nhfb, subject = "Visualisering; Datamaskinassistert presentasjon; Python", } @InProceedings{Shermerhorn:2006:HOL, author = "Lee Shermerhorn", title = "{HP\slash OSLO Linux} Scalability Tracking and Investigations", crossref = "Anonymous:2006:PGI", pages = "??--??", year = "2006", bibdate = "Sat Oct 14 18:26:53 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ice.gelato.org/oct06/pres_pdf/gelato_ICE06oct_scaltracking_shermerhorn_hp.pdf", acknowledgement = ack-nhfb, keywords = "GNU/Linux; Intel IA-64; Itanium", } @Article{Shumba:2006:THL, author = "Rose Shumba", title = "Teaching hands-on {Linux} host computer security", journal = j-JERIC, volume = "6", number = "3", pages = "5:1--5:??", month = sep, year = "2006", CODEN = "????", DOI = "http://doi.acm.org/10.1145/1243481.1243486", ISSN = "1531-4278", bibdate = "Fri Jun 20 10:12:25 MDT 2008", bibsource = "http://www.acm.org/pubs/contents/journals/jeric/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "In the summer of 2003, a project to augment and improve the teaching of information assurance courses was started at IUP. Thus far, ten hands-on exercises have been developed. The exercises described in this article, and presented in the appendix, are based on actions required to secure a Linux host. Publicly available resources were used to develop the exercises, which have been successfully utilized since spring 2003 to teach cybersecurity basics classes. The experiences and challenges encountered in teaching the course and possible future work are also described.", acknowledgement = ack-nhfb, articleno = "5", keywords = "computer security; cryptography; file integrity; file permissions; host security exercises; user accounts", } @Book{Smith:2006:BSE, author = "Larry L. Smith", title = "{BASH} Shell: Essential Programs for Your Survival at Work", publisher = "BookSurge Publishing", address = "????", pages = "590 (est.)", year = "2006", ISBN = "1-4196-4833-0", ISBN-13 = "978-1-4196-4833-5", LCCN = "????", bibdate = "Mon Nov 26 18:37:59 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$32.99", acknowledgement = ack-nhfb, remark = "Book 3 in the Rosetta Stone Series for Computer Programmers and Script-Writers (Rosetta Stone)", } @Book{Smith:2006:HUU, author = "Larry L. Smith", title = "How To Use the {UNIX-LINUX} {{\tt vi}} Text Editor: Tips, Tricks, and Techniques (And Tutorials Too!)", publisher = "BookSurge Publishing", address = "Charleston, SC, USA", pages = "56", year = "2006", ISBN = "1-4196-4834-9", ISBN-13 = "978-1-4196-4834-2", LCCN = "????", bibdate = "Mon Nov 17 13:51:08 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Smith:2006:KSK, author = "Larry L. Smith", title = "{Korn} Shell / {{\tt ksh}}: Essential Programs for Your Survival at Work", publisher = "BookSurge Publishing", address = "Charleston, SC, USA", pages = "588", year = "2006", ISBN = "1-4196-4831-4", ISBN-13 = "978-1-4196-4831-1", LCCN = "????", bibdate = "Mon Nov 17 13:51:08 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, remark = "Book 1 in the Rosetta Stone Series for Computer Programmers and Script-Writers.", } @Book{Sobell:2006:PGR, author = "Mark G. Sobell", title = "A practical guide to {Red Hat Linux}: {Fedora Core} and {Red Hat Enterprise Linux}", publisher = pub-PH, address = pub-PH:adr, edition = "Third", pages = "1168 (est.)", year = "2006", ISBN = "0-13-228027-2 (paperback)", ISBN-13 = "978-0-13-228027-3 (paperback)", LCCN = "QA76.76.O63 S59485 2006", bibdate = "Tue Jun 20 17:36:11 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", note = "Includes DVD.", URL = "http://vig.prenhall.com/catalog/academic/product/0,1144,0132280272,00.html; http://www.loc.gov/catdir/toc/ecip0613/2006014003.html", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Book{Sobell:2006:PGU, author = "Mark G. Sobell and Peter Seebach", title = "A practical guide to {Unix} for {Mac OS X} users", publisher = pub-PH, address = pub-PH:adr, pages = "xxxix + 999", year = "2006", ISBN = "0-13-186333-9 (paperback)", ISBN-13 = "9780131863330", LCCN = "QA76.76.O63 S597 2006", bibdate = "Tue May 27 13:07:39 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "UNIX (Computer file); Mac OS; Operating systems (Computers)", } @Book{Sprang:2006:XVL, author = "Henning Sprang", title = "{Xen: Virtualisierung unter Linux}", publisher = "Open Source Press", address = "M{\"u}nchen, Germany", pages = "350", year = "2006", ISBN = "3-937514-29-5", ISBN-13 = "978-3-937514-29-1", LCCN = "????", bibdate = "Sat Oct 14 17:41:07 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk", price = "ca. EUR 39.90, EUR 41.35 (AT)", acknowledgement = ack-nhfb, language = "German", } @Article{Stanik:2006:NML, author = "John Stanik", title = "News 2.0: The Mobile {Linux} Challenge; {Google} not into Googling; Keeping Online Video Legit;", journal = j-QUEUE, volume = "4", number = "8", pages = "8--8", month = oct, year = "2006", CODEN = "AQCUAE", ISSN = "1542-7730 (print), 1542-7749 (electronic)", ISSN-L = "1542-7730", bibdate = "Wed Oct 11 07:01:51 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Tanenbaum:2006:FSD, author = "Andrew S. Tanenbaum and Jorrit N. Herder and Herbert Bos", title = "File size distribution on {UNIX} systems: then and now", journal = j-OPER-SYS-REV, volume = "40", number = "1", pages = "100--104", month = jan, year = "2006", CODEN = "OSRED8", ISSN = "0163-5980", bibdate = "Sat Aug 26 08:55:38 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Tanenbaum:2006:OSD, author = "Andrew S. Tanenbaum and Albert S. Woodhull", title = "Operating systems: design and implementation", publisher = pub-PEARSON-PH, address = pub-PEARSON-PH:adr, edition = "Third", pages = "xvii + 1054", year = "2006", ISBN = "0-13-142938-8", ISBN-13 = "978-0-13-142938-3", LCCN = "QA76.76.O63 T36 2006", bibdate = "Wed Apr 12 05:42:39 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, keywords = "MINIX 3", subject = "Operating systems (Computers)", } @Book{Thomas:2006:BUL, author = "Keir Thomas", title = "Beginning {Ubuntu Linux}: from novice to professional", publisher = pub-APRESS, address = pub-APRESS:adr, pages = "xxxii + 573", year = "2006", ISBN = "1-59059-627-7", ISBN-13 = "978-1-59059-627-2", LCCN = "QA76.76.O63 T565 2006", bibdate = "Mon Oct 29 18:40:51 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Book{Thompson:2006:QGM, author = "R. Scott Thompson", title = "{Quartz 2D} graphics for {Mac OS X} developers", publisher = pub-AW, address = pub-AW:adr, pages = "xvi + 330", year = "2006", ISBN = "0-321-33663-1 (paperback)", ISBN-13 = "978-0-321-33663-7 (paperback)", LCCN = "T385 .T4953995 2006", bibdate = "Mon May 5 12:43:03 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/toc/ecip064/2005034911.html", acknowledgement = ack-nhfb, subject = "Computer graphics; Quartz (Electronic resource); Mac OS; Macintosh (Computer); Programming", tableofcontents = "Getting Started \\ From QuickDraw to Quartz 2D \\ Introduction to Quartz 2D \\ The Graphics Context \\ Transformations \\ Line Art --- Building Paths \\ Line Art --- Drawing \\ Image Basics \\ Importing and Exporting Images \\ Drawing with Core Image \\ Drawing Text with Quartz 2D \\ Drawing Off-Screen \\ Shadings and Patterns \\ Working with PDF", } @Book{Tiemann:2006:FU, author = "Brian Tiemann and Michael C. Urban", title = "{FreeBSD 6} unleashed", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xxv + 877", year = "2006", ISBN = "0-672-32875-5", ISBN-13 = "978-0-672-32875-6", LCCN = "QA76.754 T53 2006", bibdate = "Wed Feb 21 14:25:15 MST 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, remark = "DVD includes FreeBSD 6.1.", subject = "FreeBSD; Free computer software; Computer networks", } @Book{Toporek:2006:MXT, author = "Chuck Toporek and Chris Stone and Jason McIntosh and others", title = "{Mac OS X Tiger} in a nutshell", publisher = pub-ORA, address = pub-ORA:adr, edition = "Third", pages = "xv + 498", year = "2006", ISBN = "0-596-00943-7 (paperback)", ISBN-13 = "978-0-596-00943-4 (paperback)", LCCN = "QA76.76.O63 M3873 2006", bibdate = "Thu Apr 19 18:05:23 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", abstract = "Complete overview of Mac OS Jaguar (Mac OS X 10.2) including basic system and network administration features, hundreds of tips and tricks, with an overview of Mac OS X's Unix text editors and CVS.", acknowledgement = ack-nhfb, subject = "Mac OS; Operating systems (Computers); Macintosh (Computer); Programming", } @Book{Tyler:2006:FL, author = "Chris Tyler", title = "{Fedora Linux}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xiii + 639", year = "2006", ISBN = "0-596-52682-2", ISBN-13 = "978-0-596-52682-5", LCCN = "QA76.76.O63; QA76.76.O63 T9 2006eb", bibdate = "Tue Aug 5 18:05:03 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9780596526825", acknowledgement = ack-nhfb, subject = "Linux", } @Book{Vesperman:2006:EC, author = "Jennifer Vesperman", title = "Essential {CVS}", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "428 (est.)", year = "2006", ISBN = "0-596-52703-9", ISBN-13 = "978-0-596-52703-7", LCCN = "????", bibdate = "Tue Nov 28 14:27:15 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "CVS; Computer software; Development; Database management", } @Book{vonHagen:2006:DGG, author = "William von Hagen and Kurt Wall", title = "The Definitive Guide to {GCC}", publisher = pub-APRESS, address = pub-APRESS:adr, edition = "Second", pages = "584 (est.)", year = "2006", ISBN = "1-59059-585-8", ISBN-13 = "978-1-59059-585-5", LCCN = "????", bibdate = "Tue Nov 28 14:36:01 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{VonHagen:2006:LSH, author = "William {Von Hagen} and Brian K. (Brian Kenneth) Jones", title = "{Linux} server hacks. Vol. 2", publisher = pub-ORA, address = pub-ORA:adr, pages = "xx + 456", year = "2006", ISBN = "0-596-10082-5", ISBN-13 = "978-0-596-10082-7", LCCN = "QA76.76.O63; QA76.76.O63eb", bibdate = "Tue Aug 5 17:49:03 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9780596100827", acknowledgement = ack-nhfb, remark = "Tips and tools for connecting, monitoring, and troubleshooting.", subject = "Linux; Client/server computing; Operating systems (Computers)", } @Book{vonHagen:2006:ULB, author = "William von Hagen", title = "{Ubuntu Linux} bible", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxvi + 904", year = "2006", ISBN = "0-470-03899-3 (paperback)", ISBN-13 = "978-0-470-03899-4 (paperback)", LCCN = "QA76.76.O63 V665 2007", bibdate = "Mon Oct 29 18:40:51 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Book{Wilding:2006:SSL, author = "Mark Wilding and Dan Behman", title = "Self-service {Linux}: mastering the art of problem determination", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "xxii + 431", year = "2006", ISBN = "0-13-147751-X", ISBN-13 = "978-0-13-147751-3", LCCN = "QA76.76.O63 W52 2006", bibdate = "Wed Nov 15 08:21:52 MST 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; open", series = "Bruce Perens' Open Source series", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Article{Wright:2006:VUS, author = "Charles P. Wright and Jay Dave and Puja Gupta and Harikesavan Krishnan and David P. Quigley and Erez Zadok and Mohammad Nayyer Zubair", title = "Versatility and {Unix} semantics in namespace unification", journal = j-TOS, volume = "2", number = "1", pages = "74--105", month = feb, year = "2006", CODEN = "????", DOI = "http://doi.acm.org/10.1145/1138041.1138045", ISSN = "1553-3077 (print), 1553-3093 (electronic)", bibdate = "Wed Aug 23 05:41:22 MDT 2006", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Administrators often prefer to keep related sets of files in different locations or media, as it is easier to maintain them separately. Users, however, prefer to see all files in one location for convenience. One solution that accommodates both needs is virtual namespace unification---providing a merged view of several directories without physically merging them. For example, namespace unification can merge the contents of several CD-ROM images without unpacking them, merge binary directories from different packages, merge views from several file servers, and more. Namespace unification can also enable snapshotting by marking some data sources read-only and then utilizing copy-on-write for the read-only sources. For example, an OS image may be contained on a read-only CD-ROM image---and the user's configuration, data, and programs could be stored in a separate read-write directory. With copy-on-write unification, the user need not be concerned about the two disparate file systems. It is difficult to maintain Unix semantics while offering a versatile namespace unification system. Past efforts to provide such unification often compromised on the set of features provided or Unix compatibility---resulting in an incomplete solution that users could not use. We designed and implemented a versatile namespace unification system called Unionfs. Unionfs maintains Unix semantics while offering advanced namespace unification features: dynamic insertion and removal of namespaces at any point in the merged view, mixing read-only and read-write components, efficient in-kernel duplicate elimination, NFS interoperability, and more. Since releasing our Linux implementation, it has been used by thousands of users and over a dozen Linux distributions, which helped us discover and solve many practical problems.", acknowledgement = ack-nhfb, } @Article{Yu:2006:MKO, author = "Liguo Yu and Stephen R. Schach and Kai Chen and Gillian Z. Heller and Jeff Offutt", title = "Maintainability of the kernels of open-source operating systems: {A} comparison of {Linux} with {FreeBSD}, {NetBSD}, and {OpenBSD}", journal = j-J-SYST-SOFTW, volume = "79", number = "6", pages = "807--815", month = jun, year = "2006", CODEN = "JSSODM", ISSN = "0164-1212", bibdate = "Tue Sep 7 07:27:01 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sciencedirect.com/science/journal/01641212", acknowledgement = ack-nhfb, } @Book{Adelstein:2007:LSA, author = "Tom Adelstein and Falko Timme", title = "{Linux} system administration", publisher = pub-ORA, address = pub-ORA:adr, pages = "xiii + 279", year = "2007", ISBN = "0-596-00952-6 (paperback)", ISBN-13 = "978-0-596-00952-6 (paperback)", LCCN = "QA76.76.O63; QA76.76.O63 A34 2007eb", bibdate = "Tue Aug 5 17:46:26 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9780596009526", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", xxauthor = "Tom Adelstein and Bill Lubanovic", } @Book{Aho:2007:CPT, editor = "Alfred V. Aho and Monica S. Lam and Ravi Sethi and Jeffrey D. Ullman", title = "Compilers: principles, techniques, and tools", publisher = "Pearson/Addison Wesley", address = "Boston, MA, USA", edition = "Second", pages = "xxiv + 1009", year = "2007", ISBN = "0-321-48681-1, 0-321-54798-5", ISBN-13 = "978-0-321-48681-3, 978-0-321-54798-9", LCCN = "QA76.76.C65 A37 2007", bibdate = "Tue Jan 30 16:21:16 MST 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/toc/ecip0618/2006024333.html", acknowledgement = ack-nhfb, remark = "Revised edition of \cite{Aho:CPT86}", subject = "Compilers (Computer programs)", } @Book{Albing:2007:BC, author = "Carl Albing and J. P. Vossen and Cameron Newham", title = "Bash cookbook", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxi + 598", year = "2007", ISBN = "0-596-52678-4 (paperback)", ISBN-13 = "978-0-596-52678-8 (paperback)", LCCN = "QA76.76.O63 A39885 2007", bibdate = "Mon Nov 26 17:25:36 MST 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "UNIX Shells; UNIX (Computer file); User interfaces (Computer systems)", } @Book{Anley:2007:SHD, editor = "Chris Anley and Jack Koziol and others", title = "The shellcoder's handbook: discovering and exploiting security holes", publisher = pub-WILEY, address = pub-WILEY:adr, edition = "Second", pages = "xxiv + 718", year = "2007", ISBN = "0-470-08023-X (paper/website)", ISBN-13 = "978-0-470-08023-8 (paper/website)", LCCN = "QA76.9.A25 S464 2007", bibdate = "Mon May 5 13:05:56 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.loc.gov/catdir/enhancements/fy0739/2007021079-b.html; http://www.loc.gov/catdir/enhancements/fy0739/2007021079-d.html; http://www.loc.gov/catdir/toc/ecip0718/2007021079.html", acknowledgement = ack-nhfb, subject = "Computer security; Data protection; Risk assessment", } @Article{Apte:2007:APL, author = "Himani Apte and Meenali Rungta", title = "Adding parity to the {Linux} {\tt ext3} file system", journal = j-OPER-SYS-REV, volume = "41", number = "1", pages = "56--65", month = jan, year = "2007", CODEN = "OSRED8", DOI = "http://doi.acm.org/10.1145/1228291.1228306", ISSN = "0163-5980", bibdate = "Fri Jun 20 17:15:27 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Modern disks no longer operate in a simple `fail-stop' manner, yet commodity operating systems assume they do. We design and implement a parity based approach to improve the robustness of journaling file systems. We modify the existing {\tt ext3} file system for data and ordered journaling modes to incorporate parity and call it the `Parity File System'. Using PFS, we are able to recover from a single latent sector error or silent block corruption within a given file. We show that the performance overhead for PFS compared to {\tt ext3} is minimal while the robustness is significantly improved.", acknowledgement = ack-nhfb, } @Article{Beshers:2007:ERU, author = "Clifford Beshers and David Fox and Jeremy Shaw", title = "Experience report: using functional programming to manage a {Linux} distribution", journal = j-SIGPLAN, volume = "42", number = "9", pages = "213--218", month = sep, year = "2007", CODEN = "SINODQ", DOI = "http://doi.acm.org/10.1145/1291151.1291184", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Wed Jun 18 10:59:28 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "We report on our experience using functional programming languages in the development of a commercial GNU/Linux distribution, discussing features of several significant systems: hardware detection and system configuration; OS installer CD creation; package compilation and management. Static typing helps compensate for the lack of a complete testing lab and helps us be effective with a very small team. Most importantly, we believe that going beyond merely using functional languages to using purely functional designs really helps to create simple, effective tools.", acknowledgement = ack-nhfb, } @Article{Chanet:2007:ARM, author = "Dominique Chanet and Bjorn {De Sutter} and Bruno {De Bus} and Ludo {Van Put} and Koen {De Bosschere}", title = "Automated reduction of the memory footprint of the {Linux} kernel", journal = j-TECS, volume = "6", number = "4", pages = "23:1--23:??", month = sep, year = "2007", CODEN = "????", DOI = "http://doi.acm.org/10.1145/1274858.1274861", ISSN = "1539-9087 (print), 1558-3465 (electronic)", bibdate = "Thu Jun 12 15:21:30 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "The limited built-in configurability of Linux can lead to expensive code size overhead when it is used in the embedded market. To overcome this problem, we propose the application of link-time compaction and specialization techniques that exploit the a priori known, fixed runtime environment of many embedded systems. In experimental setups based on the ARM XScale and i386 platforms, the proposed techniques are able to reduce the kernel memory footprint with over 16\%. We also show how relatively simple additions to existing binary rewriters can implement the proposed techniques for a complex, very unconventional program, such as the Linux kernel. We note that even after specialization, a lot of seemingly unnecessary code remains in the kernel and propose to reduce the footprint of this code by applying code-compression techniques. This technique, combined with the previous ones, reduces the memory footprint with over 23\% for the i386 platform and 28\% for the ARM platform. Finally, we pinpoint an important code size growth problem when compaction and compression techniques are combined on the ARM platform.", acknowledgement = ack-nhfb, articleno = "23", keywords = "compaction; compression; Linux kernel; operating system; specialization; system calls", } @Book{Cohen:2007:MXB, author = "Michael E. Cohen and Dennis R. Cohen", title = "The {Mac Xcode 3} book", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "352 (est.)", year = "2007", ISBN = "0-470-05339-9 (paperback)", ISBN-13 = "978-0-470-05339-3 (paperback)", LCCN = "????", bibdate = "Mon Nov 26 17:25:58 MST 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/enhancements/fy0741/2007926015-d.html", acknowledgement = ack-nhfb, } @Book{Dotzauer:2007:SBL, author = "Timo Dotzauer and Tobias L{\"u}tticke and Alexander von Gernler", title = "{Das SSH-Buch: Leitfaden f{\"u}r den sicheren Einsatz von OpenSSH}", publisher = "Millin", address = "Lohmar, Germany", pages = "xviii + 602", year = "2007", ISBN = "3-938626-03-8", ISBN-13 = "978-3-938626-03-0", LCCN = "????", bibdate = "Wed May 4 09:09:42 MDT 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk", URL = "http://www.gbv.de/dms/ilmenau/toc/508392802.PDF", acknowledgement = ack-nhfb, } @Article{Fei:2007:EOS, author = "Yunsi Fei and Srivaths Ravi and Anand Raghunathan and Niraj K. Jha", title = "Energy-optimizing source code transformations for operating system-driven embedded software", journal = j-TECS, volume = "7", number = "1", pages = "2:1--2:26", month = dec, year = "2007", CODEN = "????", DOI = "http://doi.acm.org/10.1145/1324969.1324971", ISSN = "1539-9087 (print), 1558-3465 (electronic)", bibdate = "Thu Jun 12 15:21:48 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This paper proposes four types of source code transformations for operating system (OS)-driven embedded software programs to reduce their energy consumption. Their key features include spanning of process boundaries and minimization of the energy consumed in the execution of OS services---opportunities which are beyond the reach of conventional compiler optimizations and source code transformations. We have applied the proposed transformations to several multiprocess benchmark programs in the context of an embedded Linux OS running on an Intel StrongARM processor. They achieve up to 37.9\% (23.8\%, on average) energy reduction compared to highly compiler-optimized implementations.", acknowledgement = ack-nhfb, keywords = "energy consumption; Linux; source code transformations", } @Article{Feitelson:2007:FGA, author = "Dror G. Feitelson and Tokunbo O. S. Adeshiyan and Daniel Balasubramanian and Yoav Etsion and Gabor Madl and Esteban P. Osses and Sameer Singh and Karlkim Suwanmongkol and Minhui Xie and Stephen R. Schach", title = "Fine-grain analysis of common coupling and its application to a {Linux} case study", journal = j-J-SYST-SOFTW, volume = "80", number = "8", pages = "1239--1255", month = aug, year = "2007", CODEN = "JSSODM", ISSN = "0164-1212", bibdate = "Tue Sep 7 07:27:02 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sciencedirect.com/science/journal/01641212", acknowledgement = ack-nhfb, } @Book{Gabarro:2007:WAD, author = "Steven A. Gabarr\'o", title = "{Web} application design and implementation: {Apache 2}, {PHP5}, {MySQL}, {JavaScript}, and {Linux\slash Unix}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xv + 295", year = "2007", ISBN = "0-471-77391-3 (cloth)", ISBN-13 = "978-0-471-77391-7 (cloth)", LCCN = "TK5105.8883 .G33 2007", bibdate = "Wed Jun 25 17:32:53 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", series = "Quantitative software engineering series", URL = "http://www.loc.gov/catdir/toc/ecip0613/2006014999.html", acknowledgement = ack-nhfb, subject = "Web site development; Web sites; Design; Application software; Development", } @Book{Gagne:2007:MUL, author = "Marcel Gagn{\'e}", title = "Moving to {Ubuntu Linux}", publisher = pub-AW, address = pub-AW:adr, pages = "xxii + 463", year = "2007", ISBN = "0-321-42722-X (paperback)", ISBN-13 = "978-0-321-42722-9 (paperback)", LCCN = "QA76.76.O63 G3455 2007", bibdate = "Mon Oct 29 18:40:46 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/toc/ecip0616/2006021595.html", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Book{GDT:2007:GUM, author = "{GIMP Documentation Team}", title = "{GIMP} user manual: {GNU} image manipulation program user manual", publisher = "SoHoBooks", address = "????, USA", pages = "653", year = "2007", ISBN = "1-4414-1932-2", ISBN-13 = "978-1-4414-1932-3", LCCN = "T385 .G5426 2009", bibdate = "Fri Sep 17 15:26:25 MDT 2010", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, remark = "Photo retouching, image composition and image authoring", subject = "GIMP (computer file); handbooks, manuals, etc; computer graphics; photography; retouching; software", } @Book{Goelker:2007:GPI, author = "Klaus Goelker", title = "{GIMP 2} for photographers: image editing with open source software", publisher = "Rockynook", address = "Santa Barbara, CA, USA", pages = "ix + 186", year = "2007", ISBN = "1-933952-03-2", ISBN-13 = "978-1-933952-03-1", LCCN = "TR267.5.G56", bibdate = "Fri Sep 17 15:26:32 MDT 2010", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, subject = "Infographie; logiciels libres; photographies", tableofcontents = "Basics. Introduction \\ Introduction to digital image editing \\ Loading and managing digital photos on the computer \\ Getting the GIMP running \\ Using the GIMP: correcting and touching up your images \\ Getting started \\ Editing images in the GIMP \\ Working with scanned images \\ Scanning and editing an image \\ Touchup work 1 --- removing color cast \\ Touchup work 2 --- removing spots, dust, and scratches \\ Using masks and layers --- painting, filling, and color tools. \\ Introduction to masks and selections \\ Touchup work 3 --- removing red eyes \\ Introduction to working with layers \\ Touchup work 4 --- using perspective correction to remove converging verticals \\ Touchup work 5 --- freshening up a ``dull sky'' \\ Typing in the GIMP --- adding text to an image \\ Using graphic filters to add effects to your images \\ Creating your own image frames and vignettes \\ Creating and editing image elements --- lighting effects and shadow layers \\ Using the path tool as a masking tool --- using filters for light effects \\ Using layers, masks, and paths to create three-dimensional objects --- shadow layers \\ Using masks and selections to dissolve images \\ Image collages --- using masks and selections to cut and paste image objects --- Working with black-and-white and color images. \\ Converting color images partly or entirely into grayscale images \\ Touching up black-and-white images --- levels, brightness, contrast \\ Cropping hair --- a tricky task \\ Coloring grayscale images \\ ``Hand-colored'' collages from black-and-white photos \\ Appendix. How to proceed from here \\ Acknowledgements \\ What's on the CD \\ Native GIMP file formats", } @Book{Gookin:2007:PGN, author = "Dan Gookin", title = "Programmer's guide to {NCurses}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xx + 556", year = "2007", ISBN = "0-470-10759-6", ISBN-13 = "978-0-470-10759-1", LCCN = "X07.E03449", bibdate = "Wed Feb 11 14:47:59 MST 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; library.ox.ac.uk:210/ADVANCE", acknowledgement = ack-nhfb, subject = "UNIX (Computer file); Operating systems (Computers)", tableofcontents = "Chapter 1. The setup \\ Chapter 2. Basic I/O, the NCurses way \\ Chapter 3. Formatting text \\ Chapter 4. Around the Window \\ Chapter 5. More text manipulation \\ Chapter 6. Clearing and zapping \\ Chapter 7. Keyboard madness! \\ Chapter 8. Windows, Windows everywhere! \\ Chapter 9. Subwindows \\ Chapter 10. More Window tricks \\ Chapter 11. Dig my pad, man \\ Chapter 12. The joy of soft labels \\ Chapter 13. Messing mit der mouse \\ Chapter 14. A mixture of stuff \\ Appendix A. NCurses library reference \\ Appendix B. The alternative character set \\ Appendix C. The chtype \\ Appendix D. Keypad character codes", } @Book{Gunther:2007:BKG, author = "Karsten G{\"u}nther", title = "{Bash: kurz and gut}", publisher = pub-ORA, address = pub-ORA:adr, pages = "144", year = "2007", ISBN = "3-89721-533-0", ISBN-13 = "978-3-89721-533-7", LCCN = "????", bibdate = "Thu Jul 15 18:30:14 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk", price = "EUR 9.90", series = "O'Reillys Taschenbibliothek", acknowledgement = ack-nhfb, language = "German", } @Book{Hallinan:2007:ELP, author = "Christopher Hallinan", title = "Embedded {Linux} primer: a practical, real-world approach", publisher = pub-PH, address = pub-PH:adr, pages = "xxix + 537", year = "2007", ISBN = "0-13-167984-8 (paperback)", ISBN-13 = "978-0-13-167984-9 (paperback)", LCCN = "QA76.76.O63 H34462 2007", bibdate = "Fri Jun 20 11:46:30 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Prentice Hall open source software development series", URL = "http://www.loc.gov/catdir/toc/ecip0612/2006012886.html", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers); Embedded computer systems; Programming", } @Book{Hammel:2007:AGG, author = "Michael J. Hammel", title = "The artist's guide to {GIMP} effects: creative techniques for photographers, artists, and designers", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "xii + 348", year = "2007", ISBN = "1-59327-121-2 (paperback)", ISBN-13 = "978-1-59327-121-3 (paperback)", LCCN = "T385 .H329558 2007", bibdate = "Fri Sep 17 15:21:51 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/enhancements/fy0728/2007001652-d.html; http://www.loc.gov/catdir/toc/ecip078/2007001652.html", acknowledgement = ack-nhfb, subject = "computer graphics; GIMP (Computer file)", } @Book{Hill:2007:OUBa, editor = "Benjamin Mako Hill and others", title = "The official {Ubuntu} book", publisher = pub-PH, address = pub-PH:adr, pages = "xxxiv + 412", year = "2007", ISBN = "0-13-243594-2 (paperback)", ISBN-13 = "978-0-13-243594-9 (paperback)", LCCN = "QA76.76.O63 O34348 2007", bibdate = "Mon Oct 29 18:40:51 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/toc/ecip0613/2006016172.html", acknowledgement = ack-nhfb, subject = "Ubuntu (Electronic resource); Operating systems (Computers)", } @Book{Hill:2007:OUBb, editor = "Benjamin Mako Hill and others", title = "The official {Ubuntu} book", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "xlii + 463", year = "2007", ISBN = "0-13-235413-6 (paperback)", ISBN-13 = "978-0-13-235413-4 (paperback)", LCCN = "QA76.76.O63 O34348 2007a", bibdate = "Mon Oct 29 18:48:31 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/toc/ecip0717/2007018467.html", acknowledgement = ack-nhfb, subject = "Ubuntu (Electronic resource); Operating systems (Computers)", tableofcontents = "Introducing Ubuntu \\ Installing Ubuntu \\ Using Ubuntu on the desktop \\ Advanced usage and managing Ubuntu \\ The Ubuntu server \\ Support and typical problems \\ Using Kubuntu \\ The Ubuntu community \\ Ubuntu-related projects \\ Using Edubuntu \\ Appendix A: welcome to the command line \\ Appendix B: Ubuntu foundation documents \\ Appendix C: creative commons attribution-ShareAlike 2.0 open publication license \\ Appendix D: Ubuntu equivalents to Windows programs", } @Book{Hudson:2007:UU, author = "Andrew Hudson and Paul Hudson", title = "{Ubuntu} unleashed", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xxvi + 879", year = "2007", ISBN = "0-672-32909-3 (paperback: CD-ROM)", ISBN-13 = "978-0-672-32909-8 (paperback: CD-ROM)", LCCN = "QA76.76.O63 H8167 2007", bibdate = "Mon Oct 29 18:40:46 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/toc/fy0707/2006286996.html", acknowledgement = ack-nhfb, remark = "DVD includes \ldots{} Ubuntu 6.06 LTS distribution \ldots{} OpenOffice.org suite \ldots{} additional programs and utilities.", subject = "Ubuntu (Electronic resource); Operating systems (Computers)", } @Article{Jambor:2007:ILL, author = "Martin Jambor and Tomas Hruby and Jan Taus and Kuba Krchak and Viliam Holub", title = "Implementation of a {Linux} log-structured file system with a garbage collector", journal = j-OPER-SYS-REV, volume = "41", number = "1", pages = "24--32", month = jan, year = "2007", CODEN = "OSRED8", DOI = "http://doi.acm.org/10.1145/1228291.1228299", ISSN = "0163-5980", bibdate = "Fri Jun 20 17:15:27 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "In many workloads, most write operations performed on a file system modify only a small number of blocks. The log-structured file system was designed for such a workload, additionally with the aim of fast crash recovery and system snapshots. Surprisingly, although implemented for Berkeley Sprite and BSD systems, there was no complete implementation for the current Linux kernel. In this paper, we present a complete implementation of the log-structured file system for the Linux kernel, which includes a user-space garbage collector and additional tools. We evaluate the measurements obtained in several test cases and compare the results with widely-used ext3.", acknowledgement = ack-nhfb, keywords = "garbage collection; Linux file systems; log-structured file systems", } @Book{Kong:2007:DBR, author = "Joseph Kong", title = "Designing {BSD} rootkits: an introduction to kernel hacking", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "xvii + 136", year = "2007", ISBN = "1-59327-142-5", ISBN-13 = "9781593271428", LCCN = "QA76.76.O63 K649 2007", bibdate = "Fri Sep 5 12:53:58 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/enhancements/fy0715/2007007644-d.html; http://www.loc.gov/catdir/toc/ecip0711/2007007644.html", acknowledgement = ack-nhfb, subject = "FreeBSD; Free computer software; Operating systems (Computers)", } @Book{Krawetz:2007:HUS, author = "Neal Krawetz", title = "Hacking {Ubuntu}: serious hacks, mods, and customizations", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xviii + 388", year = "2007", ISBN = "0-470-10872-X", ISBN-13 = "978-0-470-10872-7", LCCN = "QA76.76.O63 K742 2007", bibdate = "Mon Oct 29 18:40:46 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/enhancements/fy0741/2007003316-b.html; http://www.loc.gov/catdir/enhancements/fy0741/2007003316-d.html; http://www.loc.gov/catdir/toc/ecip079/2007003316.html", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Book{Kroah-Hartman:2007:LKN, author = "Greg Kroah-Hartman", title = "{Linux} kernel in a nutshell", publisher = pub-ORA, address = pub-ORA:adr, pages = "xiii + 182", year = "2007", ISBN = "0-596-10079-5", ISBN-13 = "978-0-596-10079-7", LCCN = "QA76.76.O63 K786 2007", bibdate = "Thu Sep 13 12:20:28 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.kroah.com/lkn/; http://www.loc.gov/catdir/enhancements/fy0728/2007274361-d.html; http://www.loc.gov/catdir/toc/fy0713/2007274361.html; http://www.oreilly.com/catalog/9780596100797", acknowledgement = ack-nhfb, subject = "Operating systems (Computers); Linux", } @Book{Lavigne:2007:BFB, author = "Dru Lavigne", title = "The Best of {FreeBSD} Basics", publisher = "Reed Media Services", address = "Marysville, WA, USA", pages = "595", year = "2007", ISBN = "0-9790342-2-1", ISBN-13 = "978-0-9790342-2-0", LCCN = "????", bibdate = "Thu Feb 14 14:01:48 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$35.90", URL = "http://reedmedia.net/books/freebsd-basics/", acknowledgement = ack-nhfb, } @Book{Love:2007:LSP, author = "Robert Love", title = "{Linux} system programming: system and library calls every programmer needs to know", publisher = pub-ORA, address = pub-ORA:adr, pages = "xvii + 368", year = "2007", ISBN = "0-596-00958-5 (paperback)", ISBN-13 = "978-0-596-00958-8 (paperback)", LCCN = "QA76.76.O63 L6735 2007; QA76.76.O63 L69 2007", bibdate = "Thu Jul 29 07:58:22 MDT 2010", bibsource = "catalog.lib.byu.edu:2200; http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9780596009588", acknowledgement = ack-nhfb, subject = "Linux", } @Book{Matzan:2007:FCC, author = "Jem Matzan", title = "The {FreeBSD 6.2} crash course", publisher = pub-ORA, address = pub-ORA:adr, year = "2007", ISBN = "0-596-51016-0", ISBN-13 = "978-0-596-51016-9", LCCN = "QA76.754.T53; QA76.754.T53 M38 2007eb", bibdate = "Tue Aug 5 17:53:44 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9780596510169", acknowledgement = ack-nhfb, subject = "FreeBSD; Free computer software; Computer networks", } @Book{Matzan:2007:OCC, author = "Jem Matzan", title = "The {OpenBSD 4.0} crash course", publisher = pub-ORA, address = pub-ORA:adr, pages = "????", year = "2007", ISBN = "0-596-51015-2", ISBN-13 = "978-0-596-51015-2", LCCN = "QA76.76.O63 M38 2007", bibdate = "Wed May 4 09:15:44 MDT 2011", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://proquest.safaribooksonline.com/0596510152; http://proquest.safaribooksonline.com/9780596510152", acknowledgement = ack-nhfb, subject = "UNIX (Computer file); Operating systems (Computers)", } @Book{McDougall:2007:SIS, author = "Richard McDougall and Jim Mauro", title = "{Solaris} internals: {Solaris 10} and {OpenSolaris} kernel architecture", publisher = "Sun Microsystems Press\slash Prentice Hall", address = "Upper Saddle River, NJ, USA", edition = "Second", pages = "xlvi + 1020", year = "2007", ISBN = "0-13-148209-2 (hardback)", ISBN-13 = "978-0-13-148209-8 (hardback)", LCCN = "QA76.76.O63 M37195 2007", bibdate = "Wed Apr 25 14:28:03 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/toc/ecip0613/2006015114.html", acknowledgement = ack-nhfb, remark = "See also first edition \cite{Mauro:2001:SIC}.", subject = "Operating systems (Computers); Solaris (Computer file)", } @Book{McDougall:2007:SPT, author = "Richard McDougall and Jim Mauro and Brendan Gregg", title = "{Solaris} performance and tools: {DTrace} and {MDB} techniques for {Solaris 10} and {OpenSolaris}", publisher = "Sun Microsystems Press\slash Prentice Hall", address = "Upper Saddle River, NJ", pages = "xl + 444", year = "2007", ISBN = "0-13-156819-1 (hardback)", ISBN-13 = "978-0-13-156819-8 (hardback)", LCCN = "QA76.76.O63 M3957 2007", bibdate = "Wed Apr 25 14:28:24 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/toc/ecip0615/2006020138.html", acknowledgement = ack-nhfb, subject = "Solaris (Computer file); Operating systems (Computers)", } @Book{Negus:2007:LBB, author = "Chris Negus", title = "{Linux} bible: boot up {Ubuntu}, {Fedora}, {KNOPPIX}, {Debian}, {SUSE}, and 11 other distributions", publisher = pub-WILEY, address = pub-WILEY:adr, edition = "2007", pages = "xxxi + 848", year = "2007", ISBN = "0-470-08279-8 (paper/DVD)", ISBN-13 = "978-0-470-08279-9 (paper/DVD)", LCCN = "QA76.76.O63 N422 2007", bibdate = "Mon Oct 29 18:40:51 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.loc.gov/catdir/toc/ecip078/2007000458.html", abstract = "The companion CD-ROM contains: Live CD's of Damn Small Linux, INSERT, SLAX, System Rescue CD, and Puppy Linux; Minimal install CDs of Debian, SUSE, and Gentoo Linux; and tar/gzip files for building Coyote Linux on a floppy disk. The companion DVD-ROM contains: The entire Fedora 6 Linux distribution, ready to install; bootable versions of KNOPPIX and BackTrack live CDs; combination live CD/installer for Ubuntu, Gentoo, and Mandriva Linux; Slackware Linux single install CD; ISO image for Freespire combination live/install CD.", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers); Syst\`emes d'exploitation (Ordinateurs)", } @Book{Negus:2007:LLC, author = "Chris Negus", title = "Live {Linux CDs}: building and customizing bootables", publisher = pub-PH, address = pub-PH:adr, pages = "xix + 430", year = "2007", ISBN = "0-13-243274-9 (paperback)", ISBN-13 = "978-0-13-243274-0 (paperback)", LCCN = "QA76.76.O63 N4245 2007", bibdate = "Mon Oct 29 18:48:09 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Negus live Linux series", URL = "http://www.loc.gov/catdir/toc/ecip0619/2006027573.html", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers); CD-Rs", } @Article{Ortiz-Tapia:2007:RRL, author = "Arturo Ortiz-Tapia", title = "A Recommended Resource for {Linux}-Based Companies", journal = j-IEEE-DISTRIB-SYST-ONLINE, volume = "8", number = "8", pages = "??--??", month = aug, year = "2007", CODEN = "????", ISSN = "1541-4922", bibdate = "Mon Aug 30 23:14:34 MDT 2010", bibsource = "http://computer.org/channels/ds; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://csdl.computer.org/comp/mags/ds/2007/08/mds2007080004.pdf", acknowledgement = ack-nhfb, } @Article{Pandey:2007:SCM, author = "Nirved Pandey and G. K. Sharma", title = "Startup comparison for message passing libraries with {DTM} on {Linux} clusters", journal = j-J-SUPERCOMPUTING, volume = "39", number = "1", pages = "59--72", month = jan, year = "2007", CODEN = "JOSUED", DOI = "http://dx.doi.org/10.1007/s11227-006-0004-5", ISSN = "0920-8542 (print), 1573-0484 (electronic)", ISSN-L = "0920-8542", bibdate = "Wed Jul 9 17:32:30 MDT 2008", bibsource = "http://springerlink.metapress.com/openurl.asp?genre=issue&issn=0920-8542&volume=39&issue=1; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.springerlink.com/openurl.asp?genre=article&issn=0920-8542&volume=39&issue=1&spage=59", acknowledgement = ack-nhfb, keywords = "Chameleon MPICH; Distributed Performance Index (DPI); Distributed Task Machine (DTM); High Performance Cluster (HPC); Message Passing Interface (MPI); MPI-- Parallel Virtual Machine (PVM); Relative Distributed Performance Index (RDPI)", } @Book{Pogue:2007:MXL, author = "David Pogue", title = "{Mac OS X Leopard} edition: the missing manual", publisher = pub-POGUE-PRESS-OREILLY, address = pub-POGUE-PRESS-OREILLY:adr, pages = "xvi + 893", year = "2007", ISBN = "0-596-52952-X", ISBN-13 = "9780596529529", LCCN = "QA76.76.O63 P634428 2007", bibdate = "Mon Aug 4 15:34:48 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Missing manual", URL = "http://www.loc.gov/catdir/enhancements/fy0715/2004558625-d.html; http://www.oreilly.com/catalog/9780596529529", acknowledgement = ack-nhfb, remark = "Covers Intel Macs and boot camp.", subject = "Mac OS; operating systems (computers); Macintosh (computer); programming", } @Book{Preston:2007:BR, author = "W. Curtis Preston", title = "Backup and recovery", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxviii + 729", year = "2007", ISBN = "0-596-10246-1 (paperback)", ISBN-13 = "978-0-596-10246-3 (paperback)", LCCN = "QA76.9.B32 P74 2007", bibdate = "Wed Jun 25 17:33:22 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.bibsys.no:2100/BIBSYS; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/enhancements/fy0715/2007273944-d.html; http://www.oreilly.com/catalog/9780596102463/index.html", acknowledgement = ack-nhfb, remark = "Inexpensive backup solutions for open systems. Covers Windows, Linux, Unix, and OS X.", subject = "electronic data processing; backup processing alternatives; database management; data recovery (computer science); data protection", tableofcontents = "Part 1. Introduction. The philosophy of backup \\ Backing it all up \\ Part 2. Open-source backup utilities. Basic backup and recovery utilities \\ Amanda \\ BackupPC \\ Bacula \\ Open-source near-CDP \\ Part 3. Commercial backup. Commercial backup utilities \\ Backup hardware \\ Part 4. Bare-metal recovery. Solaris bare-metal recovery \\ Linux and Windows \\ HP-UX bare-metal recovery \\ AIX bare-metal recovery \\ Mac OS X bare-metal recovery \\ Part 5. Database backup. Backing up databases \\ Oracle backup and recovery \\ Sybase backup and recovery \\ IBM DB2 backup and recovery \\ SQL server \\ Exchange \\ PostgreSQL \\ MySQL \\ Part 6. Potpourri. VMware and miscellanea \\ It's all about data protection", } @Article{Ramadan:2007:MTT, author = "Hany E. Ramadan and Christopher J. Rossbach and Donald E. Porter and Owen S. Hofmann and Aditya Bhandari and Emmett Witchel", title = "{MetaTM\slash TxLinux}: transactional memory for an operating system", journal = j-COMP-ARCH-NEWS, volume = "35", number = "2", pages = "92--103", month = may, year = "2007", CODEN = "CANED2", DOI = "http://doi.acm.org/10.1145/1250662.1250675", ISSN = "0163-5964 (ACM), 0884-7495 (IEEE)", bibdate = "Tue Jun 17 11:48:43 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This paper quantifies the effect of architectural design decisions on the performance of TxLinux. TxLinux is a Linux kernel modified to use transactions in place of locking primitives in several key subsystems. We run TxLinux on MetaTM, which is a new hardware-transaction memory (HTM) model. MetaTM contains features that enable efficient and correct interrupt handling for an x86-like architecture. Live stack overwrites can corrupt non-transactional stack memory and requires a small change to the transaction register checkpoint hardware to ensure correct operation of the operating system. We also propose stack based early release to reduce spurious conflicts on stack memory between kernel code and interrupt handlers. We use MetaTM to examine the performance sensitivity of individual architectural features. For TxLinux we find that Polka and SizeMatters are effective contention management policies, some form of backoff on transaction contention is vital for performance,and stalling on a transaction conflict reduces transaction restart rates, but does not improve performance. Transaction write sets are small, and performance is insensitive to transaction abort costs but sensitive to commit costs.", acknowledgement = ack-nhfb, keywords = "MetaTM; OS support; transactional memory; TxLinux", } @Book{Rash:2007:LFA, author = "Michael Rash", title = "{Linux} firewalls: attack detection and response with {{\tt iptables}}, {{\tt psad}}, and {{\tt fwsnort}}", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "xix + 308", year = "2007", ISBN = "1-59327-141-7", ISBN-13 = "978-1-59327-141-1", LCCN = "QA76.9.A25 R36 2007", bibdate = "Tue Aug 5 18:20:08 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9781593271411", acknowledgement = ack-nhfb, subject = "Computers; Access control; Firewalls (Computer security); Linux", } @Book{Rosen:2007:UCR, author = "Kenneth H. Rosen and Douglas Host and Rachel Klee and James Farber and Richard Rosinski", title = "{UNIX}: the complete reference", publisher = pub-OSBORNE-MCGRAW-HILL, address = pub-OSBORNE-MCGRAW-HILL:adr, year = "2007", ISBN = "0-07-226336-9", ISBN-13 = "978-0-07-226336-7", LCCN = "????", bibdate = "Thu Apr 19 18:21:07 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; sirsi.library.utoronto.ca:2200/UNICORN", URL = "http://www.unixreview.com/documents/s=10125/ur0704c/", acknowledgement = ack-nhfb, } @Article{Rossbach:2007:TUM, author = "Christopher J. Rossbach and Owen S. Hofmann and Donald E. Porter and Hany E. Ramadan and Bhandari Aditya and Emmett Witchel", title = "{TxLinux}: using and managing hardware transactional memory in an operating system", journal = j-OPER-SYS-REV, volume = "41", number = "6", pages = "87--102", month = dec, year = "2007", CODEN = "OSRED8", DOI = "http://doi.acm.org/10.1145/1294261.1294271", ISSN = "0163-5980", bibdate = "Fri Jun 20 17:18:34 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "TxLinux is a variant of Linux that is the first operating system to use hardware transactional memory (HTM) as a synchronization primitive, and the first to manage HTM in the scheduler. This paper describes and measures TxLinux and discusses two innovations in detail: cooperation between locks and transactions, and the integration of transactions with the OS scheduler. Mixing locks and transactions requires a new primitive, cooperative transactional spinlocks (cxspinlocks) that allow locks and transactions to protect the same data while maintaining the advantages of both synchronization primitives. Cxspinlocks allow the system to attempt execution of critical regions with transactions and automatically roll back to use locking if the region performs I/O. Integrating the scheduler with HTM eliminates priority inversion. On a series of real-world benchmarks TxLinux has similar performance to Linux, exposing concurrency with as many as 32 concurrent threads on 32 CPUs in the same critical region.", acknowledgement = ack-nhfb, keywords = "MetaTM; operating systems; optimistic concurrency; synchronization; transactional memory; TxLinux", } @Book{Sanghera:2007:SEQ, author = "Paul Sanghera", title = "{SCSA} Exam Quicklet: {Sun Certified System Administrator for Solaris 10} Practice Exams", publisher = "Infonential, Inc.", address = "????", pages = "274 (est.)", year = "2007", ISBN = "0-9791797-0-X", ISBN-13 = "978-0-9791797-0-9", LCCN = "????", bibdate = "Wed Jan 02 16:40:01 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Schroder:2007:LNC, author = "Carla Schroder", title = "{Linux} networking cookbook", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxiii + 612", year = "2007", ISBN = "0-596-10248-8 (paperback)", ISBN-13 = "978-0-596-10248-7 (paperback)", LCCN = "TK5105.5 .S384 2007", bibdate = "Wed Apr 30 17:58:33 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.bibsys.no:2100/BIBSYS; z3950.loc.gov:7090/Voyager", URL = "http://www.oreilly.com/catalog/9780596102487", acknowledgement = ack-nhfb, subject = "computer networks; Linux", } @Book{Singh:2007:MXI, author = "Amit Singh", title = "{Mac OS X} internals: a systems approach", publisher = pub-AW, address = pub-AW:adr, pages = "xxxiii + 1641", year = "2007", ISBN = "0-321-27854-2 (hardback)", ISBN-13 = "978-0-321-27854-8 (hardback)", LCCN = "QA76.76.O63 S5645 2007", bibdate = "Fri May 4 15:21:07 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.loc.gov/catdir/toc/ecip0613/2006014901.html", acknowledgement = ack-nhfb, subject = "Mac OS; Operating systems (Computers); Macintosh (Computer); Programming", } @Book{Sprang:2007:XVL, editor = "Henning Sprang", title = "{Xen: Virtualisierung unter Linux}. ({German}) [{Xen}: Virtualization under {Linux}]", publisher = "Open Source Press", address = "M{\"u}nchen, Germany", pages = "350", year = "2007", ISBN = "3-937514-29-5", ISBN-13 = "978-3-937514-29-1", LCCN = "????", bibdate = "Mon May 17 09:05:00 MDT 2010", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://deposit.ddb.de/cgi-bin/dokserv?id=2809360", acknowledgement = ack-nhfb, language = "German", subject = "Linux; Xen 3", } @Article{Stanik:2007:NGD, author = "John Stanik", title = "News 2.0: {Googlebombs} Away; {DST}: This Year's {Y2K}?; {Linux} through {Windows}", journal = j-QUEUE, volume = "5", number = "2", pages = "7--7", month = mar, year = "2007", CODEN = "AQCUAE", DOI = "http://doi.acm.org/10.1145/1229899.1229901", ISSN = "1542-7730 (print), 1542-7749 (electronic)", ISSN-L = "1542-7730", bibdate = "Fri Jun 20 11:15:25 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Taking a second look at the news so you don't have to", acknowledgement = ack-nhfb, } @Article{State:2007:REL, author = "Radu State", title = "Review of {`Embedded Linux Primer: A Practical Real-world Approach' by Christopher Hallinan, Prentice Hall PTR, 2006, \$44.99, ISBN 0-13-167984-8}", journal = j-QUEUE, volume = "5", number = "3", pages = "44--44", month = apr, year = "2007", CODEN = "AQCUAE", DOI = "http://doi.acm.org/10.1145/1242489.1242503", ISSN = "1542-7730 (print), 1542-7749 (electronic)", ISSN-L = "1542-7730", bibdate = "Fri Jun 20 11:15:55 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "See \cite{Hallinan:2007:ELP}.", acknowledgement = ack-nhfb, } @Book{Sweetman:2007:SMR, author = "Dominic Sweetman", title = "See {MIPS} run", publisher = pub-MORGAN-KAUFMANN, address = pub-MORGAN-KAUFMANN:adr, edition = "Second", pages = "xix + 492", year = "2007", ISBN = "0-12-088421-6", ISBN-13 = "978-0-12-088421-6", LCCN = "QA76.9.A73 S88 2007", bibdate = "Thu Jun 20 10:21:55 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "Embedded computer systems --- Programming; MIPS (Computer architecture); RISC microprocessors", tableofcontents = "Ch. 1. RISCs and MIPS architectures P.1\\ Ch. 2. MIPS architecture p. 29\\ Ch. 3. Coprocessor 0 : MIPS processor control p. 53\\ Ch. 4. How caches work on MIPS processors p. 79\\ Ch. 5. Exceptions, interrupts, and initialization p. 105\\ Ch. 6. Low-level memory management and the TLB p. 131\\ Ch. 7. Floating-point support p. 151\\ Ch. 8. Complete guide to the MIPS instruction set p. 183\\ Ch. 9. Reading MIPS assembly language p. 263\\ Ch. 10. Porting software to the MIPS architecture p. 279\\ Ch. 11. MIPS software standards (ABIs) p. 311\\ Ch. 12. Debugging MIPS designs - debug and profiling features p. 339\\ Ch. 13. GNU/Linux from eight miles high p. 363\\ Ch. 14. How hardware and software work together p. 371\\ Ch. 15. MIPS specific issues in the Linux kernel p. 399\\ Ch. 16. Linux application code, PIC, and libraries p. 409\\ App. A. MIPS multithreading p. 415\\ App. B. Other optional extensions to the MIPS instruction set", } @Article{Torrey:2007:CIL, author = "Lisa A. Torrey and Joyce Coleman and Barton P. Miller", title = "A comparison of interactivity in the {Linux 2.6} scheduler and an {MLFQ} scheduler", journal = j-SPE, volume = "37", number = "4", pages = "347--364", day = "10", month = apr, year = "2007", CODEN = "SPEXBL", DOI = "http://dx.doi.org/10.1002/spe.772", ISSN = "0038-0644 (print), 1097-024X (electronic)", bibdate = "Wed Oct 17 18:33:14 MDT 2007", bibsource = "http://www.interscience.wiley.com/jpages/0038-0644; http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www3.interscience.wiley.com/journalfinder.html", acknowledgement = ack-nhfb, onlinedate = "24 Oct 2006", } @Article{Toxen:2007:SDS, author = "Bob Toxen", title = "The seven deadly sins of {Linux} security", journal = j-QUEUE, volume = "5", number = "4", pages = "38--47", month = may # "-" # jun, year = "2007", CODEN = "AQCUAE", DOI = "http://doi.acm.org/10.1145/1255421.1255423", ISSN = "1542-7730 (print), 1542-7749 (electronic)", ISSN-L = "1542-7730", bibdate = "Fri Jun 20 11:16:37 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Avoid these common security risks like the devil", acknowledgement = ack-nhfb, } @Book{vonHagen:2007:ULB, author = "William von Hagen", title = "{Ubuntu Linux} bible", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxvi + 904", year = "2007", ISBN = "0-470-03899-3, 0-470-12454-7 (electronic book)", ISBN-13 = "978-0-470-03899-4, 978-0-470-12454-3 (electronic book)", LCCN = "QA76.76.O63 V685 2007eb", bibdate = "Mon Oct 29 18:40:51 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", tableofcontents = "Introduction \\ Who Should Read This Book \\ How This Book Is Organized \\ Conventions Used in This Book \\ Getting an Ubuntu CD-ROM Part I: Getting Started with Ubuntu Linux \\ Chapter 1: The Ubuntu Linux Project \\ Background \\ Introducing Ubuntu Linux \\ Why Choose Ubuntu? \\ Installation Requirements \\ Ubuntu CDs \\ Support for Ubuntu Linux \\ Getting More Information About Ubuntu \\ Summary \\ Chapter 2: Installing Ubuntu \\ Getting a 64-bit or PPC Desktop CD \\ Booting the Desktop CD \\ Installing Ubuntu Linux from the Desktop CD \\ Test-Driving Ubuntu Linux \\ Installing Windows Programs from the Desktop CD \\ Summary \\ Chapter 3: Installing Ubuntu on Special-Purpose Systems \\ Overview of Dual-Boot Systems \\ Getting a Different Install CD \\ Booting from a Server or Alternate Install CD \\ Install Options on the Server Install CD \\ Install Options on the Alternate Install CD \\ Summary Part II: Ubuntu for Desktop Users \\ Chapter 4: Basic Linux System Concepts \\ Working with Files and Directories \\ Introduction to Linux Filesystems \\ Working with Partitions and Filesystems \\ Understanding Linux Permissions \\ Summary \\ Chapter 5: Using the GNOME Desktop \\ What s a Desktop? Graphical Environments for Linux \\ Using the Mouse \\ GNOME Desktop Overview \\ GNOME Application Windows \\ Menus in GNOME \\ Customizing Your Desktop \\ GNOME Keyboard Shortcuts \\ Introducing the Nautilus File Manager \\ Using a Window Manager \\ Summary \\ Chapter 6: Using Command-Line Tools \\ Why Use the Command Line? \\ Executing Commands from the Command Line \\ What s a Shell? \\ Getting to a Shell \\ Popular Command-Line Commands \\ Working with the Bash Shell \\ Summary \\ Chapter 7: Working with Text Files on Ubuntu \\ Introduction to Linux Text Editors \\ Using vi \\ Using emacs \\ Using gedit \\ Other Text Editors for Ubuntu \\ Summary \\ Chapter 8: Reading and Sending Mail with Evolution \\ Starting Evolution \\ Using the Evolution Setup Assistant \\ Sending and Receiving Mail \\ Filtering Incoming Mail \\ Additional Sources of Information About Evolution \\ Summary \\ Chapter 9: Surfing the Web with Firefox \\ A Quick History of Firefox \\ Starting Firefox \\ The Firefox User Interface \\ Configuring Firefox \\ Working with Bookmarks \\ Enhancing Firefox \\ Summary \\ Chapter 10: Creating and Publishing Documents \\ Using Document Markup Languages on Ubuntu \\ Word Processing with OpenOffice.org Writer \\ Desktop Publishing with Scribus \\ Other Word Processors and Office Suites for Linux \\ Summary \\ Chapter 11: Other Office Software: Spreadsheets and Presentations \\ Introduction to Spreadsheets: A Quick Tutorial \\ Using Gnumeric \\ Using OpenOffice.org Calc \\ Using OpenOffice.org Impress \\ Summary \\ Chapter 12: Working with Graphics \\ Overview of Digital Graphics Terminology \\ Using GIMP \\ Using OpenOffice.org Draw \\ Using Inkscape for Vector Graphics \\ Summary \\ Chapter 13: Working with Multimedia \\ Overview of Digital Audio and Video Terminology \\ Configuring Sound Devices, Levels, and System Sounds \\ Installing the gstreamer Framework and Plug-ins \\ Working with CDs \\ Working with Other Audio Sources \\ Working with DVDs on Ubuntu \\ Summary", } @Article{Webb:2007:PSR, author = "A. M. Webb and R. Mansell and J. W. Knight and S. J. Greenspan and D. B. Emmes", title = "Practical software reuse for {IBM System z} {I/O} subsystems", journal = j-IBM-JRD, volume = "51", number = "1/2", pages = "229--??", month = jan # " \slash " # mar, year = "2007", CODEN = "IBMJAE", ISSN = "0018-8646 (print), 2151-8556 (electronic)", bibdate = "Fri Feb 9 20:31:06 MST 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.research.ibm.com/journal/", URL = "http://www.research.ibm.com/journal/rd/511/webb.html", abstract = "The design and implementation of the z/VM SCSI (Small Computer System Interface) I/O subsystem is described. z/VM is an operating system that provides multiple virtual IBM System z machines on a single IBM System z computer. The approach adopted herein allows the reuse of entire device drivers from AIX 5Le, a completely different operating system, essentially unchanged. AIX 5L is the IBM UNIX operating system for the IBM System pe platform. The design, and much of the implemented code that allows the incorporation of such ``foreign'' device drivers, is independent of both z/VM and AIX 5L and could potentially be used in other operating system environments.", acknowledgement = ack-nhfb, ordernumber = "????", } @Article{Zee:2007:ISZ, author = "M. Zee and J. W. Stevens and B. L. Thompson and J. A. Fowler and J. Goldman and P. T. Chan and T. P. McSweeney", title = "{IBM System z9} Open Systems Adapter for Communication Controller for {Linux}", journal = j-IBM-JRD, volume = "51", number = "1/2", pages = "119--130", month = jan # " \slash " # mar, year = "2007", CODEN = "IBMJAE", ISSN = "0018-8646 (print), 2151-8556 (electronic)", bibdate = "Fri Feb 9 20:31:06 MST 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.research.ibm.com/journal/", URL = "http://www.research.ibm.com/journal/rd/511/zee.html", abstract = "The IBM 374x Communication Controllers, and the NCP (network control program) software that runs on them, have been at the center of the IBM SNA (Systems Network Architecture) for many years. However, the 374x hardware is no longer being produced. In order to continue to offer IBM customers various functions provided by the NCP product, IBM has developed a Communication Controller for Linux (CCL) for the IBM System z. CCL is a software program that emulates the 374x hardware, enabling the NCP to function in Linux. IBM customers now have the ability to migrate their NCP product to a Linux partition on System z. The current NCP product, running on an IBM 374x Communication Controller, supports both host channel and network attachment. The channel protocol used for the host-channel support is referred to as channel data link control (CDLC). In order to provide the System z9e host operating systems with the ability to attach to the new CCL NCP over a channel interface, a new channel adapter is required. The new innovative Open Systems Adapter for NCP (OSN) channel support provided by the OSA-Express2 allows various operating systems on the same System z9 to attach ``internally'' to the CCL without using any external network or channel fabric.", acknowledgement = ack-nhfb, ordernumber = "????", } @Article{Ben-Yehuda:2008:MGR, author = "Muli Ben-Yehuda and Eric Van Hensbergen and Marc Fiuczynski", title = "Minding the gap: {R\&D} in the {Linux} kernel", journal = j-OPER-SYS-REV, volume = "42", number = "5", pages = "1--3", month = jul, year = "2008", CODEN = "OSRED8", DOI = "http://doi.acm.org/10.1145/1400097.1400098", ISSN = "0163-5980", bibdate = "Wed Aug 6 16:54:12 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "The Linux kernel, since its inception in 1991, has captured the interest of many thousands of developers and millions of users. It recently celebrated its 16th anniversary, includes many millions of lines of code, and is used in production systems around the world. It is also advancing at an increasingly rapid pace, undergoing many changes every single day. Indeed the kernel's importance to many large corporations has sparked a high level of contribution by those companies [3] [4], including the employment of many core kernel developers. Recently Linus Torvalds published statistics relating to contributions to the kernel over the past three years: 96,885 patches attributed to 4068 distinct authors have been accepted [5].", acknowledgement = ack-nhfb, } @Article{Bhattiprolu:2008:VSC, author = "Sukadev Bhattiprolu and Eric W. Biederman and Serge Hallyn and Daniel Lezcano", title = "Virtual servers and checkpoint\slash restart in mainstream {Linux}", journal = j-OPER-SYS-REV, volume = "42", number = "5", pages = "104--113", month = jul, year = "2008", CODEN = "OSRED8", DOI = "http://doi.acm.org/10.1145/1400097.1400109", ISSN = "0163-5980", bibdate = "Wed Aug 6 16:54:12 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Virtual private servers and application checkpoint and restart are two advanced operating system features which place different but related requirements on the way kernel-provided resources are accessed by userspace. In Linux, kernel resources, such as process IDs and SYSV shared messages, have traditionally been identified using global tables. Since 2005, these tables have gradually been transformed into per-process namespaces in order to support both resource availability on application restart and virtual private server functionality. Due to inherent differences in the resources themselves, the semantics of namespace cloning differ for many of the resources. This paper describes the existing and proposed namespaces as well as their uses.", acknowledgement = ack-nhfb, keywords = "checkpoint; mobility; reliability; restart; security; survivability; virtualization", } @Book{Blum:2008:LCL, author = "Richard Blum", title = "{Linux} command line and shell scripting bible", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxx + 809", year = "2008", ISBN = "0-470-25128-X (paperback)", ISBN-13 = "978-0-470-25128-7 (paperback)", LCCN = "QA76.76.O63 B598 2008", bibdate = "Mon Aug 23 13:58:20 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/enhancements/fy0827/2008012238-d.html; http://www.loc.gov/catdir/enhancements/fy0827/2008012238-t.html; http://www.loc.gov/catdir/enhancements/fy0828/2008012238-b.html", abstract = "A guide to the Linux command line and shell scripts covers such topics as using Linux environment variables, working with editors, using structured commands, handling user input, creating functions, and working with Regular Expressions.", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers); Scripting languages (Computer science)", tableofcontents = "Introduction \\ Part I. The Linux Command Line. Chapter 1: Starting with Linux Shells \\ Chapter 2: Getting to the Shell \\ Chapter 3: Basic bash Shell Commands \\ Chapter 4: More bash Shell Commands \\ Chapter 5: Using Linux Environment Variables. \\ Chapter 6: Understanding Linux File Permissions \\ Chapter 7: Working with Editors \\ Part II. Shell Scripting Basics. \\ Chapter 8: Basic Script Building \\ Chapter 9: Using Structured Commands \\ Chapter 10: More Structured Commands \\ Chapter 11: Handling User Input \\ Chapter 12: Presenting Data \\ Chapter 13: Script Control \\ Part III. Advanced Shell Scripting \\ Chapter 14: Creating Functions \\ Chapter 15: Adding Color to Scripts \\ Chapter 16: Introducing sed and gawk \\ Chapter 17: Regular Expressions \\ Chapter 18: Advanced sed \\ Chapter 19: Advanced gawk \\ Part IV. Alternative Linux Shells \\ Chapter 20: The ash Shell \\ Chapter 21: The tcsh Shell \\ Chapter 22: The Korn Shell \\ Chapter 23: The zsh Shell \\ Part V. Advanced Topics \\ Chapter 24: Using a Database \\ Chapter 25: Using the Web \\ Chapter 26: Using E-Mail \\ Chapter 27: Shell Scripts for Administrators \\ Appendixes", } @Book{Calkins:2008:SSA, author = "Bill Calkins", title = "{Solaris 10} system administration: {CX-310-200}, Part 1", publisher = pub-QUE, address = pub-QUE:adr, pages = "xix + 738", year = "2008", ISBN = "0-7897-3790-6 (paperback)", ISBN-13 = "978-0-7897-3790-8 (paperback)", LCCN = "X08.E03772", bibdate = "Tue Dec 9 11:19:16 MST 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; library.ox.ac.uk:210/ADVANCE", series = "Exam prep", acknowledgement = ack-nhfb, remark = "Accompanied by CD-ROM entitled: ExamGear.", subject = "Solaris (computer file); operating systems (computers); examinations; study guides; electronic data processing personnel; certification", } @Article{deBruijn:2008:PFL, author = "Willem de Bruijn and Herbert Bos", title = "{PipesFS}: fast {Linux I/O} in the {Unix} tradition", journal = j-OPER-SYS-REV, volume = "42", number = "5", pages = "55--63", month = jul, year = "2008", CODEN = "OSRED8", DOI = "http://doi.acm.org/10.1145/1400097.1400104", ISSN = "0163-5980", bibdate = "Wed Aug 6 16:54:12 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This paper presents PipesFS, an I/O architecture for Linux 2.6 that increases I/O throughput and adds support for heterogeneous parallel processors by (1) collapsing many I/O interfaces onto one: the Unix pipeline, (2) increasing pipe efficiency and (3) exploiting pipeline modularity to spread computation across all available processors.\par PipesFS extends the pipeline model to kernel I/O and communicates with applications through a Linux virtual filesystem (VFS), where directory nodes represent operations and pipe nodes export live kernel data. Users can thus interact with kernel I/O through existing calls like mkdir, tools like grep, most languages and even shell scripts. To support performance critical tasks, PipesFS improves pipe throughput through copy, context switch and cache miss avoidance. To integrate heterogeneous processors (e.g., the Cell) it transparently moves operations to the most efficient type of core.", acknowledgement = ack-nhfb, } @Article{Dolstra:2008:NPF, author = "Eelco Dolstra and Andres L{\"o}h", title = "{NixOS}: a purely functional {Linux} distribution", journal = j-SIGPLAN, volume = "43", number = "9", pages = "367--378", month = sep, year = "2008", CODEN = "SINODQ", DOI = "http://doi.acm.org/10.1145/1411204.1411255", ISSN = "0362-1340 (print), 1523-2867 (print), 1558-1160 (electronic)", ISSN-L = "0362-1340", bibdate = "Tue Sep 23 17:31:25 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Existing package and system configuration management tools suffer from an {\em imperative model}, where system administration actions such as upgrading packages or changes to system configuration files are stateful: they destructively update the state of the system. This leads to many problems, such as the inability to roll back changes easily, to run multiple versions of a package side-by-side, to reproduce a configuration deterministically on another machine, or to reliably upgrade a system. In this paper we show that we can overcome these problems by moving to a {\em purely functional system configuration model}. This means that all static parts of a system (such as software packages, configuration files and system startup scripts) are built by pure functions and are immutable, stored in a way analogously to a heap in a purely function language. We have implemented this model in {\em NixOS}, a non-trivial Linux distribution that uses the {\em Nix package manager\/} to build the entire system configuration from a purely functional specification.", acknowledgement = ack-nhfb, keywords = "nix; NixOS; package management; purely functional deployment model; purely functional language; software deployment; system configuration management", } @Book{Edge:2008:FMX, author = "Charles S. Edge and William Barker and Zack Smith", title = "Foundations of {Mac OS X Leopard} security: [{Mac OS X} client and server security, from the home to the enterprise]", publisher = pub-APRESS, address = pub-APRESS:adr, pages = "xxix + 455", year = "2008", ISBN = "1-59059-989-6 (paperback)", ISBN-13 = "978-1-59059-989-1 (paperback)", LCCN = "????", bibdate = "Tue Aug 19 15:29:48 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk", series = "The expert's voice in Mac OS X", acknowledgement = ack-nhfb, } @Article{Fengguang:2008:DNL, author = "WU Fengguang and XI Hongsheng and XU Chenfeng", title = "On the design of a new {Linux} readahead framework", journal = j-OPER-SYS-REV, volume = "42", number = "5", pages = "75--84", month = jul, year = "2008", CODEN = "OSRED8", DOI = "http://doi.acm.org/10.1145/1400097.1400106", ISSN = "0163-5980", bibdate = "Wed Aug 6 16:54:12 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "As Linux runs an increasing variety of workloads, its in-kernel readahead algorithm has been challenged by many unexpected and subtle problems. To name a few: readahead thrashings arise when readahead pages are evicted prematurely under memory pressure; readahead attempts on already cached pages are undesirable; interrupted-then-retried reads and locally disordered NFS reads that can easily fool the sequential detection logic. In this paper, we present a new Linux readahead framework with flexible and robust heuristics that can cover varied sequential I/O patterns. It also enjoys great simplicity by handling most abnormal cases in an implicit way. We demonstrate its advantages by a host of case studies. Network throughput is 3 times better in the case of thrashing and 1.8 times better for large NFS files. On serving large files with lighttpd, the disk utilization is decreased by 26\% while providing 17\% more network throughput.", acknowledgement = ack-nhfb, keywords = "access pattern; caching; I/O performance; Linux; operating systems; prefetching; readahead; sequentiality; thrashing", } @Book{Ferguson:2008:REC, editor = "Justin Ferguson and Dan Kaminsky and Jason Larsen and others", title = "Reverse engineering code with {IDA Pro}", publisher = pub-SYNGRESS, address = pub-SYNGRESS:adr, pages = "xii + 316", year = "2008", ISBN = "1-59749-237-X", ISBN-13 = "978-1-59749-237-9", LCCN = "QA76.76.D57 R49 2008", bibdate = "Tue Dec 9 11:21:37 MST 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.bibsys.no:2100/BIBSYS", acknowledgement = ack-nhfb, subject = "Data security", tableofcontents = "Chapter 1 Introduction \\ Chapter 2 Assembly and Reverse Engineering Basics \\ Chapter 3 Portable Executable and Executable \\ Chapter 4 Walkthroughs One and Two \\ Chapter 5 Debugging \\ Chapter 6 Anti-Reversing \\ Chapter 7 Walkthrough Four \\ Chapter 8 Advanced Walkthrough \\ Chapter 9 IDA Scripting and Plug-ins", } @Article{Ganti:2008:PAL, author = "Ashwin Ganti", title = "{Plan 9} authentication in {Linux}", journal = j-OPER-SYS-REV, volume = "42", number = "5", pages = "27--33", month = jul, year = "2008", CODEN = "OSRED8", DOI = "http://doi.acm.org/10.1145/1400097.1400101", ISSN = "0163-5980", bibdate = "Wed Aug 6 16:54:12 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "In Linux, applications like su and login currently run as root in order to access authentication information and set or alter the identity of the process. In such cases, if the application is compromised while running as a privileged user, the entire system can become vulnerable. An alternative approach is taken by the Plan 9 operating system from Bell Labs, which runs such applications as a non-privileged user and relies on a kernel-based capability device working in coordination with an authentication server to provide the same services. This avoids the risk of an application vulnerability becoming a system vulnerability.\par This paper discusses the extension of Linux authentication mechanisms to allow the use of the Plan 9 approach with existing Linux applications in order to reduce the security risks mentioned earlier. It describes the port of the Plan 9 capability device as a character device driver for the Linux kernel. It also describes the port of the Plan 9 authentication server and the implementation of a PAM module which allows the use of these new facilities. {\em It is now possible to restrain processes like login and su from the uncontrolled setuid bit and make them run on behalf of an unprivileged user in Linux}.", acknowledgement = ack-nhfb, keywords = "authentication", } @Book{Gift:2008:PUL, author = "Noah Gift and Jeremy M. Jones", title = "{Python} for {Unix} and {Linux} system administration", publisher = pub-ORA, address = pub-ORA:adr, pages = "xix + 433", year = "2008", ISBN = "0-596-51582-0", ISBN-13 = "9780-596-5158-2-9", LCCN = "QA76.73.P98 G54 2008", bibdate = "Thu Apr 16 10:53:11 MDT 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.bibsys.no:2100/BIBSYS", acknowledgement = ack-nhfb, } @Book{Gove:2008:SAP, author = "Darryl Gove", title = "{Solaris} application programming", publisher = pub-SUN-MICROSYSTEMS-PRESS, address = pub-SUN-MICROSYSTEMS-PRESS:adr, pages = "xxii + 468", year = "2008", ISBN = "0-13-813455-3 (hardcover)", ISBN-13 = "978-0-13-813455-6 (hardcover)", LCCN = "QA76.76.O63 G688 2008", bibdate = "Fri Sep 5 12:52:55 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Solaris (computer file); operating systems (computers); application software; development; system design", } @Article{Guniguntala:2008:RCU, author = "D. Guniguntala and P. E. McKenney and J. Triplett and J. Walpole", title = "The read-copy-update mechanism for supporting real-time applications on shared-memory multiprocessor systems with {Linux}", journal = j-IBM-SYS-J, volume = "47", number = "2", pages = "221--??", month = apr # "\slash " # jun, year = "2008", CODEN = "IBMSA7", ISSN = "0018-8670", bibdate = "Mon Jul 7 21:42:12 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.research.ibm.com/journal/", URL = "http://www.research.ibm.com/journal/sj/472/guniguntala.html", acknowledgement = ack-nhfb, } @Book{Hansteen:2008:BPN, author = "Peter N. M. Hansteen", title = "The book of {PF}: a no-nonsense guide to the {OpenBSD} firewall", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "xix + 159", year = "2008", ISBN = "1-59327-165-4 (paperback)", ISBN-13 = "978-1-59327-165-7 (paperback)", LCCN = "TK5105.585 .H385 2008", bibdate = "Thu Feb 14 12:28:27 MST 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "OpenBSD (Electronic resource); TCP/IP (Computer network protocol); Firewalls (Computer security)", tableofcontents = "What PF is \\ Let's get on with it \\ Into the real world \\ Wireless networks made easy \\ Bigger or trickier networks \\ Turning the tables for proactive defense \\ Queues, shaping, and redundancy \\ Logging, monitoring, and statistics \\ Getting your setup just right.", } @Article{Hart:2008:RTL, author = "D. Hart and J. Stultz and T. Ts'o", title = "{Real-time Linux} in real time", journal = j-IBM-SYS-J, volume = "47", number = "2", pages = "207--??", month = apr # "\slash " # jun, year = "2008", CODEN = "IBMSA7", ISSN = "0018-8670", bibdate = "Mon Jul 7 21:42:12 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.research.ibm.com/journal/", URL = "http://www.research.ibm.com/journal/sj/472/hart.html", acknowledgement = ack-nhfb, } @Book{Hillegass:2008:CPM, author = "Aaron Hillegass", title = "{Cocoa} Programming for {Mac OS X}", publisher = pub-AW, address = pub-AW:adr, edition = "Third", pages = "496 (est.)", year = "2008", ISBN = "0-321-50361-9", ISBN-13 = "978-0-321-50361-9", bibdate = "Thu Feb 14 13:56:02 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$", acknowledgement = ack-nhfb, } @Book{Hong:2008:BSF, author = "Bryan Hong", title = "Building a Server with {FreeBSD 7}: a modular approach", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "xx + 264", year = "2008", ISBN = "1-59327-145-X", ISBN-13 = "978-1-59327-145-9", LCCN = "QA76.76.O63 H6694 2008", bibdate = "Wed Apr 30 17:56:56 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$29.95", URL = "http://www.loc.gov/catdir/enhancements/fy0715/2007000276-d.html; http://www.loc.gov/catdir/toc/ecip078/2007000276.html", acknowledgement = ack-nhfb, subject = "FreeBSD; Free computer software; Operating systems (Computers); Client/server computing", } @Book{Hudson:2008:ULU, author = "Andrew Hudson and Paul Hudson", title = "{Ubuntu 7.10 Linux} unleashed", publisher = pub-SAMS, address = pub-SAMS:adr, edition = "Third", pages = "xxiv + 811", year = "2008", ISBN = "0-672-32969-7 (paperback)", ISBN-13 = "978-0-672-32969-2 (paperback)", LCCN = "QA76.76.O63 H81665 2008", bibdate = "Mon Jul 5 17:26:09 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Ubuntu (electronic resource); Linux; operating systems (computers)", } @Article{Janakiram:2008:OOW, author = "D. Janakiram and Ashok Gunnam and N. Suneetha and Vineet Rajani and K. Vinay Kumar Reddy", title = "Object-oriented wrappers for the {Linux} kernel", journal = j-SPE, volume = "38", number = "13", pages = "1411--1427", day = "10", month = nov, year = "2008", CODEN = "SPEXBL", DOI = "http://dx.doi.org/10.1002/spe.879", ISSN = "0038-0644 (print), 1097-024X (electronic)", bibdate = "Wed Mar 17 09:55:31 MDT 2010", bibsource = "http://www.interscience.wiley.com/jpages/0038-0644; http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www3.interscience.wiley.com/journalfinder.html", acknowledgement = ack-nhfb, onlinedate = "Apr 21 2008 9:57AM", } @Book{Janert:2008:GAU, author = "Philipp Janert", title = "{Gnuplot} in Action: Understanding Data with Graphs", publisher = pub-MANNING, address = pub-MANNING:adr, pages = "275 (est.)", year = "2008", ISBN = "1-933988-39-8", ISBN-13 = "978-1-933988-39-9", LCCN = "????", bibdate = "Wed Jul 09 19:14:41 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$35.00", acknowledgement = ack-nhfb, } @Book{Jepson:2008:MXU, author = "Brian Jepson and Richard Rosen and Ernest E. Rothman", title = "{Mac OS X} for {Unix} geeks", publisher = pub-ORA, address = pub-ORA:adr, edition = "Fourth", pages = "xviii + 406", year = "2008", ISBN = "0-596-52062-X", ISBN-13 = "978-0-596-52062-5", LCCN = "????", bibdate = "Tue Apr 14 14:31:49 MDT 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.bibsys.no:2100/BIBSYS", acknowledgement = ack-nhfb, remark = "Now covers Leopard.", } @Book{Kuehne:2008:OPM, author = "Robert P. Kuehne and J. D. Sullivan", title = "{OpenGL} programming on {Mac OS X}: architecture, performance, and integration", publisher = pub-AW, address = pub-AW:adr, pages = "xxxii + 330", year = "2008", ISBN = "0-321-35652-7 (paperback)", ISBN-13 = "978-0-321-35652-9 (paperback)", LCCN = "T385 .K82 2008", bibdate = "Mon Aug 4 15:34:25 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/toc/ecip0714/2007011974.html", acknowledgement = ack-nhfb, subject = "Computer graphics; OpenGL; Mac OS", } @Book{Lucas:2008:AFC, author = "Michael Lucas", title = "Absolute {FreeBSD}: the complete guide to {FreeBSD}", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, edition = "Second", pages = "xxx + 709", year = "2008", ISBN = "1-59327-151-4 (paperback)", ISBN-13 = "978-1-59327-151-0 (paperback)", LCCN = "QA76.76.O63 L83 2008", bibdate = "Wed Apr 30 17:58:54 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "FreeBSD; UNIX (Computer file); Internet service providers; computer programs; web servers; client/server computing", } @Book{Lyon:2008:NNS, author = "Gordon Fyodor Lyon", title = "{Nmap} network scanning: official {Nmap} project guide to network discovery and security scanning", publisher = "Insecure.Com, LLC", address = "Sunnyvale, CA, USA", pages = "xxix + 434", year = "2008", ISBN = "0-9799587-1-7 (paperback)", ISBN-13 = "978-0-9799587-1-7 (paperback)", LCCN = "TK5105.59 .L96 2008", bibdate = "Wed May 11 14:13:22 MDT 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Computer networks; Security measures; Computer programs; Monitoring", } @Article{Mahmoud:2008:PAS, author = "Feras A. Mahmoud and Mohammad H. Al-Towaiq", title = "Parallel algorithm for the solutions of {PDEs} in linux clustered workstations", journal = j-APPL-MATH-COMP, volume = "200", number = "1", pages = "178--188", day = "15", month = jun, year = "2008", CODEN = "AMHCBQ", ISSN = "0096-3003 (print), 1873-5649 (electronic)", bibdate = "Sat Jul 12 09:03:14 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sciencedirect.com/science/journal/00963003", acknowledgement = ack-nhfb, } @Book{Mauerer:2008:PLK, author = "Wolfgang Mauerer", title = "Professional {Linux} kernel architecture", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxx + 1337", year = "2008", ISBN = "0-470-34343-5 (paperback)", ISBN-13 = "978-0-470-34343-2 (paperback)", LCCN = "QA76.9.A73 M38 2008eb", bibdate = "Wed Jul 28 22:54:36 MDT 2010", bibsource = "catalog.princeton.edu:7090/voyager; http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Wrox professional guides", URL = "http://site.ebrary.com/lib/princeton/Doc?id=10257612", acknowledgement = ack-nhfb, remark = "Wrox programmer to programmer.", subject = "Linux; Computer architecture; Application software", } @Article{McKenney:2008:ITL, author = "Paul E. McKenney and Jonathan Walpole", title = "Introducing technology into the {Linux} kernel: a case study", journal = j-OPER-SYS-REV, volume = "42", number = "5", pages = "4--17", month = jul, year = "2008", CODEN = "OSRED8", DOI = "http://doi.acm.org/10.1145/1400097.1400099", ISSN = "0163-5980", bibdate = "Wed Aug 6 16:54:12 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "There can be no doubt that a great many technologies have been added to Linux\TM{} over the past ten years. What is less well-known is that it is often necessary to introduce a large amount of Linux into a given technology in order to successfully introduce that technology into Linux. This paper illustrates such an introduction of Linux into technology with Read-Copy Update (RCU). The RCU API's evolution over time clearly shows that Linux's extremely diverse set of workloads and platforms has changed RCU to a far greater degree than RCU has changed Linux---and it is reasonable to expect that other technologies that might be proposed for inclusion into Linux would face similar challenges. In addition, this paper presents a summary of lessons learned and an attempt to foresee what additional challenges Linux might present to RCU.", acknowledgement = ack-nhfb, } @Book{Michael:2008:MUS, author = "Randal K. Michael", title = "Mastering {Unix} Shell Scripting: {Bash}, {Bourne}, and {Korn} Shell Scripting for Programmers, System Administrators, and {UNIX} Gurus", publisher = pub-WILEY, address = pub-WILEY:adr, edition = "Second", pages = "xxx + 1002", year = "2008", ISBN = "0-470-18301-2 (paperback)", ISBN-13 = "978-0-470-18301-4 (paperback)", LCCN = "QA76.76.O63 M488 2008", bibdate = "Tue Jan 27 16:00:36 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", price = "US\$50.00", acknowledgement = ack-nhfb, subject = "UNIX; UNIX Shells", } @Book{Negus:2008:BUT, author = "Christopher Negus and Fran{\c{c}}ois Caen", title = "{BSD UNIX} Toolbox: 1000+ Commands for {FreeBSD}, {OpenBSD} and {NetBSD}", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "336 (est.)", year = "2008", ISBN = "0-470-37603-1", ISBN-13 = "978-0-470-37603-4", LCCN = "QA76.76.O63 N4166 2008", bibdate = "Mon Jun 30 09:07:48 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", price = "US\$24.99", URL = "http://www.loc.gov/catdir/enhancements/fy0829/2008016821-b.html; http://www.loc.gov/catdir/enhancements/fy0829/2008016821-d.html; http://www.loc.gov/catdir/enhancements/fy0829/2008016821-t.html", acknowledgement = ack-nhfb, subject = "FreeBSD; UNIX (computer file); free computer software; operating systems (computers)", } @Book{Nguyen:2008:GG, editor = "Hubert Nguyen", title = "{GPU} gems 3", volume = "3", publisher = pub-AW, address = pub-AW:adr, pages = "l + 942", year = "2008", ISBN = "0-321-51526-9", ISBN-13 = "978-0-321-51526-1", LCCN = "T385 .G6882 2008", bibdate = "Thu Jul 29 13:36:54 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "GPU gems", URL = "http://www.loc.gov/catdir/toc/ecip0720/2007023985.html", acknowledgement = ack-nhfb, keywords = "CUDA; nVIDIA", subject = "Computer graphics; Real-time programming", } @Book{Nguyen:2008:SLC, editor = "Quan Nguyen", title = "Scripting languages: a collection of {Perl}, {Ruby}, {Python}, {TCL} and {Unix}", publisher = "Ramacad", address = "San Jose, CA, USA", pages = "????", year = "2008", ISBN = "0-9777812-3-2", ISBN-13 = "978-0-9777812-3-2", LCCN = "????", bibdate = "Thu Apr 16 11:25:48 MDT 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, } @Article{Padioleau:2008:DAC, author = "Yoann Padioleau and Julia Lawall and Ren{\'e} Rydhof Hansen and Gilles Muller", title = "Documenting and automating collateral evolutions in {Linux} device drivers", journal = j-OPER-SYS-REV, volume = "42", number = "4", pages = "247--260", month = may, year = "2008", CODEN = "OSRED8", DOI = "http://doi.acm.org/10.1145/1357010.1352618", ISSN = "0163-5980", bibdate = "Fri Jun 20 17:21:34 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "The internal libraries of Linux are evolving rapidly, to address new requirements and improve performance. These evolutions, however, entail a massive problem of collateral evolution in Linux device drivers: for every change that affects an API, all dependent drivers must be updated accordingly. Manually performing such collateral evolutions is time-consuming and unreliable, and has lead to errors when modifications have not been done consistently.\par In this paper, we present an automatic program transformation tool Coccinelle, for documenting and automating device driver collateral evolutions. Because Linux programmers are accustomed to manipulating program modifications in terms of patch files, this tool uses a language based on the patch syntax to express transformations, extending patches to semantic patches. Coccinelle preserves the coding style of the original driver, as would a human programmer.\par We have evaluated our approach on 62 representative collateral evolutions that were previously performed manually in Linux 2.5 and 2.6. On a test suite of over 5800 relevant driver files, the semantic patches for these collateral evolutions update over 93\% of the files completely. In the remaining cases, the user is typically alerted to a partial match against the driver code, identifying the files that must be considered manually. We have additionally identified over 150 driver files where the maintainer made an error in performing the collateral evolution, but Coccinelle transforms the code correctly. Finally, several patches derived from the use of Coccinelle have been accepted into the Linux kernel.", acknowledgement = ack-nhfb, keywords = "collateral evolutions; device drivers; domain-specific language; Linux; program transformation; software evolution", } @Book{Parziale:2008:ZVL, editor = "Lydia Parziale and others", title = "{z\slash VM} and {Linux} on {IBM System z}: the virtualization cookbook for {RHEL 5.2}", number = "SG24-7492-00", publisher = pub-IBM, address = pub-IBM:adr, pages = "xvi + 250", year = "2008", ISBN = "0-7384-3181-8", ISBN-13 = "978-0-7384-3181-9", LCCN = "QA76.76.O63 Z867 2008", bibdate = "Thu Jan 21 14:12:53 MST 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "IBM redbooks", URL = "http://proquest.safaribooksonline.com/?fpi=0738431818", acknowledgement = ack-nhfb, subject = "z/VM; Linux; Operating systems (Computers)", } @Book{Peck:2008:BGN, author = "Akkana Peck", title = "Beginning {GIMP}: from novice to professional", publisher = pub-APRESS, address = pub-APRESS:adr, edition = "Second", pages = "xxvi + 557", year = "2008", ISBN = "1-4302-1070-2 (paperback)", ISBN-13 = "978-1-4302-1070-2 (paperback)", LCCN = "T385 .P395 2008", bibdate = "Fri Sep 17 15:22:54 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "The expert's voice in open source", acknowledgement = ack-nhfb, remark = "Includes a preview of GIMP 2.6.", subject = "GIMP (Computer file); computer graphics", tableofcontents = "Getting to know GIMP \\ Improving digital photos \\ Introduction to layers \\ Drawing \\ Selection \\ Erasing and touching up \\ Filters and effects \\ Color \\ Advanced drawing \\ Advanced compositing \\ Plug-ins and scripting \\ Additional topics", } @Book{Pilato:2008:VCS, author = "C. Michael Pilato and Ben Collins-Sussman and Brian W. Fitzpatrick", title = "Version control with {Subversion}", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xxiv + 404", year = "2008", ISBN = "0-596-51033-0 (paperback)", ISBN-13 = "978-0-596-51033-6 (paperback)", LCCN = "QA76.6 .C6274 2008", bibdate = "Thu Sep 17 18:44:27 MDT 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://svnbook.red-bean.com/", acknowledgement = ack-nhfb, remark = "See \cite{Collins-Sussman:2004:VCS} for first edition.", subject = "computer software; development; operating systems (computers)", } @Article{Ramadan:2008:MTT, author = "Hany E. Ramadan and Christopher J. Rossbach and Donald E. Porter and Owen S. Hofmann and Aditya Bhandari and Emmett Witchel", title = "{MetaTM\slash TxLinux}: Transactional Memory for an Operating System", journal = j-IEEE-MICRO, volume = "28", number = "1", pages = "42--51", month = jan # "\slash " # feb, year = "2008", CODEN = "IEMIDZ", DOI = "http://dx.doi.org/10.1109/MM.2008.10", ISSN = "0272-1732 (print), 1937-4143 (electronic)", bibdate = "Wed Jul 2 21:58:04 MDT 2008", bibsource = "http://www.computer.org/micro/mi2008/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Regnier:2008:EIH, author = "Paul Regnier and George Lima and Luciano Barreto", title = "Evaluation of interrupt handling timeliness in real-time {Linux} operating systems", journal = j-OPER-SYS-REV, volume = "42", number = "6", pages = "52--63", month = oct, year = "2008", CODEN = "OSRED8", DOI = "http://doi.acm.org/10.1145/1453775.1453787", ISSN = "0163-5980", bibdate = "Thu Oct 23 14:23:29 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Several real-time Linux extensions are available nowadays. Two of those extensions that have received special attention recently are Preempt-RT and Xenomai. This paper evaluates to what extent they provide deterministic guarantees when reacting to external events, an essential characteristic when it comes to real-time systems. For this, we define two simple experimental approaches. Our results indicate that Preempt-RT is more prone to temporal variations than Xenomai when the system is subject to overload scenarios.", acknowledgement = ack-nhfb, keywords = "interrupt handling; Linux; operating system; real time", } @Article{Rossbach:2008:TMT, author = "Christopher J. Rossbach and Hany E. Ramadan and Owen S. Hofmann and Donald E. Porter and Aditya Bhandari and Emmett Witchel", title = "{TxLinux} and {MetaTM}: transactional memory and the operating system", journal = j-CACM, volume = "51", number = "9", pages = "83--91", month = sep, year = "2008", CODEN = "CACMA2", ISSN = "0001-0782 (print), 1557-7317 (electronic)", bibdate = "Mon Aug 25 15:05:08 MDT 2008", bibsource = "http://www.acm.org/pubs/contents/journals/cacm/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Rothman:2008:MXU, author = "Ernest E. (Ernest Eric) Rothman and Brian Jepson and Rich Rosen", title = "{Mac OS X} for {Unix} geeks", publisher = pub-ORA-MEDIA, address = pub-ORA-MEDIA:adr, edition = "Fourth", pages = "[380]", year = "2008", ISBN = "0-596-52062-X", ISBN-13 = "978-0-596-52062-5", LCCN = "QA76.76.O63 R68 2008", bibdate = "Sat Nov 13 10:18:27 MST 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90; prodorbis.library.yale.edu:7090/voyager", acknowledgement = ack-nhfb, subject = "Mac OS; UNIX (Computer file)", } @Book{Salus:2008:DGP, author = "Peter H. Salus", title = "The daemon, the gnu, and the penguin: how free and open software is changing the world", publisher = "Reed Media Services", address = "Keller, TX, USA", pages = "204 (est.)", year = "2008", ISBN = "0-9790342-3-X", ISBN-13 = "978-09790342-3-7", LCCN = "????", bibdate = "Thu Jun 4 13:16:41 MDT 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, remark = "Edited by Jeremy C. Reed; foreword by Jon `Maddog' Hall.", } @Book{Schroder:2008:LNC, author = "Carla Schroder", title = "{Linux} networking cookbook", publisher = pub-ORA, address = pub-ORA:adr, pages = "612", year = "2008", ISBN = "0-596-10248-8", ISBN-13 = "978-0-596-10248-7", LCCN = "????", bibdate = "Wed Apr 30 17:58:33 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.bibsys.no:2100/BIBSYS", acknowledgement = ack-nhfb, } @Book{Seebach:2008:BPS, author = "Peter Seebach", title = "Beginning portable shell scripting: from novice to professional", publisher = pub-APRESS, address = pub-APRESS:adr, pages = "xix + 352", year = "2008", ISBN = "1-4302-1043-5 (paperback)", ISBN-13 = "978-1-4302-1043-6 (paperback)", LCCN = "QA76.76.O63 S4668 2009", bibdate = "Fri Jul 30 15:30:29 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "The expert's voice in open source", acknowledgement = ack-nhfb, subject = "Operating systems (Computers); Programming languages (Electronic computers); UNIX (Computer file)", } @Book{Shingledecker:2008:ODS, author = "Robert Shingledecker and John Andrews and Chris Negus", title = "The official {Damn Small Linux} book: the tiny adaptable {Linux} that runs on anything", publisher = pub-PH, address = pub-PH:adr, pages = "xx + 426", year = "2008", ISBN = "0-13-233869-6 (paperback)", ISBN-13 = "978-0-13-233869-1 (paperback)", LCCN = "QA76.76.O63 S555554 2007", bibdate = "Mon Oct 29 18:47:47 MDT 2007", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/toc/ecip0718/2007020589.html", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Article{So:2008:UHS, author = "Hayden Kwok-Hay So and Robert Brodersen", title = "A unified hardware\slash software runtime environment for {FPGA}-based reconfigurable computers using {BORPH}", journal = j-TECS, volume = "7", number = "2", pages = "14:1--14:??", month = feb, year = "2008", CODEN = "????", DOI = "http://doi.acm.org/10.1145/1331331.1331338", ISSN = "1539-9087 (print), 1558-3465 (electronic)", bibdate = "Thu Jun 12 15:22:00 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "This paper explores the design and implementation of BORPH, an operating system designed for FPGA-based reconfigurable computers. Hardware designs execute as normal UNIX processes under BORPH, having access to standard OS services, such as file system support. Hardware and software components of user designs may, therefore, run as communicating processes within BORPH's runtime environment. The familiar language independent UNIX kernel interface facilitates easy design reuse and rapid application development. To develop hardware designs, a Simulink-based design flow that integrates with BORPH is employed. Performances of BORPH on two on-chip systems implemented on a BEE2 platform are compared.", acknowledgement = ack-nhfb, articleno = "14", keywords = "BORPH; FPGA; hardware process; reconfigurable computers", } @Book{Stevens:2008:APU, author = "W. Richard Stevens and Stephen A. Rago", title = "Advanced programming in the {UNIX} environment", publisher = pub-AW, address = pub-AW:adr, edition = "Second", pages = "xxviii + 927", year = "2008", ISBN = "0-321-52594-9", ISBN-13 = "978-0-321-52594-9", LCCN = "QA76.76.O63", bibdate = "Thu Mar 5 17:53:25 MST 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk", series = "Addison-Wesley professional computing series", acknowledgement = ack-nhfb, } @Book{Tanenbaum:2008:MOS, author = "Andrew S. Tanenbaum", title = "Modern Operating Systems", publisher = pub-PEARSON-PH, address = pub-PEARSON-PH:adr, edition = "Third", pages = "xxvii + 1076", year = "2008", ISBN = "0-13-600663-9", ISBN-13 = "978-0-13-600663-3", LCCN = "QA76.76.O63 T359 2008", bibdate = "Tue Apr 14 14:24:21 MDT 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Operating systems (Computers)", } @Book{Venkateswaran:2008:ELD, author = "Sreekrishnan Venkateswaran", title = "Essential {Linux} device drivers", publisher = pub-PH, address = pub-PH:adr, pages = "xxx + 714", year = "2008", ISBN = "0-13-239655-6 (hardback)", ISBN-13 = "978-0-13-239655-4 (hardback)", LCCN = "QA76.76.D49 V35 2008", bibdate = "Fri Jan 29 11:57:31 MST 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Prentice Hall open source software development series", URL = "http://www.loc.gov/catdir/toc/ecip087/2008000249.html", acknowledgement = ack-nhfb, subject = "Linux device drivers (Computer programs)", } @Article{Wong:2008:TAF, author = "Chee Siang Wong and Ian Tan and Rosalind Deena Kumari and Fun Wey", title = "Towards achieving fairness in the {Linux} scheduler", journal = j-OPER-SYS-REV, volume = "42", number = "5", pages = "34--43", month = jul, year = "2008", CODEN = "OSRED8", DOI = "http://doi.acm.org/10.1145/1400097.1400102", ISSN = "0163-5980", bibdate = "Wed Aug 6 16:54:12 MDT 2008", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "The Operating System scheduler is designed to allocate the CPU resources appropriately to all processes. The Linux Completely Fair Scheduler (CFS) design ensures fairness among tasks using the thread fair scheduling algorithm. This algorithm ensures allocation of resources based on the number of threads in the system and not within executing programs. This can lead to fairness issue in a multi-threaded environment as the Linux scheduler tends to favor programs with higher number of threads. We illustrate the issue of fairness through experimental evaluation thus exposing the weakness of the current allocation scheme where software developers could take advantage by spawning many additional threads in order to obtain more CPU resources. A novel algorithm is proposed as a solution towards achieving better fairness in the Linux scheduler. The algorithm is based on weight readjustment of the threads created in the same process to significantly reduce the unfair allocation of CPU resources in multi-threaded environments. The algorithm was implemented and evaluated. It demonstrated promising results towards solving the raised fairness issue. We conclude this paper highlighting the limitations of the proposed approach and the future work in the stated direction.", acknowledgement = ack-nhfb, keywords = "completely fair scheduler; fairness; Linux; process scheduling", } @Book{Amend:2009:MSU, author = "Bill Amend", title = "Math, science, and {Unix} underpants: a themed {Foxtrot} collection", publisher = "Andrews McMeel Pub., LLC", address = "Kansas City, MO, USA", pages = "????", year = "2009", ISBN = "0-7407-9140-0", ISBN-13 = "978-0-7407-9140-6", LCCN = "????", bibdate = "Mon Sep 27 11:49:08 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/enhancements/fy1013/2009934089-b.html; http://www.loc.gov/catdir/enhancements/fy1013/2009934089-d.html", acknowledgement = ack-nhfb, } @Book{Anderson:2009:XU, author = "Fritz Anderson", title = "{Xcode 3} unleashed", publisher = pub-SAMS, address = pub-SAMS:adr, pages = "xix + 534", year = "2009", ISBN = "0-321-55263-6 (paperback)", ISBN-13 = "978-0-321-55263-1 (paperback)", LCCN = "QA76.76.O63 A53155 2009", bibdate = "Mon Aug 4 15:35:09 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Operating systems (Computers); Macintosh (Computer)", } @Book{Bah:2009:IHE, author = "Taymjong Bah", title = "{Inkscape}: guide to a vector drawing program", publisher = pub-PH, address = pub-PH:adr, edition = "Second", pages = "xviii + 383", year = "2009", ISBN = "0-13-700628-4 (paperback)", ISBN-13 = "978-0-13-700628-1 (paperback)", LCCN = "T385 .B34 2009", bibdate = "Fri Sep 17 12:33:26 MDT 2010", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Shortcut", acknowledgement = ack-nhfb, subject = "SVG (document markup language); computer graphics", } @Book{Benjamin:2009:BI, author = "Donna Benjamin", title = "Beginning {Inkscape}", publisher = pub-APRESS, address = pub-APRESS:adr, year = "2009", ISBN = "1-4302-2513-0", ISBN-13 = "978-1-4302-2513-3", LCCN = "????", bibdate = "Fri Sep 17 12:33:20 MDT 2010", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Blaich:2009:RVM, author = "Andrew Blaich and Douglas Thain and Aaron Striegel", title = "Reflections on the virtues of modularity: a case study in {Linux} security modules", journal = j-SPE, volume = "39", number = "15", pages = "1235--1251", day = "??", month = oct, year = "2009", CODEN = "SPEXBL", DOI = "http://dx.doi.org/10.1002/spe.933", ISSN = "0038-0644 (print), 1097-024X (electronic)", bibdate = "Wed Mar 17 10:02:42 MDT 2010", bibsource = "http://www.interscience.wiley.com/jpages/0038-0644; http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www3.interscience.wiley.com/journalfinder.html", acknowledgement = ack-nhfb, onlinedate = "Jul 27 2009 3:49AM", } @Book{Blunden:2009:RAE, author = "Bill Blunden", title = "The rootkit arsenal: escape and evasion in the dark corners of the system", publisher = "Wordware Publishing", address = "Plano, TX, USA", pages = "xxvii + 908", year = "2009", ISBN = "1-59822-061-6 (paperback)", ISBN-13 = "978-1-59822-061-2 (paperback)", LCCN = "QA76.9.A25 2009", bibdate = "Wed May 11 14:24:12 MDT 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk", acknowledgement = ack-nhfb, subject = "computers; access control; computer viruses; computer hackers", } @Book{Calkins:2009:SSA, author = "Bill Calkins", title = "{Solaris 10} system administration: (Exam {CX-310-200})", publisher = pub-QUE, address = pub-QUE:adr, pages = "xix + 738", year = "2009", ISBN = "0-7897-3790-6 (part 1: paperback), 0-7897-3817-1 (part 2: paperback)", ISBN-13 = "978-0-7897-3790-8 (part 1: paperback), 978-0-7897-3817-2 (part 2: paperback)", LCCN = "JL-21-29", bibdate = "Thu May 7 16:39:30 MDT 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; library.tcd.ie:210/advance", acknowledgement = ack-nhfb, remark = "CD-ROM in pocket attached to inside back cover of pt. 1. Formerly CIP. Part 1. Exam CX-310-200 -- Part 2. Exam CX-310-202.", subject = "Solaris (computer file); operating systems (computers); examinations; study guides; electronic data processing personnel; certification", } @Book{Cooperstein:2009:LPDa, author = "Jerry Cooperstein", title = "{Linux} Program Development: a guide with exercises", publisher = "CreateSpace", address = "Scotts Valley, CA, USA", pages = "290 (est.)", year = "2009", ISBN = "1-4499-0602-8", ISBN-13 = "978-1-4499-0602-3", LCCN = "????", bibdate = "Thu Jul 29 08:20:26 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Cooperstein:2009:LPDb, author = "Jerry Cooperstein", title = "{Linux} Program Development: Lab Solutions: a guide with exercises", publisher = "CreateSpace", address = "Scotts Valley, CA, USA", pages = "204 (est.)", year = "2009", ISBN = "1-4499-0604-4", ISBN-13 = "978-1-4499-0604-7", LCCN = "????", bibdate = "Thu Jul 29 08:20:26 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Cooperstein:2009:WLDa, author = "Jerry Cooperstein", title = "Writing {Linux} Device Drivers: a guide with exercises", volume = "3", publisher = "CreateSpace", address = "Scotts Valley, CA, USA", pages = "394 (est.)", year = "2009", ISBN = "1-4486-7238-4", ISBN-13 = "978-1-4486-7238-7", LCCN = "????", bibdate = "Thu Jul 29 08:20:26 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Cooperstein:2009:WLDb, author = "Jerry Cooperstein", title = "Writing {Linux} Device Drivers: Lab Solutions: a guide with exercises", publisher = "CreateSpace", address = "Scotts Valley, CA, USA", pages = "270 (est.)", year = "2009", ISBN = "1-4495-3124-5", ISBN-13 = "978-1-4495-3124-9", LCCN = "????", bibdate = "Thu Jul 29 08:20:26 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Dedeke:2009:LOL, author = "Adenekan (Nick) Dedeke", title = "Loyal Opposition: Is {Linux} Better than {Windows} Software?", journal = j-IEEE-SOFTWARE, volume = "26", number = "3", pages = "104, 103", month = may # "\slash " # jun, year = "2009", CODEN = "IESOEG", DOI = "http://dx.doi.org/10.1109/MS.2009.72", ISSN = "0740-7459 (print), 0740-7459 (electronic)", ISSN-L = "0740-7459", bibdate = "Thu Jul 2 09:29:56 MDT 2009", bibsource = "http://computer.org/software/so2009/; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, fjournal = "IEEE Software", } @Book{Foxwell:2009:PON, author = "Harry Foxwell and Christine Tran", title = "{Pro OpenSolaris}: {A} New Open Source {OS} for {Linux} Developers and Administrators", publisher = pub-APRESS, address = pub-APRESS:adr, pages = "xxi + 254", year = "2009", ISBN = "1-4302-1891-6", ISBN-13 = "978-1-4302-1891-3", LCCN = "QA76.76.O63 F59733 2009", bibdate = "Thu May 07 18:00:18 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, subject = "Solaris (computer file); operating systems (computers)", } @Book{Hahn:2009:HHG, author = "Harley Hahn", title = "{Harley Hahn}'s guide to {Unix} and {Linux}", publisher = "McGraw-Hill Higher Education", address = "Boston, MA, USA", pages = "xxxiv + 926", year = "2009", ISBN = "0-07-313361-2 (paperback)", ISBN-13 = "978-0-07-313361-4 (paperback)", LCCN = "QA76.76.O63 H3378 2009", bibdate = "Mon Mar 28 09:41:22 MDT 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/enhancements/fy0808/2007052525-b.html; http://www.loc.gov/catdir/enhancements/fy0808/2007052525-d.html; http://www.loc.gov/catdir/enhancements/fy0810/2007052525-t.html", acknowledgement = ack-nhfb, subject = "UNIX (Computer file); Linux; Operating systems (Computers)", } @Book{Hudson:2009:UU, author = "Andrew Hudson and Paul Hudson", title = "{Ubuntu} unleashed", publisher = pub-SAMS, address = pub-SAMS:adr, edition = "Fourth", pages = "xxiv + 826", year = "2009", ISBN = "0-672-32993-X (paperback)", ISBN-13 = "978-0-672-32993-7 (paperback)", LCCN = "QA76.76.O63 H81666 2009", bibdate = "Mon Jul 5 17:26:31 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", note = "Includes DVD.", URL = "http://www.loc.gov/catdir/toc/ecip0818/2008021150.html", acknowledgement = ack-nhfb, subject = "Ubuntu (electronic resource); Linux; operating systems (computers)", } @Book{IBM:2009:HAD, author = "{IBM}", title = "High Availability and Disaster Recovery Options for {DB2} on {Linux}, {Unix}, and {Windows}", publisher = pub-IBM-REDBOOKS, address = pub-IBM-REDBOOKS:adr, pages = "xvi + 856", year = "2009", ISBN = "0-7384-3138-9", ISBN-13 = "978-0-7384-3138-3", LCCN = "????", bibdate = "Mon Sep 27 11:48:24 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "IBM redbooks", acknowledgement = ack-nhfb, } @Book{IBM:2009:MOI, author = "{IBM}", title = "Migrating from {Oracle} to {IBM Informix Dynamic Server} on {Linux}, {UNIX}, and {Windows}", publisher = pub-IBM-REDBOOKS, address = pub-IBM-REDBOOKS:adr, pages = "xiv + 378", year = "2009", ISBN = "0-7384-3302-0", ISBN-13 = "978-0-7384-3302-8", LCCN = "????", bibdate = "Mon Sep 27 11:48:45 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Redbooks", acknowledgement = ack-nhfb, } @Book{Jain:2009:SSA, author = "Puneet Jain and Scott Davenport and David Bustos", title = "{Solaris 10} System Administration Essentials", publisher = pub-PHPTR, address = pub-PHPTR:adr, pages = "448 (est.)", year = "2009", ISBN = "0-13-700009-X", ISBN-13 = "978-0-13-700009-8", LCCN = "????", bibdate = "Thu May 07 17:52:55 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{James:2009:CDM, author = "Daniel James and Trevor Parsons", title = "Crafting digital media: {Audacity}, {Blender}, {Drupal}, {GIMP}, {Scribus}, and other open source tools", publisher = pub-APRESS, address = pub-APRESS:adr, pages = "xvi + 428", year = "2009", ISBN = "1-4302-1888-6 (e-book), 1-4302-1887-8", ISBN-13 = "978-1-4302-1888-3 (e-book), 978-1-4302-1887-6", LCCN = "QA76.76.I59 J36 2009eb", bibdate = "Fri Sep 17 15:26:44 MDT 2010", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "The expert's voice in open source", acknowledgement = ack-nhfb, subject = "Ubuntu (electronic resource); open source software; handbooks, manuals, etc; free computer software", tableofcontents = "Part 1. Introduction \\ Ch. 1. Working with Free Software \\ Ch. 2. Getting Started \\ Part 2. Tools \\ Ch. 3. Photography \\ Ch. 4. Illustration and Font Design \\ Ch. 5. Animation \\ Ch. 6. 3D Modeling \\ Ch. 7. Publishing \\ Ch. 8. Making Music \\ Ch. 9. Recording Audio \\ Ch. 10. Mixing and Mastering \\ Ch. 11. Video Editing \\ Ch. 12. Web Content \\ Part 3. Appendixes \\ Appendix 1. GNU/Linux Commands \\ Appendix 2. GNU Free Documentation License", } @Book{James:2009:FSC, author = "Daniel James", title = "Free Software for Creative People", publisher = pub-SV, address = pub-SV:adr, pages = "450", year = "2009", ISBN = "1-4302-1887-8", ISBN-13 = "978-1-4302-1887-6", LCCN = "????", bibdate = "Fri Sep 17 15:26:44 MDT 2010", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Kirsanov:2009:BID, author = "Dmitry Kirsanov", title = "The book of {Inkscape}: the definitive guide to the free graphics editor", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "xx + 448 + 4", year = "2009", ISBN = "1-59327-181-6", ISBN-13 = "978-1-59327-181-7", LCCN = "T385 .K491256 2009", bibdate = "Fri Sep 17 12:29:41 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/enhancements/fy0913/2009023973-b.html; http://www.loc.gov/catdir/enhancements/fy1001/2009023973-d.html; http://www.loc.gov/catdir/enhancements/fy1010/2009023973-t.html", acknowledgement = ack-nhfb, subject = "computer graphics; Inkscape (electronic resource)", tableofcontents = "Inkscape and the world \\ An Inkscape primer \\ Setting up and moving around \\ Objects \\ Selecting \\ Transforming \\ Snapping and arranging \\ Styling \\ Stroke and markers \\ Gradients and patterns \\ Shapes \\ Editing paths \\ Path effects and extensions \\ Drawing \\ Text \\ Clones \\ Filters \\ Bitmaps \\ Tutorial : Designing a business card \\ Tutorial : Creating an animation \\ Tutorial : Drawing a 3D-correct cartoon \\ Tutorial : Artistic drawing \\ Tutorial : Technical drawing \\ Tutorial : The rose \\ Appendix A : An SVG primer \\ Appendix B : Import and export \\ Appendix C : The command line \\ Appendix D : Keyboard shortcuts", } @Book{Kochan:2009:POC, author = "Stephen G. Kochan", title = "Programming in {Objective-C 2.0}", publisher = "Addison Wesley Professional", address = "Upper Saddle River, NJ, USA", edition = "Second", pages = "xv + 600", year = "2009", ISBN = "0-321-56615-7 (paperback)", ISBN-13 = "978-0-321-56615-7 (paperback)", LCCN = "QA76.73.O115 K63 2009", bibdate = "Thu May 7 14:53:43 MDT 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Developer's library", acknowledgement = ack-nhfb, subject = "Objective-C (Computer program language); object-oriented programming (computer science); Macintosh (computer); programming", } @Book{Kubasiak:2009:MXI, author = "Ryan R. Kubasiak and Sean Morrissey and Jesse Varsalone and others", title = "{Macintosh OS X}, {iPod}, and {iPhone} forensic analysis {DVD} toolkit", publisher = pub-SYNGRESS, address = pub-SYNGRESS:adr, pages = "xix + 551", year = "2009", ISBN = "1-59749-297-3 (paperback)", ISBN-13 = "978-1-59749-297-3 (paperback)", LCCN = "QA76.9.A25 V3854 2009", bibdate = "Wed Dec 23 12:55:48 MST 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", URL = "http://www.loc.gov/catdir/enhancements/fy0903/2008046538-d.html", acknowledgement = ack-nhfb, subject = "Computer security; Data recovery (Computer science); Computer crimes; Macintosh (Computer)", tableofcontents = "Tiger and Leopard Mac OS X operating systems \\ Getting a handle on Mac hardware \\ Mac disks and partitioning \\ HFS plus file system \\ FileVault \\ Time machine \\ Acquiring forensic images \\ Recovering browser history \\ Recovery of e-mail artifacts, iChat, and other chat logs \\ Locating and recovering photos \\ Finding and recovering Quicktime movies and other video \\ Recovering PDFs, word files, and other documents \\ Forensic acquisition of an iPod \\ iPod forensics \\ Forensic acquisition of an iPhone \\ iPhone forensics", } @Book{Mark:2009:BID, author = "Dave Mark and Jeff LaMarche", title = "Beginning {iPhone 3} Development: Exploring the {iPhone SDK})", publisher = pub-APRESS, address = pub-APRESS:adr, pages = "584 (est.)", year = "2009", ISBN = "1-4302-2459-2", ISBN-13 = "978-1-4302-2459-4", LCCN = "????", bibdate = "Thu Sep 03 15:22:46 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, tableofcontents = "1. Welcome to the Jungle \\ 2. Appeasing the Tiki Gods \\ 3. Handling Basic Interaction \\ 4. More User Interface Fun \\ 5. Autorotation and Autosizing \\ 6. Multiview Applications \\ 7. Tab Bars and Pickers \\ 8. Introduction to Table Views \\ 9. Navigation Controllers and Table Views \\ 10. Application Settings and User Defaults \\ 11. Basic Data Persistence \\ 12. Drawing with Quartz and OpenGL \\ 13. Taps, Touches, and Gestures \\ 14. Where Am I? Finding Your Way with Core Location \\ 15. Whee! Accelerometer! \\ 16. iPhone Camera and Photo Library \\ 17. Application Localization \\ 18. Where to Next?", } @Book{Miller:2009:MHH, author = "Charles Miller and Dino A. {Dai Zovi}", title = "The {Mac} Hacker's Handbook", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xvi + 368", year = "2009", ISBN = "0-470-39536-2 (paperback)", ISBN-13 = "978-0-470-39536-3 (paperback)", LCCN = "????", bibdate = "Tue May 26 18:12:55 MDT 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; library.tcd.ie:210/advance", price = "US\$26.99", acknowledgement = ack-nhfb, subject = "Mac OS; Computer security", } @Article{Mlynski:2009:IIP, author = "Maciej Mlynski", title = "The influence of the {IBM pSeries} servers virtualization mechanism on dynamic resource allocation in {AIX 5L}", journal = j-SCPE, volume = "10", number = "2", pages = "189--199", month = jun, year = "2009", CODEN = "????", ISSN = "1895-1767", bibdate = "Thu Sep 2 11:55:11 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.scpe.org/content/10/2.toc", URL = "http://www.scpe.org/vols/vol10/no2/SCPE_10_2_05.pdf; http://www.scpe.org/vols/vol10/no2/SCPE_10_2_05.zip", acknowledgement = ack-nhfb, } @Book{Myer:2009:MXU, author = "Thomas Myer and Christopher Negus and Fran{\c{c}}ois Caen", title = "{Mac OS X UNIX} toolbox: 1000+ commands for {Mac OS X} power users", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxiv + 260", year = "2009", ISBN = "0-470-47836-5", ISBN-13 = "978-0-470-47836-3", LCCN = "QA76.76.O63", bibdate = "Mon Oct 26 10:00:51 MDT 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk", acknowledgement = ack-nhfb, subject = "Mac OS; UNIX (Computer file); Macintosh (Computer); Programming", } @Book{Peters:2009:ESS, author = "Ron Peters", title = "Expert shell scripting", publisher = pub-APRESS, address = pub-APRESS:adr, pages = "xxii + 293", year = "2009", ISBN = "1-4302-1841-X", ISBN-13 = "978-1-4302-1841-8", LCCN = "QA76.76.O63 P48 2009", bibdate = "Wed Apr 21 17:03:50 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", series = "The expert's voice in open source", acknowledgement = ack-nhfb, subject = "computer programming; operating systems (computers); command languages (computer science); programming languages (electronic computers)", } @Book{Piper:2009:LXT, author = "Ian Piper and James Bucanek", title = "Learn {Xcode} tools for {Mac OS X} and {iPhone} development", publisher = pub-APRESS, address = pub-APRESS:adr, year = "2009", ISBN = "1-4302-7221-X", ISBN-13 = "978-1-4302-7221-2", LCCN = "QA76.76.O63 P56 2009", bibdate = "Fri May 7 16:59:02 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; library.mit.edu:9909/mit01", acknowledgement = ack-nhfb, subject = "Mac OS; iPhone OS; Macintosh (computer); programming; iPhone (Smartphone); computer software; development", } @Book{Pittman:2009:SOS, editor = "Gregory Pittman and Christoph Sch{\"a}fer and others", title = "{Scribus}: open source desktop publishing: the official manual", publisher = "FLES Books", address = "Lostwithiel, Cornwall, UK", pages = "439", year = "2009", ISBN = "0-9560780-0-1 (paperback)", ISBN-13 = "978-0-9560780-0-1 (paperback)", LCCN = "Z253.532 S33 S434 2009", bibdate = "Fri Sep 17 15:16:18 MDT 2010", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, remark = "Official manual for version 1.3.3.12 and any later 1.3.3.x releases of the software", subject = "Scribus; Desktop publishing; Open source software; Publishing; Software; Desktop-Publishing; Scribus 1.3.4", tableofcontents = "1 Installation \\ 2 Scribus Quick Start Guide \\ 3 Scribus Basics\\ 4 Customizing Scribus\\ 5 Advanced Features \\ 6 Colors and Color Management \\ 7 File Export \\ 8 Printing \\ 9 PDF Forms \\ 10 PDF Presentations \\ 11 The Scripter \\ 12 Tips and Tricks \\ 13 Your DTP Toolbox \\ 14 Appendices \\ 15 Glossary \\ 16 Credits \\ 17 Index", } @Book{Scott:2009:PLP, author = "Michael L. Scott", title = "Programming Language Pragmatics", publisher = pub-MORGAN-KAUFMANN, address = pub-MORGAN-KAUFMANN:adr, edition = "Third", pages = "xxx + 910", year = "2009", ISBN = "0-12-374514-4", ISBN-13 = "978-0-12-374514-9", LCCN = "????", bibdate = "Thu May 21 16:07:05 MDT 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk", note = "Many sections of the book are relegated to the accompanying CD-ROM.", acknowledgement = ack-nhfb, keywords = "awk; perl; python; ruby; sed; sh; tcl", } @Book{Seacord:2009:CCS, author = "Robert C. Seacord", title = "The {CERT} {C} secure coding standard", publisher = pub-AW, address = pub-AW:adr, pages = "xxxiii + 682", year = "2009", ISBN = "0-321-56321-2 (paperback)", ISBN-13 = "978-0-321-56321-7 (paperback)", LCCN = "QA76.73.C15 S4155 2008", bibdate = "Wed Oct 15 14:18:28 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "C (Computer program language); Computer security", } @Article{Seager:2009:CHS, author = "Mark Seager and Brent Gorda", title = "The Case for a Hierarchical System Model for {Linux} Clusters", journal = j-IJHPCA, volume = "23", number = "4", pages = "350--354", month = nov, year = "2009", CODEN = "IHPCFL", DOI = "http://dx.doi.org/10.1177/1094342009347499", ISSN = "1094-3420 (print), 1741-2846 (electronic)", ISSN-L = "1094-3420", bibdate = "Tue Aug 31 09:59:45 MDT 2010", bibsource = "http://hpc.sagepub.com/content/23/4.toc; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://hpc.sagepub.com/content/23/4/350.full.pdf+html", acknowledgement = ack-nhfb, } @Article{Seo:2009:CTR, author = "Euiseong Seo and Jinkyu Jeong and Seonyeong Park and Jinsoo Kim and Joonwoon Lee", title = "Catching two rabbits: adaptive real-time support for embedded {Linux}", journal = j-SPE, volume = "39", number = "5", pages = "531--550", day = "10", month = apr, year = "2009", CODEN = "SPEXBL", DOI = "http://dx.doi.org/10.1002/spe.911", ISSN = "0038-0644 (print), 1097-024X (electronic)", bibdate = "Wed Mar 17 10:02:38 MDT 2010", bibsource = "http://www.interscience.wiley.com/jpages/0038-0644; http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www3.interscience.wiley.com/journalfinder.html", acknowledgement = ack-nhfb, onlinedate = "Dec 8 2008 4:23AM", } @Book{Silberschatz:2009:OSC, author = "Abraham Silberschatz and Peter Baer Galvin and Greg Gagne", title = "Operating System Concepts", publisher = pub-WILEY, address = pub-WILEY:adr, edition = "Eighth", pages = "xx + 972", year = "2009", ISBN = "0-470-12872-0", ISBN-13 = "978-0-470-12872-5", LCCN = "QA76.76.O63", bibdate = "Tue Apr 14 14:35:28 MDT 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk", acknowledgement = ack-nhfb, subject = "Operating systems (Computers)", } @Book{Solter:2009:OB, author = "Nicholas Solter and Jerry Jelinek and David Miner", title = "{OpenSolaris} bible", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxxv + 971", year = "2009", ISBN = "0-470-38548-0 (paperback)", ISBN-13 = "978-0-470-38548-7 (paperback)", LCCN = "QA76.76.O63", bibdate = "Mon Jan 26 17:47:15 MST 2009", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk", price = "US\$26.99", acknowledgement = ack-nhfb, subject = "OpenSolaris (Electronic resource); Operating systems (Computers); Open source software", } @Book{Tomaszewska:2009:I, author = "Aleksandra Tomaszewska", title = "{Inkscape}", publisher = "Wydawnictwo Helion", address = "Gliwice, Poland", pages = "135", year = "2009", ISBN = "83-246-1902-X", ISBN-13 = "978-83-246-1902-3", LCCN = "????", bibdate = "Fri Sep 17 12:26:48 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$", acknowledgement = ack-nhfb, language = "Polish", } @InProceedings{Toomey:2009:REU, author = "Warren Toomey", editor = "????", booktitle = "{Proceedings of the 2009 USENIX Annual Technical Conference, June 14--19, San Diego, CA, USA}", title = "The Restoration of Early {UNIX} Artifacts", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "??--??", year = "2009", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Apr 21 08:24:22 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.usenix.org/events/usenix09/tech/full_papers/toomey/toomey.pdf; http://www.usenix.org/events/usenix09/tech/slides/toomey.pdf; http://www.usenix.org/multimedia/atc09toomey", abstract = "UNIX turns 40 this year: many happy returns! Four decades is a vast period for the computing industry: systems from the 1970s now seem rudimentary and primitive. And yet, the early versions of UNIX were epitomes of sophisticated concepts packaged into elegant systems. UNIX' influence has been so powerful that it reverberates down to affect us in the 21st century.\par The history of the development of UNIX has been well documented, and over the past decade or so, efforts have been made to find and conserve the software and documentation artifacts from the earliest period of UNIX history. This paper details the work that has been done to restore the artifacts from this time to working order and the lessons learned from this work.", acknowledgement = ack-nhfb, bookpages = "????", pagecount = "6", } @Article{Toral:2009:MML, author = "S. L. Toral and R. Mart{\'\i}nez Torres and F. Barrero", title = "Modelling Mailing List Behaviour in Open Source Projects: the Case of {ARM Embedded Linux}", journal = j-J-UCS, volume = "15", number = "3", pages = "648--??", month = "????", year = "2009", CODEN = "????", ISSN = "0948-6968", bibdate = "Wed Aug 25 22:38:58 MDT 2010", bibsource = "http://www.jucs.org/jucs; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.jucs.org/jucs_15_3/modelling_mailing_list_behaviour", acknowledgement = ack-nhfb, } @Article{Yang:2009:DBM, author = "Chao-Tung Yang and Kuan-Chou Lai", title = "A directive-based {MPI} code generator for {Linux PC} clusters", journal = j-J-SUPERCOMPUTING, volume = "50", number = "2", pages = "177--207", month = nov, year = "2009", CODEN = "JOSUED", ISSN = "0920-8542 (print), 1573-0484 (electronic)", ISSN-L = "0920-8542", bibdate = "Wed Aug 25 08:38:43 MDT 2010", bibsource = "http://springerlink.metapress.com/openurl.asp?genre=issue&issn=0920-8542&volume=50&issue=2; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.springerlink.com/openurl.asp?genre=article&issn=0920-8542&volume=50&issue=2&spage=177", acknowledgement = ack-nhfb, } @Book{Alexandrescu:2010:DPL, author = "Andrei Alexandrescu", title = "The {D} programming language", publisher = pub-AW, address = pub-AW:adr, pages = "xxvii + 463", year = "2010", ISBN = "0-321-65953-8 (hardcover), 0-321-63536-1 (paperback)", ISBN-13 = "978-0-321-65953-8 (hardcover), 978-0-321-63536-5 (paperback)", LCCN = "QA76.73.D138 A44 2010; QA76.73.D138", bibdate = "Sat Aug 21 13:36:45 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; library.mit.edu:9909/mit01", acknowledgement = ack-nhfb, subject = "D (Computer program language)", } @Book{Buck:2010:CDP, author = "Erik M. Buck and Donald A. Yacktman", title = "{Cocoa} design patterns", publisher = pub-AW, address = pub-AW:adr, pages = "xxv + 427", year = "2010", ISBN = "0-321-53502-2 (paperback)", ISBN-13 = "978-0-321-53502-3 (paperback)", LCCN = "QA76.64 .B82 2010", bibdate = "Fri May 21 12:37:09 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Cocoa (application development environment); object-oriented programming (computer science); software patterns; Mac OS", } @Book{Calcote:2010:APG, author = "John Calcote", title = "{Autotools}: a practitioner's guide to {GNU Autoconf}, {Automake}, and {Libtool}", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "xxiv + 332", year = "2010", ISBN = "1-59327-206-5 (paperback)", ISBN-13 = "978-1-59327-206-7 (paperback)", LCCN = "QA76.76.D47 C335 2010", bibdate = "Mon Sep 27 10:50:23 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Autotools (Electronic resource); Cross-platform software development; Open source software; UNIX (Computer file)", tableofcontents = "A brief introduction to the GNU autotools \\ Understanding the GNU coding standards \\ Configuring your project with Autoconf \\ More fun with Autoconf: configuring user options \\ Automatic makefiles with Automake \\ Building libraries with Libtool \\ Library interface versioning and runtime dynamic linking \\ Flaim: an Autotools example \\ Flaim: pushing the envelope \\ Using the M4 Macro processor with Autoconf \\ A catalog of tips and reusable solutions", } @Book{Chisnall:2010:CPD, author = "David Chisnall", title = "{Cocoa} programming developer's handbook", publisher = pub-AW, address = pub-AW:adr, pages = "xxviii + 896", year = "2010", ISBN = "0-321-63963-4 (paperback)", ISBN-13 = "978-0-321-63963-9 (paperback)", LCCN = "QA76.64 .C485 2010", bibdate = "Wed Feb 17 17:03:45 MST 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.nls.uk:7290/voyager", series = "Developer's library", acknowledgement = ack-nhfb, subject = "Cocoa (Application development environment); object-oriented programming (computer science); application program interfaces (computer software); Mac OS X", } @Article{Hicks:2010:LSA, author = "Boniface Hicks and Sandra Rueda and Luke St.Clair and Trent Jaeger and Patrick McDaniel", title = "A logical specification and analysis for {SELinux MLS} policy", journal = j-TISSEC, volume = "13", number = "3", pages = "26:1--26:??", month = jul, year = "2010", CODEN = "ATISBQ", DOI = "http://dx.doi.org/10.1145/1805874.1805982", ISSN = "1094-9224 (print), 1557-7406 (electronic)", bibdate = "Wed Jul 28 14:57:15 MDT 2010", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "The SELinux mandatory access control (MAC) policy has recently added a multilevel security (MLS) model which is able to express a fine granularity of control over a subject's access rights. The problem is that the richness of the SELinux MLS model makes it impractical to manually evaluate that a given policy meets certain specific properties. To address this issue, we have modeled the SELinux MLS model, using a logical specification and implemented that specification in the Prolog language. Furthermore, we have developed some analyses for testing information flow properties of a given policy as well as an algorithm to determine whether one policy is compliant with another. We have implemented these analyses in Prolog and compiled our implementation into a tool for SELinux MLS policy analysis, called PALMS. Using PALMS, we verified some important properties of the SELinux MLS reference policy, namely that it satisfies the simple security condition and {\SGMLsstarf}-property defined by Bell and LaPadula. We also evaluated whether the policy associated to a given application is compliant with the policy of the SELinux system in which it would be deployed.", acknowledgement = ack-nhfb, articleno = "26", keywords = "multilevel security; policy analysis; policy compliance; SELinux", } @Book{Hudson:2010:UUH, editor = "Andrew Hudson and Paul Hudson and Matthew Helmke and Ryan Troy", title = "{Ubuntu} unleashed: covering 9.10 and 10.4", publisher = pub-SAMS, address = pub-SAMS:adr, edition = "Fifth", pages = "864 (est.)", year = "2010", ISBN = "0-672-33109-8", ISBN-13 = "978-0-672-33109-1", LCCN = "QA76.76.O63 U385 2010", bibdate = "Mon Jul 5 08:40:02 MDT 2010", bibsource = "aubrey.tamu.edu:7090/voyager; http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.bibsys.no:2100/BIBSYS", acknowledgement = ack-nhfb, subject = "Ubuntu (Electronic resource); Operating systems (Computers)", tableofcontents = "Install and configure Ubuntu \\ Get all your system s devices and peripherals up and running \\ Configure and use the X Window System \\ Manage Linux services and users \\ Run a printer server \\ Connect to a local network and the Internet \\ Set up and administer a web server with Apache \\ Secure your machine and your network from intruders \\ Learn shell scripting \\ Share files with Windows users using Samba \\ Get productive with OpenOffice.org \\ Play games on Linux \\ Use Linux multimedia programs \\ Create and maintain a MySQL database \\ Configure a firewall \\ Set up an FTP server \\ Use Ubuntu s development and programming tools \\ Tune your Ubuntu system for maximum performance \\ Learn to manage and compile the kernel and modules", xxISBN = "0-7686-9671-2", xxisbn-13 = "978-0-7686-9671-4", } @Article{Israeli:2010:LKC, author = "Ayelet Israeli and Dror G. Feitelson", title = "The {Linux} kernel as a case study in software evolution", journal = j-J-SYST-SOFTW, volume = "83", number = "3", pages = "485--501", month = mar, year = "2010", CODEN = "JSSODM", ISSN = "0164-1212", bibdate = "Tue Sep 7 07:27:05 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; http://www.sciencedirect.com/science/journal/01641212", acknowledgement = ack-nhfb, } @Book{Kerrisk:2010:LPI, author = "Michael Kerrisk", title = "The {Linux} programming interface: a {Linux} and {UNIX} system programming handbook", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "xli + 1506", year = "2010", ISBN = "1-59327-220-0 (hardcover)", ISBN-13 = "978-1-59327-220-3 (hardcover)", LCCN = "QA76.76.O63 K496 2010", bibdate = "Mon Sep 27 10:50:46 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Linux; UNIX (Computer file); Operating systems (Computers)", tableofcontents = "History and standards \\ Fundamental concepts \\ System programming concepts \\ File I/O : the universal I/O model \\ File I/O : further details \\ Processes \\ Memory allocation \\ Users and groups \\ Process credentials \\ Time \\ System limits and options \\ System and process information \\ File I/O buffering \\ File systems \\ File attributes \\ Extended attributes \\ Access control lists \\ Directories and links \\ Monitoring file events \\ Signals : fundamental concepts \\ Signals : signal handlers \\ Signals : advanced features \\ Timers and sleeping \\ Process creation \\ Process termination \\ Monitoring child processes \\ Program execution \\ Process creation and program execution in more detail \\ Threads : introduction \\ Threads : thread synchronization \\ Threads : thread safety and per-thread storage \\ Threads : thread cancellation \\ Threads : further details \\ Process groups, sessions, and job control \\ Process priorities and scheduling \\ Process resources \\ Daemons \\ Writing secure privileged programs \\ Capabilities \\ Login accounting \\ Fundamentals of shared libraries \\ Advanced features of shared libraries \\ Interprocess communication overview \\ Pipes and FIFOs \\ Introduction to System V IPC \\ System V message queues \\ System V semaphores \\ System V shared memory \\ Memory mappings \\ Virtual memory operations \\ Introduction to POSIX IPC \\ POSIX message queues \\ POSIX semaphores \\ POSIX shared memory \\ File locking \\ Sockets : introduction \\ Sockets : UNIX domain \\ Sockets : fundamentals of TCP/IP networks \\ Sockets : Internet domains \\ Sockets : server design \\ Sockets : advanced topics \\ Terminals \\ Alternative I/O models \\ Pseudoterminals \\ Appendixes. Tracing system calls \\ Parsing command-line options \\ Casting the NULL pointer \\ Kernel configuration \\ Further sources of information \\ Solutions to selected exercises", } @Book{Kirk:2010:PMP, author = "David B. Kirk and Wen-mei W. Hwu", title = "Programming massively parallel processors: a hands-on approach", publisher = pub-MORGAN-KAUFMANN, address = pub-MORGAN-KAUFMANN:adr, pages = "xviii + 258", year = "2010", ISBN = "0-12-381472-3", ISBN-13 = "978-0-12-381472-2", LCCN = "QA76.642 .K57 2010", bibdate = "Thu Jul 29 13:33:50 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.bibsys.no:2100/BIBSYS; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, keywords = "CUDA; nVIDIA", subject = "parallel programming (computer science); parallel processing (electronic computers); multiprocessors; computer architecture", } @Book{Kite:2010:MXS, author = "Robert Kite and Michele Hj{\"o}rleifsson and Patrick Gallagher", title = "{Mac OS X} security and mobility v10.6", publisher = pub-PEACHPIT, address = pub-PEACHPIT:adr, pages = "xviii + 317", year = "2010", ISBN = "0-321-63535-3 (paperback)", ISBN-13 = "978-0-321-63535-8 (paperback)", LCCN = "QA76.76.O63 K58 2010", bibdate = "Fri Jul 30 15:30:08 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Apple training series", acknowledgement = ack-nhfb, remark = "A guide to providing secure mobile access to intranet services using Mac OS X Server v10.6 Snow Leopard.", subject = "Mac OS; Computer networks; Security measures; Macintosh (Computer)", } @Book{Love:2010:LKD, author = "Robert Love", title = "{Linux} kernel development", publisher = pub-AW, address = pub-AW:adr, edition = "Third", pages = "xx + 440", year = "2010", ISBN = "0-672-32946-8 (paperback)", ISBN-13 = "978-0-672-32946-3 (paperback)", LCCN = "NLS PB8.210.508/14; QA76.76.O63 L674 2010", bibdate = "Wed Jul 28 20:19:03 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; library.ox.ac.uk:210/ADVANCE", series = "Developer's library: essential references for programming professionals", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Book{Marsh:2010:NCF, author = "Nicholas Marsh", title = "Nmap Cookbook: The Fat-free Guide to Network Scanning", publisher = "CreateSpace", address = "Scotts Valley, CA, USA", pages = "198 (est.)", year = "2010", ISBN = "1-4499-0252-9", ISBN-13 = "978-1-4499-0252-0", LCCN = "????", bibdate = "Thu May 12 08:09:57 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Mauro:2010:DDT, editor = "Jim Mauro and Brendan Gregg and Chad Mynhier and Tariq Magdon-Ismail", title = "{Dtrace}: dynamic tracing in {Solaris}, {Mac OS X} and {FreeBSD}", publisher = pub-PH, address = pub-PH:adr, pages = "x + 285", year = "2010", ISBN = "0-13-706183-8 (hardcover), 0-13-209151-8 (paperback)", ISBN-13 = "978-0-13-706183-9 (hardcover), 978-0-13-209151-0 (paperback)", LCCN = "QA76.76.A63 .D822 2010", bibdate = "Thu Sep 9 14:43:26 MDT 2010", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://proquest.safaribooksonline.com/?fpi=9780137061839", acknowledgement = ack-nhfb, libnote = "Not in my library.", subject = "DTrace; application logging (computer science); debugging in computer science; computer programs", } @Book{Nemeth:2010:ULS, author = "Evi Nemeth and Garth Snyder and Trent R. Hein and Ben Whaley", title = "{UNIX} and {Linux} system administration handbook", publisher = pub-PH, address = pub-PH:adr, edition = "Fourth", pages = "xlvii + 1279", year = "2010", ISBN = "0-13-148005-7", ISBN-13 = "978-0-13-148005-6", LCCN = "QA76.76.O63 N45 2010", bibdate = "Mon Sep 27 11:07:42 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, remark = "Revised edition of \cite{Nemeth:2001:USA}.", subject = "Operating systems (Computers); UNIX (Computer file); Linux", } @Book{Perla:2010:GKE, author = "Enrico Perla and Oldani Massimiliano", title = "A guide to kernel exploitation: attacking the core", publisher = pub-SYNGRESS, address = pub-SYNGRESS:adr, pages = "xxi + 442", year = "2010", ISBN = "1-59749-486-0 (paperback)", ISBN-13 = "978-1-59749-486-1 (paperback)", LCCN = "QA76.76.O63 P5168 2010", bibdate = "Fri Sep 17 08:39:23 MDT 2010", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, subject = "operating systems (computers); security measures; computer security", } @Book{Sanders:2010:CEI, author = "Jason Sanders and Edward Kandrot", title = "{CUDA} by example: an introduction to general-purpose {GPU} programming", publisher = pub-AW, address = pub-AW:adr, pages = "xix + 290", year = "2010", ISBN = "0-13-138768-5", ISBN-13 = "978-0-13-138768-3", LCCN = "QA76.76.A65", bibdate = "Wed Jul 28 23:24:12 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk", acknowledgement = ack-nhfb, keywords = "CUDA; GPU", subject = "application software; development; computer architecture; parallel programming (computer science)", } @Article{Shabtai:2010:SAP, author = "Asaf Shabtai and Yuval Fledel and Yuval Elovici", title = "Securing {Android}-Powered Mobile Devices Using {SELinux}", journal = j-IEEE-SEC-PRIV, volume = "8", number = "3", pages = "36--44", month = may # "\slash " # jun, year = "2010", CODEN = "????", DOI = "http://doi.ieeecomputersociety.org/10.1109/MSP.2009.144", ISSN = "1540-7993 (print), 1558-4046 (electronic)", bibdate = "Wed May 26 15:44:06 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Article{Toomey:2010:FEU, author = "Warren Toomey", title = "{First Edition Unix}: Its Creation and Restoration", journal = j-IEEE-ANN-HIST-COMPUT, volume = "32", number = "3", pages = "74--82", month = jul # "\slash " # sep, year = "2010", CODEN = "IAHCEX", DOI = "http://doi.ieeecomputersociety.org/10.1109/MAHC.2009.55", ISSN = "1058-6180 (print), 1934-1547 (electronic)", ISSN-L = "1058-6180", bibdate = "Tue Nov 23 08:04:35 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Until recently, the earliest versions of the Unix operating system were believed to have been lost completely. In 2008, however, a restoration team from the Unix Heritage Society completed an effort to resurrect and restore the first edition Unix to a running and usable state from a newly discovered listing of the system's assembly source code.", acknowledgement = ack-nhfb, fjournal = "IEEE Annals of the History of Computing", } @Book{vanGumster:2010:GB, author = "Jason van Gumster and Robert Shimonski", title = "{GIMP} bible", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxxv + 722", year = "2010", ISBN = "0-470-52397-2 (paperback), 0-470-63642-4 (e-book)", ISBN-13 = "978-0-470-52397-1 (paperback), 978-0-470-63642-8 (e-book)", LCCN = "T385 .V36 2010", bibdate = "Fri Sep 17 15:22:12 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, remark = "GIMP is a free, Photoshop-like image manipulation program, and as its use grows, so does the demand for detailed instruction on how to get the very most out of it. GIMP Bible is the most comprehensive and current independent GIMP reference available that goes beyond official documentation. If you're a digital artist or photographer, the step-by-step explanations in this authoritative guide show you how to power-use GIMP throughout a production pipeline. Topics include understanding the GIMP interface and how to work with it, how to use all of GIMP's tools to create high-quality images, GIMP's default filters and plug-ins, advanced techniques for customization with Python and Scheme scripting, and much more. Get the most out of this free image editing tool for your production pipeline with the GIMP Bible.", tableofcontents = "What is GIMP? \\ Thinking digitally \\ Working with files \\ A brief overview of GIMP's tools \\ Taking advantage of paths \\ Working with layers and masks \\ Using channels \\ Transforming images \\ Adjusting colors \\ Working with text \\ Painting in GIMP \\ Enhancing photos \\ Implementing blur, enhancement, and distortion filters \\ Using image creation filters \\ Using compositing filters \\ Enhancing images with artistic filters \\ Working with specialized filters \\ Batch processing with automating filters \\ Using GIMP Animation Package \\ Working with video-specific functions in GIMP \\ Finding and installing plug-ins \\ Creating custom effects with scripting \\ Appendix A: Downloading and installing GIMP \\ Appendix B: Setting up external input devices \\ Appendix C: Customizing GIMP \\ Appendix D: Additional resources \\ Appendix E: What's on the web site", } @Book{Veach:2010:SSE, author = "Sharon Veach", title = "{Solaris 10} security essentials", publisher = pub-PH, address = pub-PH:adr, pages = "xxii + 272", year = "2010", ISBN = "0-13-701233-0 (paperback)", ISBN-13 = "978-0-13-701233-6 (paperback)", LCCN = "QA76.9.A25 S65524 2010", bibdate = "Fri May 21 12:36:46 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Solaris system administration series", acknowledgement = ack-nhfb, subject = "Solaris (computer file); computer security; operating systems (computers)", tableofcontents = "Solaris security services \\ Hardening Solaris systems \\ System protection with SMF \\ File system security \\ Privileges and role-based access control \\ Pluggable authentication modules (PAM) \\ Solaris cryptographic framework \\ Key management framework (KMF) \\ Auditing \\ Solaris network security \\ Zones virtualization security \\ Configuring and using trusted extensions", } @Book{Victor:2010:OSS, editor = "Jeff Victor and Jeff Savit and Gary Combs and Simon Hayler and Bob Netherton", title = "{Oracle Solaris 10} system virtualization essentials", publisher = pub-PH, address = pub-PH:adr, pages = "384 (est.)", year = "2010", ISBN = "0-13-708188-X (paperback)", ISBN-13 = "978-0-13-708188-2 (paperback)", LCCN = "QA76.9.V5 O73 2010", bibdate = "Thu Sep 9 14:55:54 MDT 2010", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, subject = "Solaris (Computer file); Virtual computer systems", tableofcontents = "Introduction to virtualization \\ Hard partitioning : dynamic domains \\ Oracle VM Server for SPARC \\ Oracle Solaris 10 as an x86 guest \\ Oracle VM virtualbox \\ Oracle Solaris containers \\ Choosing a virtualization technology \\ Applying virtualization \\ Virtualization management \\ History of virtualization and architectural evolution", } @Book{Watanabe:2010:SZE, author = "Scott Watanabe", title = "{Solaris 10 ZFS} essentials", publisher = pub-PH, address = pub-PH:adr, pages = "xv + 124", year = "2010", ISBN = "0-13-704963-3 (hardback), 0-13-700010-3 (paperback)", ISBN-13 = "978-0-13-704963-9 (hardback), 978-0-13-700010-4 (paperback)", LCCN = "QA76.9.F5", bibdate = "Thu Sep 09 14:57:36 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk", price = "US\$39.99", acknowledgement = ack-nhfb, subject = "Solaris (computer file); file organization (computer science); database management", tableofcontents = "Introduction to ZFS file systems \\ Managing storage pools \\ Installing and booting a ZFS root file system \\ Managing ZFS home directories \\ Exploring Zpool advanced concepts \\ Managing Solaris CIFS server and client \\ Using time slider \\ Creating a ZFS lab in a box", } @Article{Xia:2010:ITA, author = "Liang Xia and Yongxin Zhu and Jun Yang and Jingwei Ye and Zonghua Gu", title = "Implementing a Thermal-Aware Scheduler in {Linux} Kernel on a Multi-Core Processor", journal = j-COMP-J, volume = "53", number = "7", pages = "895--903", month = sep, year = "2010", CODEN = "CMPJA6", DOI = "http://dx.doi.org/10.1093/comjnl/bxp119", ISSN = "0010-4620 (print), 1460-2067 (electronic)", ISSN-L = "0010-4620", bibdate = "Tue Aug 3 15:48:45 MDT 2010", bibsource = "http://comjnl.oxfordjournals.org/content/vol53/issue7/index.dtl; http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://comjnl.oxfordjournals.org/cgi/content/abstract/53/7/895; http://comjnl.oxfordjournals.org/cgi/reprint/53/7/895", acknowledgement = ack-nhfb, } @Book{Zarra:2010:CAS, author = "Marcus Zarra and Matt Long", title = "Core animation: simplified animation techniques for {Mac} and {iPhone} development", publisher = pub-AW, address = pub-AW:adr, pages = "xii + 245", year = "2010", ISBN = "0-321-61775-4 (paperback)", ISBN-13 = "978-0-321-61775-0 (paperback)", LCCN = "TR897.7 .Z37 2010", bibdate = "Fri Jul 30 15:29:47 MDT 2010", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Core frameworks series", acknowledgement = ack-nhfb, subject = "Computer animation; Core animation (Application development environment); Application program interfaces (Computer software); Mac OS; iPhone OS", tableofcontents = "What is core animation? \\ What can and should I animate? \\ Basic animations \\ Keyframe animation \\ Layer transforms \\ Layer filters \\ QuickTime layers \\ OpenGL Layer \\ Quartz composer layer \\ Other useful layers \\ User interaction \\ Performance \\ Core animation on the iPhone", } @Book{Ali:2011:BAS, author = "Shakeel Ali and Tedi Heriyanto", title = "{BackTrack 4}: Assuring Security by Penetration Testing", publisher = "Packt Publishing", address = "Birmingham, UK", pages = "392 (est.)", year = "2011", ISBN = "1-84951-394-5", ISBN-13 = "978-1-84951-394-4", LCCN = "????", bibdate = "Wed May 11 14:10:02 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Blum:2011:LCL, author = "Richard S. Blum", title = "{Linux} command line and shell scripting bible", publisher = pub-WILEY, address = pub-WILEY:adr, edition = "Second", pages = "????", year = "2011", ISBN = "1-118-00442-6 (paperback)", ISBN-13 = "978-1-118-00442-5 (paperback)", LCCN = "????", bibdate = "Mon Mar 28 09:49:25 MDT 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, } @Book{Chao:2011:OSM, editor = "Lee Chao", title = "Open source mobile learning: mobile {Linux} applications", publisher = "Information Science Reference", address = "Hershey, PA, USA", pages = "????", year = "2011", ISBN = "1-60960-613-2", ISBN-13 = "978-1-60960-613-8", LCCN = "LB1044.87 .O64 2011", bibdate = "Mon Mar 28 09:49:04 MDT 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", abstract = "This book helps readers better understand open source software and its application in mobile learning, covering open culture and mobile learning in the open source setting and reviewing the pros and cons of various types of mobile network architecture, mobile devices, open source mobile operating systems, and open source mobile application software.", acknowledgement = ack-nhfb, subject = "Web-based instruction; Linux device drivers (Computer programs); Operating systems (Computers)", } @Book{Dietze:2011:PUS, author = "Martin Dietze", title = "{Praxiskurs Unix-Shell: [werden Sie zum Kommandozeilenvirtuosen, behandelt Bourne-Shell, Korn-Shell, bash and TC-Shell, mit Aufgaben und L{\"o}sungen]}", publisher = pub-ORA, address = pub-ORA:adr, pages = "xxiii + 282", year = "2011", ISBN = "3-89721-565-9", ISBN-13 = "978-3-89721-565-8", LCCN = "????", bibdate = "Mon Mar 28 09:42:34 MDT 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.gbv.de:20011/gvk", price = "EUR 19.90", series = "O'Reilly basics", acknowledgement = ack-nhfb, } @Book{Eckert:2011:LGL, author = "Jason W. Eckert", title = "{Linux+} guide to {Linux} certification", publisher = "Cengage Learning - Delmar", address = "Clifton Park, NY, USA", edition = "Third", pages = "????", year = "2011", ISBN = "1-4188-3721-0, 1-111-54153-1", ISBN-13 = "978-1-4188-3721-1, 978-1-111-54153-8", LCCN = "????", bibdate = "Mon Mar 28 09:49:45 MDT 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, } @Book{Emmons:2011:LOD, author = "Jon Emmons", title = "{Linux} for the {Oracle DBA}: the definitive reference", volume = "40", publisher = "Rampant TechPress", address = "Kittrell, NC, USA", pages = "????", year = "2011", ISBN = "0-9823061-9-9", ISBN-13 = "978-0-9823061-9-2", LCCN = "????", bibdate = "Mon Mar 28 09:50:04 MDT 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Oracle in-focus series", acknowledgement = ack-nhfb, } @Article{Greengard:2011:MRM, author = "Samuel Greengard", title = "In Memoriam: {Robert Morris, 1932--2011}", journal = j-CACM, volume = "54", number = "9", pages = "17--17", month = sep, year = "2011", CODEN = "CACMA2", DOI = "http://dx.doi.org/10.1145/1995376.1995383", ISSN = "0001-0782 (print), 1557-7317 (electronic)", ISSN-L = "0001-0782", bibdate = "Thu Aug 25 17:24:35 MDT 2011", bibsource = "http://www.acm.org/pubs/contents/journals/cacm/; http://www.math.utah.edu/pub/tex/bib/cacm2010.bib; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "Cryptographer and Unix operating system co-creator Robert Morris died June 26 in Lebanon, NH, at the age of 78 from complications of dementia. Morris was a pioneer in developing operating systems and computer security. He also purportedly played a role in one of the world's first cyberattacks during the 1991 Persian Gulf War.", acknowledgement = ack-nhfb, fjournal = "Communications of the ACM", } @Book{Gregg:2011:DTO, author = "Brendan Gregg and Jim Mauro", title = "Dynamic tracing in {Oracle Solaris}, {Mac OS X}, and {FreeBSD}", publisher = pub-PH, address = pub-PH:adr, pages = "x + 285", year = "2011", ISBN = "0-13-209151-8", ISBN-13 = "978-0-13-209151-0", LCCN = "QA76.9.D43 G74 2011", bibdate = "Mon Mar 28 08:37:32 MDT 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Debugging in computer science; Solaris (Computer file); Mac OS; FreeBSD", tableofcontents = "Introduction to DTrace \\ D language \\ System view \\ Disk I/O \\ Filesystems \\ Network lower level protocols \\ Application level protocols \\ Languages \\ Applications \\ Databases \\ Security \\ Kernel \\ Tools \\ Tips and tricks", } @Book{Hansteen:2011:BPN, author = "Peter N. M. Hansteen", title = "The book of {PF}: a no-nonsense guide to the {OpenBSD} firewall", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, edition = "Second", pages = "xx + 188", year = "2011", ISBN = "1-59327-274-X", ISBN-13 = "978-1-59327-274-6", LCCN = "TK5105.585 .H385 2011", bibdate = "Wed May 4 09:09:09 MDT 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "OpenBSD (Electronic resource); TCP/IP (Computer network protocol); Firewalls (Computer security)", } @Book{Haverbeke:2011:EJM, author = "Marijn Haverbeke", title = "Eloquent {JavaScript}: a modern introduction to programming", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "xiv + 205", year = "2011", ISBN = "1-59327-282-0", ISBN-13 = "978-1-59327-282-1", LCCN = "QA76.73.J39 HAV 2011; QA76.73.J39 H38 2009", bibdate = "Wed Apr 27 11:18:12 MDT 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; library.ox.ac.uk:210/ADVANCE", URL = "http://www.loc.gov/catdir/enhancements/fy1012/2010032246-b.html; http://www.loc.gov/catdir/enhancements/fy1012/2010032246-d.html; http://www.loc.gov/catdir/enhancements/fy1107/2010032246-t.html", acknowledgement = ack-nhfb, subject = "JavaScript (Computer program language)", } @Book{Helmke:2011:UUC, author = "Matthew Helmke and Andrew Hudson and Paul Hudson", title = "{Ubuntu} unleashed: covering 10.10 and 11.04", publisher = pub-SAMS, address = pub-SAMS:adr, edition = "Sixth", pages = "????", year = "2011", ISBN = "0-672-33344-9", ISBN-13 = "978-0-672-33344-6", LCCN = "QA76.76.O63 U36 2010", bibdate = "Mon Mar 28 09:50:23 MDT 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, remark = "Revised edition of: Ubuntu unleashed : covering 9.10 and 10.4 / Andrew Hudson et al. 2010.", subject = "Ubuntu (Electronic resource); Linux; Operating systems (Computers)", } @Book{Ligh:2010:MAC, author = "Michael W. Ligh and others", title = "{Malware} analyst's cookbook and {DVD}: tools and techniques for fighting malicious code", publisher = pub-WILEY, address = pub-WILEY:adr, pages = "xxvi + 716", year = "2011", ISBN = "0-470-61303-3 (paperback)", ISBN-13 = "978-0-470-61303-0 (paperback)", LCCN = "QA76.9.A25 M35 2011", bibdate = "Wed May 11 14:13:02 MDT 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, } @Book{Liu:2011:UOS, author = "Yukun Liu", title = "{Unix} operating system: the development tutorial via {Unix Kernel Services}", publisher = pub-SV, address = pub-SV:adr, pages = "????", year = "2011", ISBN = "3-642-20431-7", ISBN-13 = "978-3-642-20431-9", LCCN = "????", bibdate = "Mon Mar 28 09:15:34 MDT 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, } @Article{Palix:2011:FLT, author = "Nicolas Palix and Ga{\"e}l Thomas and Suman Saha and Christophe Calv{\`e}s and Julia Lawall and Gilles Muller", title = "Faults in {Linux}: ten years later", journal = j-COMP-ARCH-NEWS, volume = "39", number = "1", pages = "305--318", month = mar, year = "2011", CODEN = "CANED2", DOI = "http://dx.doi.org/10.1145/1961295.1950401", ISSN = "0163-5964 (ACM), 0884-7495 (IEEE)", bibdate = "Thu Aug 18 13:45:25 MDT 2011", bibsource = "http://portal.acm.org/; http://www.math.utah.edu/pub/tex/bib/unix.bib", abstract = "In 2001, Chou et al. published a study of faults found by applying a static analyzer to Linux versions 1.0 through 2.4.1. A major result of their work was that the drivers directory contained up to 7 times more of certain kinds of faults than other directories. This result inspired a number of development and research efforts on improving the reliability of driver code. Today Linux is used in a much wider range of environments, provides a much wider range of services, and has adopted a new development and release model. What has been the impact of these changes on code quality? Are drivers still a major problem?\par To answer these questions, we have transported the experiments of Chou et al. to Linux versions 2.6.0 to 2.6.33, released between late 2003 and early 2010. We find that Linux has more than doubled in size during this period, but that the number of faults per line of code has been decreasing. And, even though drivers still accounts for a large part of the kernel code and contains the most faults, its fault rate is now below that of other directories, such as arch (HAL) and fs (file systems). These results can guide further development and research efforts. To enable others to continually update these results as Linux evolves, we define our experimental protocol and make our checkers and results available in a public archive.", acknowledgement = ack-nhfb, fjournal = "ACM SIGARCH Computer Architecture News", } @Book{Publishers:2011:LIQ, author = "Vibrant Publishers", title = "{Linux} interview questions you'll most likely be asked", publisher = "Vibrant Publishers", address = "Erie, CO, USA", pages = "????", year = "2011", ISBN = "1-4564-7381-6", ISBN-13 = "978-1-4564-7381-5", LCCN = "????", bibdate = "Mon Mar 28 09:51:03 MDT 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Interview questions you'll most likely be asked", acknowledgement = ack-nhfb, } @Book{Publishers:2011:UIQ, author = "{Vibrant Publishers}", title = "{Unix} interview questions you'll most likely be asked", publisher = "Vibrant Publishers", address = "Erie, CO, USA", pages = "????", year = "2011", ISBN = "1-4564-8274-2", ISBN-13 = "978-1-4564-8274-9", LCCN = "????", bibdate = "Mon Mar 28 09:15:14 MDT 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Interview questions you'll most likely be asked", acknowledgement = ack-nhfb, } @Book{Regupathy:2011:BYL, author = "Rajaram Regupathy", title = "Bootstrap yourself with {Linux-USB} strap: design, develop, debug, and validate embedded {USB}", publisher = "Cengage Learning", address = "Boston, MA, USA", pages = "????", year = "2011", ISBN = "1-4354-5786-2", ISBN-13 = "978-1-4354-5786-7", LCCN = "????", bibdate = "Mon Mar 28 09:50:42 MDT 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, } @Book{Savio:2011:OCL, author = "Hubert Savio", title = "{Oracle Certified Linux Expert} exam cram: {OCE} exam: {1Z0-046}: managing {Oracle on Linux Certified Expert}", volume = "38", publisher = "Rampant TechPress", address = "Kittrell, NC, USA", pages = "????", year = "2011", ISBN = "0-9844282-1-6", ISBN-13 = "978-0-9844282-1-2", LCCN = "????", bibdate = "Mon Mar 28 09:51:23 MDT 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", series = "Oracle in-focus series", acknowledgement = ack-nhfb, } @Book{Tommasino:2011:HGR, author = "Damian Tommasino", title = "Hands-on guide to the {Red Hat} exams: {RHCSA} and {RHCE} cert guide and lab manual", publisher = "Pearson", address = "Indianapolis, IN, USA", pages = "????", year = "2011", ISBN = "0-321-76795-0", ISBN-13 = "978-0-321-76795-0", LCCN = "QA76.76.O63 T6494 2011", bibdate = "Mon Mar 28 09:51:42 MDT 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Linux; Examinations; Study guides; Electronic data processing personnel; Certification; Operating systems (Computers)", } @Article{Toomey:2011:SBL, author = "Warren Toomey", title = "The Strange Birth and Long Life of {Unix}: The classic operating system turns 40, and its progeny abound", journal = j-IEEE-SPECTRUM, volume = "48", number = "12", pages = "34--55", month = dec, year = "2011", CODEN = "IEESAM", DOI = "http://dx.doi.org/10.1109/MSPEC.2011.6085780", ISSN = "0018-9235 (print), 1939-9340 (electronic)", ISSN-L = "0018-9235", bibdate = "Fri Dec 02 10:58:59 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://spectrum.ieee.org/computing/software/the-strange-birth-and-long-life-of-unix", acknowledgement = ack-nhfb, fjournal = "IEEE Spectrum", } @Book{Wang:2011:ML, author = "Paul S. Wang", title = "Mastering {Linux}", publisher = pub-CHAPMAN-HALL-CRC, address = pub-CHAPMAN-HALL-CRC:adr, pages = "????", year = "2011", ISBN = "1-4398-0686-1", ISBN-13 = "978-1-4398-0686-9", LCCN = "QA76.76.O63 W365143 2011", bibdate = "Mon Mar 28 09:52:01 MDT 2011", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; z3950.loc.gov:7090/Voyager", acknowledgement = ack-nhfb, subject = "Linux; Operating systems (Computers)", } @Book{Halvorsen:2011:XIK, author = "Ole Henry Halvorsen", title = "{OS X} and {iOS} Kernel Programming", publisher = pub-APRESS, address = pub-APRESS:adr, pages = "300 (est.)", year = "2011", ISBN = "1-4302-3536-5", ISBN-13 = "978-1-4302-3536-1", LCCN = "????", bibdate = "Fri Dec 2 10:42:50 MST 2011", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Book{Comer:2012:OSD, author = "Douglas E. Comer", title = "Operating system design: the {Xinu} approach, {Linksys} version", publisher = pub-CRC, address = pub-CRC:adr, pages = "xxii + 604", year = "2012", ISBN = "1-4398-8109-X (hardcover)", ISBN-13 = "978-1-4398-8109-5 (hardcover)", LCCN = "QA76.76.O63 C65 2012", bibdate = "Thu Feb 9 18:02:55 MST 2012", bibsource = "fsz3950.oclc.org:210/WorldCat; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, subject = "Operating systems (Computers); System design; Xinu", } %%% ==================================================================== %%% Cross-referenced entries must come last: @Proceedings{Tobias:1980:LDP, editor = "Jeffrey M. Tobias", booktitle = "Language design and programming methodology: proceedings of a symposium held at Sydney, Australia, 10--11 September 1979", title = "Language design and programming methodology: proceedings of a symposium held at Sydney, Australia, 10--11 September 1979", volume = "79", publisher = pub-SV, address = pub-SV:adr, pages = "255", year = "1980", CODEN = "LNCSD9", ISBN = "0-387-09745-7", ISBN-13 = "978-0-387-09745-9", ISSN = "0302-9743 (print), 1611-3349 (electronic)", LCCN = "QA76.7 .S94 1979", bibdate = "Fri Apr 12 07:21:44 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Sponsored by the Australian Atomic Energy Commission and the University of New South Wales.", series = ser-LNCS, acknowledgement = ack-nhfb, keywords = "electronic digital computers --- programming --- congresses; programming languages (electronic computers) --- congresses", } @Book{Nievergelt:1982:DPS, editor = "J. Nievergelt and G. Coray and J.-D. Nicoud and A. C. Shaw", booktitle = "Document Preparation Systems: A Collection of Survey Articles", title = "Document Preparation Systems: {A} Collection of Survey Articles", publisher = pub-ENH, address = pub-ENH:adr, pages = "xiv + 274", year = "1982", ISBN = "0-444-86493-8", ISBN-13 = "978-0-444-86493-2", LCCN = "Z244 .D63 1982", bibdate = "Sat Nov 12 21:44:28 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", price = "US\$46.50", acknowledgement = ack-nhfb, keywords = "algorithms; human factors; languages; theory", review = "ACM CR 40376", subject = "H.1 Information Systems, MODELS AND PRINCIPLES, User/Machine Systems \\ I.7 Computing Methodologies, TEXT PROCESSING, Text Editing \\ I.7 Computing Methodologies, TEXT PROCESSING, Document Preparation J Computer Applications, COMPUTERS IN OTHER SYSTEMS", } @Proceedings{IEEE:1983:CLC, editor = "{IEEE}", booktitle = "8th Conference on Local Computer Networks, Hilton Inn, Minneapolis, Minnesota, October 17--19, 1983", title = "8th Conference on Local Computer Networks, Hilton Inn, Minneapolis, Minnesota, October 17--19, 1983", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "vi + 89", year = "1983", CODEN = "CLCPDN", ISBN = "0-8186-0500-6 (paperback), 0-8186-8500-X", ISBN-13 = "978-0-8186-0500-0 (paperback), 978-0-8186-8500-2", LCCN = "TK 5105.5 C66 1983", bibdate = "Sat Sep 25 20:21:07 MDT 1999", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "IEEE catalog no. 83CH1931-5. Computer Society order no. 500.", acknowledgement = ack-nhfb, classification = "723", conference = "8th Conference on Local Computer Networks.", conflocation = "Minneapolis, MN, USA", journalabr = "Conf Local Comput Networks", keywords = "computer networks; network applications; network performance; network protocols", meetingaddress = "Minneapolis, MN, USA", pagecount = "89", sponsor = "IEEE Computer Soc, Technical Committee on Computer Communications, Los Alamitos, Calif, USA", } @Proceedings{Miller:1984:PPF, editor = "John J. H. Miller", booktitle = "{PROTEXT I}: Proceedings of the First International Conference on Text Processing Systems held in Dublin from 24th to 26th October, 1984", title = "{PROTEXT I}: Proceedings of the First International Conference on Text Processing Systems held in Dublin from 24th to 26th October, 1984", publisher = pub-BP, address = pub-BP:adr, pages = "vii + 59", year = "1984", ISBN = "0-906783-41-0 (hardcover), 0-906783-42-9 (paper)", ISBN-13 = "978-0-906783-41-2 (hardcover), 978-0-906783-42-9 (paper)", LCCN = "QA76.9.T48 I591 1984", bibdate = "Fri Jul 22 09:32:58 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-hk, } @Proceedings{Anonymous:1986:IIC, editor = "Anonymous", booktitle = "IMS '86: 2nd International conference --- October 1986, Boston, MA", title = "{IMS} '86: 2nd International conference --- October 1986, Boston, {MA}", publisher = "Intertec Communications", address = "????", pages = "????", year = "1986", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Official Proceedings of the International IMS Conference 1986; 2nd", acknowledgement = ack-nhfb, } @Book{Stonebraker:1988:RDS, editor = "Michael Stonebraker", booktitle = "Readings in Database Systems", title = "Readings in Database Systems", publisher = pub-MORGAN-KAUFMANN, address = pub-MORGAN-KAUFMANN:adr, pages = "xii + 644", year = "1988", ISBN = "0-934613-65-6", ISBN-13 = "978-0-934613-65-1", LCCN = "QA76.9.D3 R4 1988", bibdate = "Tue Jul 19 00:53:02 1994", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Contains reprint of \cite{Litwin:1980:LHN}.", price = "US\$29.95", abstract = "The purpose of this collection is to assemble significant research contributions so they are easily access-ible to anyone interested in database research. It is appropriate for use as an introduction for students or professionals from industry, and as a reference volume to anyone active in database systems \ldots. It is intended to serve as a core of material that any DBMS professional should be familiar with. Moreover, any industrial practitioner or graduate student who wishes to be current on the important research themes would be well advised to read these papers.", acknowledgement = ack-nhfb, bookpages = "xii + 644", } @Proceedings{Steels:1990:EEC, editor = "Luc Steels", booktitle = "Europal 90: Proceedings of the First European Conference on the Practical Application of Lisp, Churchill College, Cambridge", title = "Europal 90: Proceedings of the First European Conference on the Practical Application of Lisp, Churchill College, Cambridge", publisher = "Europal", address = "Dorking, UK", pages = "375", year = "1990", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Wed Aug 6 19:05:25 MDT 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Proceedings{USENIX:1990:USI, editor = "{USENIX Association}", booktitle = "{UNIX} Security {II}: {USENIX} workshop proceedings, August 27--28, 1990, Portland, Oregon", title = "{UNIX} Security {II}: {USENIX} workshop proceedings, August 27--28, 1990, Portland, Oregon", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "173", year = "1990", ISBN = "????", ISBN-13 = "????", LCCN = "QA 76.9 A25 U55 1990", bibdate = "Sun Feb 18 09:36:47 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, keywords = "computers --- access control --- congresses; UNIX (computer file) --- congresses", } @Proceedings{IEEE:1991:PIN, editor = "{IEEE}", booktitle = "Proceedings of the IEEE 1991 National Aerospace and Electronics Conference, NAECON 1991, held at the Dayton Convention Center, May 20--24, 1991", title = "Proceedings of the {IEEE} 1991 National Aerospace and Electronics Conference, {NAECON} 1991, held at the Dayton Convention Center, May 20--24, 1991", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "various", year = "1991", CODEN = "NASEA9", ISBN = "0-7803-0085-8", ISBN-13 = "978-0-7803-0085-9", LCCN = "TL 693 N37 1991", bibdate = "Wed Sep 29 08:29:22 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Three volumes.", acknowledgement = ack-nhfb, } @Proceedings{IEEE:1991:RTS, editor = "IEEE", booktitle = "REAL TIME '91: Seventh Conference REAL TIME '91 on Computer Applications in Nuclear, Particle, and Plasma Physics: June 24--28, 1991, Julich, Fed. Rep. of Germany: together with short course on new backplane bus architectures and seminar on real time operating systems", title = "{REAL} {TIME} '91: Seventh Conference {REAL} {TIME} '91 on Computer Applications in Nuclear, Particle, and Plasma Physics: June 24--28, 1991, Julich, Fed. Rep. of Germany: together with short course on new backplane bus architectures and seminar on real time operating systems", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "471", year = "1991", ISBN = "0-7803-0458-6, 0-7803-0459-4", ISBN-13 = "978-0-7803-0458-1, 978-0-7803-0459-8", LCCN = "QA76.54.C66 1991", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Real Time -conference- 1991; 7th", acknowledgement = ack-nhfb, sponsor = "KFA Forschungszentrum Julich GmbH. IEEE; Nuclear and Plasma Physics Society; Technical Committee on Computer Applications in Nuclear and Plasma Sciences.", } @Proceedings{ACM:1992:PAC, editor = "{ACM}", booktitle = "Proceedings of the 1992 ACM Conference on LISP and Functional Programming: papers presented at the conference, San Francisco, California, June 22--24, 1992", title = "Proceedings of the 1992 {ACM} Conference on {LISP} and Functional Programming: papers presented at the conference, San Francisco, California, June 22--24, 1992", publisher = pub-ACM, address = pub-ACM:adr, pages = "viii + 357", year = "1992", ISBN = "0-89791-481-3, 0-89791-483-X", ISBN-13 = "978-0-89791-481-9, 978-0-89791-483-3", LCCN = "QA76.73.L23A26 1992", bibdate = "Thu Aug 07 12:01:22 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "LISP pointers, volume V, number 1, January-March 1992. ACM order no. 552920.", acknowledgement = ack-nhfb, confdate = "22--24 June 1992", conflocation = "San Francisco, CA, USA", confsponsor = "ACM", keywords = "Common Lisp; Data abstraction; Digital storage; Dynamic program parallelization; Fixed point iteration; Formal logic; Functional programming; Garbage collection; Lambda tagging; Lazy pattern matching; Linear logic; Lisp (programming language); Parallel processing systems; Program compilers; Programming theory", pubcountry = "USA", } @Proceedings{NIST:1992:NCS, editor = "{NIST}", booktitle = "15th National Computer Security Conference: October 13--16, 1992, Baltimore Convention Center, Baltimore, MD: information systems security, building blocks to the future", title = "15th National Computer Security Conference: October 13--16, 1992, Baltimore Convention Center, Baltimore, {MD}: information systems security, building blocks to the future", publisher = pub-NIST, address = pub-NIST:adr, pages = "various", year = "1992", ISBN = "????", ISBN-13 = "????", LCCN = "QA76.9.A25 N38 1992", bibdate = "Mon Dec 28 10:08:26 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "Two volumes.", acknowledgement = ack-nhfb, } @Proceedings{ACM:1993:TCS, editor = "ACM", booktitle = "TRI-Ada '93: Conference --- September 1993, Seattle, WA", title = "{TRI}-Ada '93: Conference --- September 1993, Seattle, {WA}", publisher = pub-ACM, address = pub-ACM:adr, pages = "vii + 482", year = "1993", ISBN = "0-89791-621-2", ISBN-13 = "978-0-89791-621-9", LCCN = "????", bibdate = "Thu Sep 04 12:56:10 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "ACM Order No. 825930.", series = "TRIADA -proceedings- 1993", acknowledgement = ack-nhfb, sponsor = "Association for Computing Machinery; SIGAda.", } @Proceedings{Anonymous:1993:CSA, editor = "Anonymous", booktitle = "Computer security, audit and control: Proceedings of COMPSEC International October 1993. Oxford, UK", title = "Computer security, audit and control: Proceedings of {COMPSEC} International October 1993. Oxford, {UK}", publisher = "Elsevier Advanced Technology", address = "Oxford, UK", pages = "v + 576", year = "1993", ISBN = "1-85617-211-2", ISBN-13 = "978-1-85617-211-0", LCCN = "QA76.9.A25 W68 1993", bibdate = "Fri Sep 03 08:11:04 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Proceedings{Anonymous:1993:PFA, editor = "Anonymous", booktitle = "Proceedings of the fifth annual Embedded Systems Conference: Santa Clara, California, October 5--8, 1993", title = "Proceedings of the fifth annual Embedded Systems Conference: Santa Clara, California, October 5--8, 1993", volume = "1", publisher = "Millar Freeman", address = "San Francisco, CA, USA", pages = "Various", year = "1993", ISBN = "0-87930-306-9", ISBN-13 = "978-0-87930-306-8", LCCN = "TK7895.E42 E53 1993", bibdate = "Fri Sep 03 08:06:16 1999", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Proceedings of the Annual Embedded Systems Conference 1993", acknowledgement = ack-nhfb, } @Proceedings{Anonymous:1993:PPC, editor = "Anonymous", booktitle = "Partners in progress: Conference --- April 1993, Phoenix, AZ", title = "Partners in progress: Conference --- April 1993, Phoenix, {AZ}", publisher = "USE Incorporated", address = "Lamham", pages = "????", year = "1993", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Spring Conference --- Use Incorporated 1993", acknowledgement = ack-nhfb, sponsor = "USE Incorporated.", } @Proceedings{Anonymous:1993:SAC, editor = "Anonymous", booktitle = "Systems administration: 7th Conference --- November 1993, Monterey, CA", title = "Systems administration: 7th Conference --- November 1993, Monterey, {CA}", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "v + 256", year = "1993", ISBN = "1-880446-56-1", ISBN-13 = "978-1-880446-56-0", LCCN = "QA76.76.O63 L37 1993", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Proceedings of the Systems Administration Conference 1993; 7th", acknowledgement = ack-nhfb, sponsor = "USENIX Association.", } @Proceedings{IEEE:1993:DTD, key = "ITC'93", booktitle = "Designing, testing, and diagnostics --- join them: International Test Conference 1993 proceedings: October 17--21, 1993, Convention Center, Baltimore, Maryland, USA", title = "Designing, testing, and diagnostics --- join them: International Test Conference 1993 proceedings: October 17--21, 1993, Convention Center, Baltimore, Maryland, {USA}", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xii + 1065", year = "1993", ISBN = "0-7803-1429-8", ISBN-13 = "978-0-7803-1429-0", LCCN = "TK7874.I474 1993", bibdate = "Sat May 25 08:39:55 1996", bibsource = "Compendex database; http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "IEEE catalog number 93CH3356-3.", series = j-PROC-INT-TEST-CONF, acknowledgement = ack-nhfb, } @Proceedings{USENIX:1993:PWU, editor = "{USENIX Association}", booktitle = "Proceedings of the Winter 1993 {USENIX} Conference: January 25--29, 1993, San Diego, California, {USA}", title = "Proceedings of the Winter 1993 {USENIX} Conference: January 25--29, 1993, San Diego, California, {USA}", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "x + 530", year = "1993", ISBN = "1-880446-48-0", ISBN-13 = "978-1-880446-48-5", LCCN = "QA 76.76 O63 U84 1993", bibdate = "Sun Feb 18 07:46:09 MST 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, annote = "Spine title: USENIX San Diego conference proceedings, winter 1993. Running title: 1993 winter USENIX, January 25--29, 1993, San Diego, CA.", keywords = "Computer networks --- Congresses.; Operating systems (Computers) --- Congresses; Programming (Electronic computers) --- Congresses; UNIX (Computer file) --- Congresses", } @Proceedings{Anonymous:1994:USC, editor = "Anonymous", booktitle = "USENIX Summer conference: --- June 1994, Boston, MA", title = "{USENIX} Summer conference: -- June 1994, Boston, {MA}", publisher = pub-USENIX, address = pub-USENIX:adr, pages = "316", year = "1994", ISBN = "1-880446-62-6", ISBN-13 = "978-1-880446-62-1", LCCN = "QA 76.76 O63 U83 1994", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "USENIX Conference Proceedings 1994", acknowledgement = ack-nhfb, } @Proceedings{IEEE:1994:PFI, editor = "IEEE", booktitle = "Proceedings: the First International Conference on Requirements Engineering, April 18--22, 1994, Colorado Springs, Colorado", title = "Proceedings: the First International Conference on Requirements Engineering, April 18--22, 1994, Colorado Springs, Colorado", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xii + 246", year = "1994", ISBN = "0-8186-5480-5, 0-8186-5481-3", ISBN-13 = "978-0-8186-5480-0, 978-0-8186-5481-7", LCCN = "QA76.758.I5717 1994", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "International Conference on Requirements Engineering 1994; 1st", acknowledgement = ack-nhfb, sponsor = "IEEE Computer Society; Technical Committee on Software Engineering.", } @Proceedings{IEEE:1994:PSH, editor = "{IEEE}", booktitle = "Proceedings of the Scalable High-Performance Computing Conference, May 23--25, 1994, Knoxville, Tennessee", title = "Proceedings of the Scalable High-Performance Computing Conference, May 23--25, 1994, Knoxville, Tennessee", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xviii + 852", year = "1994", ISBN = "0-8186-5680-8, 0-8186-5681-6", ISBN-13 = "978-0-8186-5680-4, 978-0-8186-5681-1", LCCN = "QA76.58.S32 1994", bibdate = "Thu Feb 29 17:59:11 MST 1996", bibsource = "ftp://ftp.math.utah.edu/pub/bibnet/authors/d/dongarra-jack-j.b ib; http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, sponsor = "IEEE Computer Society; Technical Committee on Supercomputing Applications.", } @Proceedings{IEEE:1994:ROS, editor = "IEEE", booktitle = "Real-time operating systems and software: RTOSS '94: 11th Workshop --- May 1994, Seattle, WA", title = "Real-time operating systems and software: {RTOSS} '94: 11th Workshop --- May 1994, Seattle, {WA}", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "viii + 117", year = "1994", ISBN = "0-8186-5710-3", ISBN-13 = "978-0-8186-5710-8", LCCN = "QA76.54.I173 1994", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "IEEE Workshop on Real Time Operating Systems and Software 1994; 11th", acknowledgement = ack-nhfb, sponsor = "IEEE; Computer Society; Technical Committee on Real-Time Systems.", } @Proceedings{Anonymous:1995:AUA, editor = "Anonymous", booktitle = "Ada UK Ada 9X academic seminar: --- January 1994, Brighton", title = "{Ada UK Ada 9X} academic seminar: -- January 1994, Brighton", volume = "16 (3)", publisher = pub-IOS, address = pub-IOS:adr, pages = "????", year = "1995", ISSN = "0268-652x", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Ada User Journal 1995", acknowledgement = ack-nhfb, sponsor = "University of Brighton. Department of Computing.", } @Proceedings{Anonymous:1995:SPA, editor = "Anonymous", booktitle = "Signal processing applications and technology: 6th International conference --- October 1995, Boston, MA", title = "Signal processing applications and technology: 6th International conference --- October 1995, Boston, {MA}", volume = "2", publisher = "DSP Associates", address = "????", pages = "????", year = "1995", bibdate = "Sat May 25 07:59:58 MDT 1996", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "International Conference on Signal Processing Applications and Technology 1995", acknowledgement = ack-nhfb, } @Proceedings{Spitz:1995:IAP, editor = "A. L. Spitz and A. . Dengel", booktitle = "International Association for Pattern Recognition Workshop on Document Analysis Systems", title = "International Association for Pattern Recognition Workshop on Document Analysis Systems", volume = "14", publisher = pub-WORLD-SCI, address = pub-WORLD-SCI:adr, pages = "ix + 471", year = "1995", ISBN = "981-02-2122-3, 981-02-2122-3", ISBN-13 = "978-981-02-2122-5, 978-981-02-2122-5", LCCN = "TK7882.P3I55 1994", bibdate = "Fri Apr 24 15:18:27 MDT 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", series = "Series in machine perception and artificial intelligence", acknowledgement = ack-nhfb, conflocation = "Kaiserslautern, Germany; Oct. 1994", conftitle = "Proceedings of the International Association for Pattern Recognition Workshop", corpsource = "AT\&T Bell Labs., Murray Hill, NJ, USA", pubcountry = "Singapore", treatment = "P Practical", } @Proceedings{UC:1996:PCT, editor = "{Unicode Consortium}", booktitle = "Pre-conference tutorials proceedings: Software development + the Internet: going global with Unicode: Ninth International Unicode Conference, San Jose, CA, September 4--6 1996", title = "Pre-conference tutorials proceedings: Software development + the Internet: going global with Unicode: Ninth International Unicode Conference, San Jose, {CA}, September 4--6 1996", publisher = pub-UNICODE, address = pub-UNICODE-SAN-JOSE:adr, pages = "????", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Apr 23 16:31:58 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "A1. Input method design / by Mark Leisher -- A2. Weaving the multilingual web: standards and their implementations / by Martin Durst \ldots{} [et al.] -- B1. National language and Unicode support in relational databases and SQL2/3 / by Stefan Buchta -- B2. The Unicode Standard: version 2 / by Asmus Freytag -- C1/C2. Non-Latin writing systems: characteristics and impacts on multinational product design / by Richard Ishida.", acknowledgement = ack-nhfb, keywords = "Character sets (Data processing) -- Congresses; Coding theory -- Congresses", } @Proceedings{UC:1996:SDI, editor = "{Unicode Consortium}", booktitle = "Software Development + the {Internet}: Going Global with {Unicode}: Ninth International {Unicode} Conference, 4--6 September, San Jose, California, USA", title = "Software Development + the {Internet}: Going Global with {Unicode}: Ninth International {Unicode} Conference, 4--6 September, San Jose, California, {USA}", publisher = pub-UNICODE, address = pub-UNICODE-SAN-JOSE:adr, pages = "????", year = "1996", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Thu Apr 23 14:27:20 1998", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.unicode.org/unicode/iuc9conf/index.html; http://www.unicode.org/unicode/uni2book/u2ord.html", acknowledgement = ack-nhfb, keywords = "Character sets (Data processing) -- Congresses; Coding theory -- Congresses", } @Proceedings{ACM:1997:PEA, editor = "{ACM}", booktitle = "Proceedings of the Eighth Annual ACM-SIAM Symposium on Discrete Algorithms, New Orleans, Louisiana, January 5--7, 1997", title = "Proceedings of the Eighth Annual {ACM}-{SIAM} Symposium on Discrete Algorithms, New Orleans, Louisiana, January 5--7, 1997", publisher = pub-ACM, address = pub-ACM:adr, pages = "788", year = "1997", CODEN = "PAAAF2", ISBN = "0-89871-390-0", ISBN-13 = "978-0-89871-390-9", LCCN = "????", bibdate = "Thu Sep 11 18:03:49 1997", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.acm.org/pubs/contents/proceedings/soda/314161/", acknowledgement = ack-nhfb, } @Proceedings{IEEE:2002:STI, editor = "{IEEE}", booktitle = "{SC2002}: From Terabytes to Insight. Proceedings of the {IEEE ACM SC 2002 Conference, November 16--22, 2002, Baltimore, MD, USA}", title = "{SC2002}: From Terabytes to Insight. Proceedings of the {IEEE ACM SC 2002 Conference, November 16--22, 2002, Baltimore, MD, USA}", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "????", year = "2002", ISBN = "0-7695-1524-X", ISBN-13 = "978-0-7695-1524-3", LCCN = "????", bibdate = "Thu Feb 21 18:29:36 2002", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Proceedings{ACM:2003:SPA, editor = "{ACM}", booktitle = "{SOSP '03: proceedings of the 19th ACM Symposium on Operating Systems Principles: the Sagamore, Bolton Landing, Lake George, New York, USA, October 19--22, 2003}", title = "{SOSP '03: proceedings of the 19th ACM Symposium on Operating Systems Principles: the Sagamore, Bolton Landing, Lake George, New York, USA, October 19--22, 2003}", volume = "37(5)", publisher = pub-ACM, address = pub-ACM:adr, pages = "x + 330", month = dec, year = "2003", ISBN = "1-58113-757-5", ISBN-13 = "978-1-58113-757-6", ISSN = "0163-5980", bibdate = "Wed Nov 30 07:45:41 MST 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", note = "ACM order number 534030.", series = "Operating systems review", URL = "ftp://uiarchive.cso.uiuc.edu/pub/etext/gutenberg/; http://uclibs.org/PID/34720", acknowledgement = ack-nhfb, subject = "Operating systems (Computers); Congresses", } @Proceedings{IEEE:2003:PCI, editor = "{IEEE}", booktitle = "{Proceedings of the 2003 CGO: the International Symposium on Code Generation and Optimization; March 23--26, 2003, Fisherman's Wharf, San Francisco, CA, with special emphasis on feedback-directed and runtime optimization}", title = "{Proceedings of the 2003 CGO: the International Symposium on Code Generation and Optimization; March 23--26, 2003, Fisherman's Wharf, San Francisco, CA, with special emphasis on feedback-directed and runtime optimization}", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xv + 347", year = "2003", ISBN = "0-7695-1913-X", ISBN-13 = "978-0-7695-1913-5", LCCN = "????", bibdate = "Thu Jun 09 18:51:49 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", note = "ACM Order No. 530033.", acknowledgement = ack-nhfb, keywords = "EPIC; Intel IA-64; Itanium", } @Proceedings{ACM:2004:SHP, editor = "{ACM}", booktitle = "{SC 2004: High Performance Computing, Networking and Storage: Bridging communities: Proceedings of the IEEE\slash ACM Supercomputing 2004 Conference, Pittsburgh, PA, November 6--12, 2004}", title = "{SC 2004: High Performance Computing, Networking and Storage: Bridging communities: Proceedings of the IEEE\slash ACM Supercomputing 2004 Conference, Pittsburgh, PA, November 6--12, 2004}", publisher = pub-ACM # " and " # pub-IEEE, address = pub-ACM:adr # " and " # pub-IEEE:adr, pages = "????", year = "2004", ISBN = "0-7695-2153-3", ISBN-13 = "978-0-7695-2153-4", LCCN = "????", bibdate = "Tue Dec 27 08:08:01 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", acknowledgement = ack-nhfb, } @Proceedings{IEEE:2004:PIS, editor = "IEEE", booktitle = "{Proceedings: 37th International Symposium on Microarchitecture, MICRO-37: 4--8 December 2004, Portland, Oregon}", title = "{Proceedings: 37th International Symposium on Microarchitecture, MICRO-37: 4--8 December 2004, Portland, Oregon}", publisher = pub-IEEE, address = pub-IEEE:adr, pages = "xiii + 367", year = "2004", ISBN = "0-7695-2126-6", ISBN-13 = "978-0-7695-2126-8", ISSN = "1072-4451", LCCN = "QA76.9.A73", bibdate = "Thu Jun 09 19:05:06 2005", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", note = "IEEE Computer Society Order Number P2126. ACM Order Number 520040.", acknowledgement = ack-nhfb, } @Proceedings{Meadows:2005:CHE, editor = "Catherine Meadows and Paul Syverson", booktitle = "{CCS '05: proceedings of the 12th ACM Conference on Computer and Communications Security: November 7--11, 2005, Alexandria, Virginia, USA}", title = "{CCS '05: proceedings of the 12th ACM Conference on Computer and Communications Security: November 7--11, 2005, Alexandria, Virginia, USA}", publisher = pub-ACM, address = pub-ACM:adr, pages = "x + 408", year = "2005", ISBN = "1-59593-226-7", ISBN-13 = "978-1-59593-226-6", LCCN = "QA76.9.A25", bibdate = "Mon Apr 3 08:02:50 MDT 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", note = "ACM order number 459050.", acknowledgement = ack-nhfb, meetingname = "ACM Conference on Computer and Communications Security (12th: 2005: Alexandria, VA)", subject = "Computer security; Congresses; Telecommunication systems; Security measures", } @Book{Siever:2005:LND, editor = "Ellen Siever and others", booktitle = "{Linux} in a nutshell: a desktop quick reference", title = "{Linux} in a nutshell: a desktop quick reference", publisher = pub-ORA, address = pub-ORA:adr, edition = "Fifth", pages = "xiv + 925", year = "2005", ISBN = "0-596-00930-5", ISBN-13 = "978-0-596-00930-4", LCCN = "QA76.76.O63 L56 2005; QA76.76.O63 L5459 2005", bibdate = "Tue Aug 5 17:45:57 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", series = "In a nutshell", URL = "http://www.oreilly.com/catalog/9780596009304", acknowledgement = ack-nhfb, remark = "Subtitle from cover.", subject = "Linux; Operating systems (Computers)", } @Proceedings{Anonymous:2006:PGI, editor = "Anonymous", title = "{Proceedings of Gelato ICE: Itanium Conference and Expo: Spotlighting Linux on Itanium-based Platforms, October 1--4, 2006, Biopolis, Singapore}", publisher = "????", address = "????", pages = "????", year = "2006", ISBN = "????", ISBN-13 = "????", LCCN = "????", bibdate = "Sat Oct 14 18:23:38 2006", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib", URL = "http://www.ice.gelato.org/; http://www.ice.gelato.org/about/oct06_presentations.php", acknowledgement = ack-nhfb, } @Book{Pritchard:2006:LLC, editor = "Steven Pritchard and others", booktitle = "{LPI Linux} certification in a nutshell", title = "{LPI Linux} certification in a nutshell", publisher = pub-ORA, address = pub-ORA:adr, edition = "Second", pages = "xviii + 961", year = "2006", ISBN = "0-596-00528-8", ISBN-13 = "978-0-596-00528-3", LCCN = "QA76.76.O63; QA76.76.O63 L65 2006eb", bibdate = "Tue Aug 5 17:41:28 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9780596005283", acknowledgement = ack-nhfb, remark = "Pass the LPIC-1 and LPIC-2 exams", subject = "Linux; Electronic data processing personnel; Certification; Operating systems (Computers); Study guides", } @Book{Smith:2007:LAD, editor = "Bob Smith and others", booktitle = "{Linux} appliance design: a hands-on guide to building {Linux} appliances", title = "{Linux} appliance design: a hands-on guide to building {Linux} appliances", publisher = pub-NO-STARCH, address = pub-NO-STARCH:adr, pages = "xxi + 356", year = "2007", ISBN = "1-59327-140-9", ISBN-13 = "978-1-59327-140-4", LCCN = "QA76.76.O63 L545115 2007", bibdate = "Tue Aug 5 18:20:04 MDT 2008", bibsource = "http://www.math.utah.edu/pub/tex/bib/unix.bib; melvyl.cdlib.org:210/CDL90", URL = "http://www.oreilly.com/catalog/9781593271404", acknowledgement = ack-nhfb, subject = "Linux; Application software; Development; Electric apparatus and appliances; Design and construction", } jbibtex-1.0.20/src/test/resources/wiley.bib000066400000000000000000000027151421433304700206160ustar00rootroot00000000000000@article{https://doi.org/10.1002/(SICI)1521-4133(199812)100:12<524::AID-LIPI524>3.0.CO;2-6, author = {Mang, Theo}, title = {Umweltrelevante Kriterien zur Anwendung von Pflanzenölen und deren Derivaten im Schmierstoffbereich}, journal = {Lipid / Fett}, volume = {100}, number = {12}, pages = {524-527}, doi = {https://doi.org/10.1002/(SICI)1521-4133(199812)100:12<524::AID-LIPI524>3.0.CO;2-6}, url = {https://onlinelibrary.wiley.com/doi/abs/10.1002/%28SICI%291521-4133%28199812%29100%3A12%3C524%3A%3AAID-LIPI524%3E3.0.CO%3B2-6}, eprint = {https://onlinelibrary.wiley.com/doi/pdf/10.1002/%28SICI%291521-4133%28199812%29100%3A12%3C524%3A%3AAID-LIPI524%3E3.0.CO%3B2-6}, abstract = {Abstract Der Einsatz nachwachsender Rohstoffe und deren Derivate in Schmierstoffen wird durch ihre besondere Umweltverträglichkeit motiviert, wobei die Substitution von Mineralöl durch biologisch abbaubare Grundöle im Vordergrund steht. Inzwischen werden für nahezu alle Schmierstoffanwendungen umweltfreundliche, biologisch abbaubare Alternativen zu den herkömmlichen Mineralölprodukten angeboten. 1997 wurden in Deutschland ca. 40000 t biologisch schnell abbaubare Schmierstoffe abgesetzt, also etwa 4,5\% der gesamten Schmierstoffmenge. Die weitere Steigerung dieses Anteils ist Ziel verschiedener Maßnahmen von Regierungen und Behörden. Allgemein ist anerkannt, daß potentiell mehr als 90\% aller Schmierstoffe auf Basis nachwachsender Rohstoffe dargestellt werden können.}, year = {1998} } jbibtex-1.0.20/src/test/resources/zotero.bib000066400000000000000000000003011421433304700207740ustar00rootroot00000000000000@misc{center_for_history_and_new_media_schnelleinstieg_????, title = {Schnelleinstieg}, url = {http://zotero.org/support/quick_start_guide}, author = {{Center for History and New Media}} },