List price: $14.95 (that's 30% off!)
Used price: $10.17
Buy one from zShops for: $10.28
Jim passed away on June 24, 2001 surrounded by our family and frineds in what I call a very holy moment. There is no doubt in my mind that this book was inspired. I see the hand of God in all this writing. May it be a blessing to you. It will no doubt change your life, forever.
Felipe Gravier and Lorenzo Schiavo review:
We think that Romeo and Juliet tells the story of two star-crossed lovers whose families are in a terrible fight which prevents them from coming together. How far the couple will go to be together becomes the focus of the story. Of his richest poetry. The opening and closing choruses are some of his most outstanding work. Romeo's It is a brilliant love story but not much more. It still possesses however some wooing of Juliet is fabulously written. The Friar gets the best lines. Mercutio is one the best friends of Romeo. It is not as good as Shakespeare has written but it's still a fabulous book and up there with his best work. One part of the play we didn't like was that for the tow families get arrange there two kids had to die.
The English language wasn't finally finished so Shakespeare had the liberty to create words and play with the language, as he liked. That's why It was so difficult to understand what each character wanted to express so the teacher had to explain us each of that words and teach us all the words in that age and told us which were the words in the English of today.
This book was a overall well writen book and I beleive E. Nesbit put a lot of hard work into her books in her life-time. I'm sure if she were alive now she would still be writing good books to this day.
List price: $29.95 (that's 30% off!)
Used price: $18.98
Buy one from zShops for: $19.71
Insightful analysis, thought-provoking attitudes and fresh reasoning pour forth from the new and credible voice of Dr. Smith, who demonstrates complete mastery of his subject matter. I applaud this long-overdue look at one of the great voices in fiction, by a new and worthy writer.
Bravo, Dr. Smith!
List price: $10.95 (that's 20% off!)
This is a surprisingly interesting action-mystery, in which an Air Force officer is set up by his commander to take the fall in a cover up for an airplane accident - in which the half brother of the President of the United States is killed.
It is technically correct about a wide range of topics and settings, and is one of the few novels to compare the Washington Times coverage favorably with that of the Washington Post. Its description of a high powered columnist setting up an innocent person on behalf of his high placed inside source certainly rings true with my experience of the less desirable parts of the Washington media. And the description of a media firestorm engulfing an innocent and unprepared Air Force Colonel is realistic and a chilling reminder of the lynch mob mentality that occasionally gets under way.
Some parts of the conspiracy are too complicated and implausible, but the suspense is riveting and the action never stops throughout the novel. As an airplane or late night book to relax with it this book is a worthy addition in the Jack Higgins' tradition.
In this book, the Learjet carrying the half-brother of the President of the United States goes down under mysterious circumstances. An senior AF officer assigns a brand new Colonel, a former fighter pilot grounded by ejection injuries to the case. He hopes to embarrass this promising officer and lay the blame elsewhere to conceal his perfidy and inside connections with corrupt administration officials.
The officer in charge of the investigation must also deal with the fact that his former wife, now the Deputy Director of the NTSB has also been assigned to the investigation. Although the Air Force team also includes Lt Col Chen, friend of Colonel Quinn and a former civilian homicide investigator before he joined the Air Force, Jennifer's assignment leaves COL Quinn looking for the underlying motive behind insider attempts to blame the pilots for the crash.
Along the route of the investigation, innocent people die. Previous government scandals are brought back to complicate the mix. But the two lead AF investigators are men of integrity and honor and they deal with the incessant corruption in the media, the FBI, the White House and the Congress with the courage that only people who have seen real combat can bring to bear when the going gets tough.
As I said, this is a quick read. Davis is still a new writer and is sure to develop his story telling skills with each new outing. I look forward to his future efforts and recommend this book to fans of military and police procedural thrillers.
Paul Connors
Used price: $7.93
List price: $12.95 (that's 20% off!)
Used price: $9.00
Buy one from zShops for: $8.76
Over the years I have found one feature after another that further solidifies my devotion to the tool. Now I finally have a book, that gives yet more hidden secrets. What a wonderful Christmas present it was when I opened it under the Christmas tree.
BChase
MylxHQ - Oracle Resource Portal...
Actually, why do you need this book ? Why don't you just download the documentation or print out the manual from [the website]?
The reason is simple: This book is precise and direct.
This book likes provides clear steps for you to achieve various functions including administration, debugging , SQL and Procedures.
If you find, there are two books called Unix For Oracle and Oracle DBA Checklists, those are simple and crucial steps required by DBA as well as manager, we don't need a thick book with 800 pages, we just need a book with 100 pages and portable.
I strongly recommend this book for consultants and developers.
It helps me to solve problems many times...:>
Anthony
List price: $14.00 (that's 20% off!)
Used price: $8.05
Collectible price: $8.75
Buy one from zShops for: $9.68
I strongly suggest "Effective Java" by Joshua Bloch as a companion to this book. Whereas the 108 rules in this book focus on style, format and many pearls of practical advice, "Effective Java" provides an excellent set of 57 rules that go much deeper and tackle more advanced aspects of writing correct and consistent code. The two books complement each other well.
Of the 108 rules, the most glaring technical error is rule #99 which promotes the use of the flawed double-check synchronization pattern. Ignore this rule.
The 108 rules are divided into six chapters as follows:
4 General Principles: While I would have added a few, the four here are quite sound.
4 Formatting Conventions: Programmers tend to get weird about code format. After long enough you realize any reasonable and consistently adhered to standard is fine, so just use this well-considered set.
23 Naming Conventions: These are of great benefit as they resolve the ambiguities left by the JLS. I especially like rule #12, "Join the vowel generation".
35 Documentation Conventions: These very well-reasoned conventions will help to produce useful documentation as well as to eliminate unnecessary or excessively wordy documentation. The rules target both internal and external documentation as emphasize the different goals of each.
37 Programming Conventions: While there is a lot of good advice in this section, it also contains some of the weakest advice. Rule #74 on enumerations is flawed ("Effective Java" provides better coverage on how to use enumeration classes). The section on using assertions (4 rules) doesn't mention the important rule to only use tests with no side effects. It will also need to be modified for the assertion facility being added in J2SE 1.4. The section on threads and synchronization is the weakest (7 rules) as it contains rule #99 as well as some weak and incomplete advice in rules #97 and #98.
5 Packaging Conventions: This section contains some good advice not just on how to organize your classes into packages, but also on how to design stable packages.
Particularly on points of style and format, individuals will find aspects of any coding standard (at least any standard they didn't author) that they disagree with. Having written several coding standards in a variety of languages, I too have some rules I would have written differently. However, the benefit of a language-wide coding standard is that if everyone follows it, then everyone benefits from that shared agreement.
My company has adopted "The Elements of Java Style" as its coding standard with as few amendments as possible. You and your company should too.
The first part of the book is devoted to general principles. There are just a few of these. For example, "Do it right the first time," that is, follow standards whenever you write code, even "throw-away" code.
The second part is devoted to formatting conventions. These have to do with indentation, placement of openning and closing brackets, etc. I second the prohibition against hard tabs--use spaces instead. I've seen code written in an IDE that looks bizarre when viewed in a simple text editor like vi.
The third part is devoted to naming conventions. Good naming conventions make code more nearly self-documenting. An example from this part is "Capitalize only the first letter in acronyms." For example, use "loadXmlDocument()" instead of "loadXMLDocument()," where the obvious exception is constant names which should contain only capital letters.
Java facilitates a deeper integration of code and documentation (via JavaDoc) than most programming languages. The fourth part is devoted to documentation conventions--both JavaDoc and internal comments. If you have ever struggled with the wording of a JavaDoc comment you will appreciate the authors' no-nonsense advice.
The fifth part is devoted to programming conventions. An example from this part is "Do not synchronize an entire method if the method contains significant operations that do not need synchronization," that is, use a synchronized block for the appropriate sequence of statements rather than synchronizing the whole method.
The sixth part is devoted to packaging conventions. Package naming conventions are covered in part three. An example from this part is "Maximize abstraction to maximize stability." That is, use "stable abstractions to create stable packages."
Consistently following standards such as those offered here will result in simpler, more understandable, more easily maintainable code, a worthy goal.
Used price: $12.50
Buy one from zShops for: $21.89