Cargo
More Pages: Cargo Page 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76

Used price: $29.00
Collectible price: $33.30
Buy one from zShops for: $12.95

Informative, well illustrated - but suffers from POOR prose
OUTSTANDING!
Simply a good book
Used price: $6.95
Buy one from zShops for: $11.95

Twisty and Satisfying!This was a very fun read. Recommended.
A real page turner
Used price: $18.95
Buy one from zShops for: $49.99

essential basic guide on cargo ship travel -- needs updating
A great travel book
Used price: $3.00
Collectible price: $6.00

Great characters and atmosphere
Clever Plot, But Unpleasantly DatedMarsh is particularly noted for her ability to create well-rounded, convincing characters... but there is an exception: on the rare occasions when she deals with either implicitly or obviously gay characters, she inevitably characterizes them as slimy, dismissable, and unlikable--and even Inspector Allen, who is inevitably polite to one and all, feels free to behave toward them in the most obnoxious manner imaginable.
Marsh's tendency toward homosexual hysteria is noticeable in DEATH IN ECASTY and PHOTO FINISH, but it is particularly obvious here, and it is so powerful that it renders an otherwise wonderful bit of writing progressively distasteful. Marsh is among my favorite mystery writers, and I did read the book to the end--but it was not a book that I kept on my shelf afterward.
Good shipboard mystery.The cast of characters are vividly drawn and Ms. Marsh does a wonderful job in making us switch our suspicion from one character to the next. As with most mysteries of this sort, much of the fun comes from the interplay between the characters as opposed to the mystery itself.
As always, Marsh provides us with the necessary clues to guess the murderer. If you pay close attention, you may figure out the solution within the first half of the novel. A drawback here, is that the list of the possible guilty parties is narrowed rather early on. Part of this is, however, made up for by trying to perceive who the next victim will be.
Something has been made about the character of a gay character. I've always thought that it is somewhat dangerous to attempt to place the latest views of morality/society upon works of fiction written in the past. Was Ms. Marsh prejudiced against homosexuals, or was she portraying the reality of her day? One could easily interpret that the unfavourable characteristics of the character may have arisen from the need to hide their sexuality. Also, because of its role in the outcome of the mystery, its uncertain as to what could have been changed and still keep the mystery intact. Finally, in regard to how gay characters are treated by other characters in the novel, it seems more likely that they would have suffered prejudice, etc., rather than open acceptance and celebration of their sexual preferences.

Used price: $5.91
Buy one from zShops for: $4.94
The premise of this book is simple. It presents and explains some real-world code for a variety of actual Java-based projects to show how you can do more with custom components. First there's a guide to effective user interface design, including what to avoid. (Here the authors show off ineffective or clumsy interfaces drawn from a variety of real software.)
With these ideas in place, the authors next walk through several of their controls borrowed from their production code, starting with a graphical "toggle switch" that resembles the real thing. Other standout controls here include an image-based movie banner display control, and nicely functional tree and table components. There's a general-purpose sliding control (which can scroll other content). Along the way, there's coverage of the steps required to design and code a control from scratch, with plenty of tips for bringing your designs to life.
Each of these controls uses the Abstract Window Toolkit (AWT) for greater portability between today's browsers, though Swing versions are also presented, but in less detail. Later, the book presents the authors' custom "framework" for new controls. (Mixed in here is a rather dense introduction to the software process for designing user interface controls.) A final chapter on "refactoring" and software maintainability shows that good software never stands still and is refined.
While most Java developers today do most of their work on the server, this thought-provoking title shows that client-side Java is still an option for doing more for your users. This text shows you how to think "outside the box" when it comes to user interface design in Java. While programmers in other languages (like Visual Basic and C++) have long used custom controls, this intriguing book puts this approach back into play for client-side Java. --Richard Dragan
Topics covered: Introduction to custom user interface components in the Abstract Window Toolkit (AWT) and Swing, guidelines for effective user interface design (including transparency, aesthetics and usability, design hints for color and visual elements), sample code for a custom toggle switch (planning and implementation), displaying images and interacting with users (sample case study for a control for online movie banners), developing custom tree controls, adding verification (for "applyable" controls), using and extending tree and table controls, a custom slide panel control, a framework for custom controls, intro to the software development process (from requirements document to testing and maintainability), maintaining components (refactoring, reflection and evolving software), and sample code from real-world custom Java controls.

Good for Advanced Java ProgrammersThe book then goes through several example of custom UI components. The examples are done with the AWT instead of using Swing for better portability of the code. In the examples, the authors emphasis design principles along with the actual code. The examples are advanced and are written for experienced programmers. The authors then go through the design and development of the example, which is very helpful to understand their design consideration in coding the example. The book ends with an overall software development process and component maintenance.
This book is for Java developers seeking a detailed introduction to designing and implementing custom user-interface components and frameworks. After the user interface guide in the beginning, this book is a tutorial by example. I would recommend the book to anyone who needs to create a user interface beyond the components offered by the standard toolkit.
Professional Java Custom UI ComponentsThe book tour starts with a discussion of the user interface design, the importance of a good interface that is intuitive to use, and the attention to detail required for a UI component. The authors take the reader through the planning and implementation of a toggle switch and LED component, implementing the event model, specifying the parent container interaction, and rendering strategy. Many tips are provided so that the reader may avoid common pit falls. More complex components are discussed and implemented.
The book ends with an overall software development process and component maintenance. Until this point, the focus has been the "how" of building custom components, now the discussion shifts into a larger context. The authors stress the importance of both before and after the initial implementation.
I recommend reading this book for anyone designing and implementing custom UI components. (September 2001)
Get by without SwingThis book covers the design and implementation of several components using AWT and then covers what you would do given access to Swing. In the end you have several components that give a good foundation to an alternative library to Swing. You could use the design concepts in this book to develop your own complete library to use when Swing isn't available.
One thing to note when comparing the components in the book to Swing is that Swing was developed in a non-production environment. In a way they had to invent the problems and then create the solution. This code was developed as a result of real problems. As a byproduct the components run very fast compared to regular Swing components.
The chapter on UI design (Chapter 2) is a must for any developer. It details common UI design mistakes that developers make and give practical solutions. I would suggest requiring developers to read this chapter before allowing them to do any UI development of any kind (note I didn't say UI design - I recommend that you don't allow developers to DESIGN UI at all). The chapter on code maintenance (Chapter 11) is very useful and is a skill that many developers lack. Again, this could be required reading for developers.
There are several things about this book that make unique from any other book I've read. The code base is the result of a real, shipping system (used by StorageTek). It's the result of a real, organic development cycle that is also well tested. The code isn't small snippets that were hand built for the book, thus forgetting the interaction with a full application. The code is a full product standing on its own.
The code and topic is advanced and is not for beginning programmers (the name of the book is PROFESSIONAL Java Custom UI components). Bring your thinking cap.

Used price: $6.35
Collectible price: $10.59
Buy one from zShops for: $25.00

Humanity, compassion, optimism, make for good reading
Used price: $7.99
Collectible price: $13.99

Commuter Train To Hell!
Buy one from zShops for: $31.73

Good historySam McGowan
Vietnam Veteran, author of THE CAVE, a novel of the Vietnam War.


marine cargo opeartions

I know you best of all
Who know's?
I know best