Used price: $1.97
Collectible price: $3.00
Buy one from zShops for: $17.98
Of course, Marco's evaluations and interpretations of what he sees are not to be taken too seriously, but this doesn't make them any less entertaining. Marco's outdated biases and ethnocentric, simplistic interpretations of Asian life give the book an underlying comedic effect.
For pure (somewhat trashy) reading fun Marco Polo's account of his travels is a genuine success. Of course, from the standpoint of East/West relations it has more disturbing implications. However, to fully analyze Marco Polo's significance to later Western thought about China, it's implications in the general "Orientalist" framework as laid out by Said (if you believe in that sort of thing), and how his own prejudices (slavish respect of power, extreme interest in material wealth, dogmatic Christian religious ideas) colored his account is beyond my power.
Used price: $4.93
Collectible price: $29.11
Buy one from zShops for: $4.97
works of Frank Lloyd Wright built during his life time. The text for each structure, in most cases was taken from Mr. Storrer's book The FLW Companion except where new data has been added since the original publication. Each site is illustrated with a photo. Even lost or demolished works, and most are in color. In many cases new or additional photos are included. For me, the main benefit of this book is the Field Guide Maps section at the end. As clearly stated in the text the scale of the maps is compressed for ease of display, BUT the actual site locations is
so accurately shown that you can determine which side of the street the structure is on and if visable from public property.
Used price: $10.95
But for something more interesting, try Patriarch Aphraim I Barsoum's "Unstrung Pearls in the History of Syriac Literature and Sciences" (released as "History of Syriac Literature and Sciences" and about to come back into print in English - it is in print in Syriac and Arabic)
For more up-to-date bibliographic info, start with Sebastian Brock's bibliography in Muraoka's Syriac Grammar, following with his annual bibliographies in the academic on-line journal Hugoye.
Used price: $0.29
Collectible price: $4.99
Shakespeare masterfully manipulates our feelings and attitude toward Richard II and Bolingbroke. We initially watch Richard II try to reconcile differences between two apparently loyal subjects each challenging the other's loyalty to the king. He seemingly reluctantly approves a trial by combat. But a month later, only minutes before combat begins, he banishes both form England. We begin to question Richard's motivation.
Richard's subsequent behavior, especially his illegal seizure of Bolingbroke's land and title, persuades us that his overthrow is justified. But as King Richard's position declines, a more kingly, more contemplative ruler emerges. He faces overthrow and eventual death with dignity and courage. Meanwhile we see Bolingbroke, now Henry IV, beset with unease, uncertainty, and eventually guilt for his action.
Shakespeare also leaves us in in a state of uncertainty. What is the role of a subject? What are the limits of passive obedience? How do we reconcile the overthrow of an incompetent ruler with the divine right of kings? Will Henry IV, his children, or England itself suffer retribution?
Richard II has elements of a tragedy, but is fundamentally a historical play. I was late coming to Shakespeare's English histories and despite my familiarity with many of his works I found myself somewhat disoriented. I did not appreciate the complex relationships between the aristocratic families, nor what had happened before. Fortunately I was rescued by Peter Saccio, the author of "Shakespeare's English Kings". Saccio's delightful book explores how Shakespeare's imagination and actual history are intertwined.
I hope you enjoy Richard II as much as I have. It is the gateway to Henry IV (Parts 1 and 2) and Henry V, all exceptional plays.
So why read a relatively obscure history about a relatively obscure king? Aside from the obvious (it's Shakespeare, stupid), it is a wonderful piece of writing - intense, lyrical, and subtle. Richard II is morally ambiguous, initially an arrogant, callous figure who heeds no warnings against his behavior. Of course, his behavior, which includes seizing the property of nobles without regard for their heirs, leads to his downfall. Nothing in his character or behavior inspires his subjects so he has no passionate defenders when one of the wronged heirs leads a rebellion to depose Richard II. But Richard now becomes a much more sympathetic figure -especially in the scene where he confronts the usurper, Richard acknowledges his mistakes, but eloquently wonders what happens when the wronged subjects can depose the leader when they are wronged. What then of the monarchy, what then of England?
On top of the profound political musings, you get some extraordinarily lyrical Shakespeare (and that is truly extraordinary). Most well known may be the description of England that was used in the airline commercial a few years back... "This royal throne of kings, this sceptred isle, ..."
If you like Shakespeare and haven't read this play, you've missed a gem.
List price: $49.99 (that's 30% off!)
Used price: $24.93
Buy one from zShops for: $32.00
First of all, I am an experienced computer programmer, and have developed code for the Java core programming language. I have read many-a-programming book, and can tell you to stay away from this one. Why?
This book:
* is not practical
* is filled with *serious* errors - not just typos
* fails by attempting to cover too many topics
* lacks examples and good diagrams
* lacks a sense of continuity from chapter to chapter
Many of this book's chapters are written as if they were a theorem: generalizations and buzzwords that don't get you anywhere. For example:
"If a set of permissions can between them imply a permission - even if no single permission in the set explicitly implies it completely by itself - you will need to provide your own implementation of PermissionCollection." Ha!
"Because sockets are just *programming* abstractions for network protocols, the other side of the connection does not have to use them. For example, the network program on the right side of this example may be coded in an exotic system that does not use the socket abstraction. That is, sockets don't use any additional communications mechanism other than that provided by the encapsulated protocol." Gimme a break!
Some of the errors in this book are the following:
* Chapter 5's author says that java.io.InputStream's "public int read(byte[] buf, int offset, int length)" method reads the input stream starting at 'offset' bytes deep into the input buffer - skipping the bytes toward the front of the buffer. This is incorrect. The author even has a diagram and examples to complement his error. This method actually reads starting at the front of the input buffer, and reads the bytes into 'buf' starting at buf[offset].
* As if all of the previous chapters' authors' errors weren't bad enough, Chapter 9's author took me to a screeching halt and compelled me to write this whole review when he said this: " It should be noted that the java.net.Socket object returned * Wrong diagrams. p.163: The diagram is of a program's output which shows "access denied", while its caption above says, basically, "tada, and it works." p.52: This diagram belongs in the I/O chapter. The only chapter I found to be somewhat good was the Thread chapter (and a chapter on threads shouldn't even be in a book on networking). This book also suffers from lacking continuity due to the fact that it was written by 10 authors! For instance, this book has no consistent (or good) way of listing the API's and diagraming class relations. Chapters do not pedagogically build on the previous ones. I could go on... If you want to learn about networking using Java, then here are your prerequisites. You should learn each of these from a book which specializes in the given topic. * Basic Java Programming including I/O and Threads After you do that, I highly recommend the book "TCP/IP Sockets In Java: Practical Guide for Programmers". This book gets the job done at only 110 pages. Another reason I recommend this book is that it lists references to 22 other good and relevant books/documents. If you want to learn about HTML, Javascript, Servlets, JSP, RMI, CORBA, etc., then you should find a book specific to that topic. For instance, Marty Hall's books on Servlets and JSP are great. Just because a programming book is thick, doesn't mean it's good. The book's publisher, Wrox, does put out some good books, but this just isn't one of them.
* The TCP/IP protocol suite and TCP/IP networking
* Cryptography (optional)
* Java Security
If you are looking for a book to act as a Java tutorial to networking, this is not the book for you. It is very comprehensive in some areas, and much more than many people are willing to spend in getting through sections of this book. However, if you are looking for a little more general purpose Java networking Bible, then this book might be more suited for you.
List price: $12.50 (that's 20% off!)
Used price: $6.90
Buy one from zShops for: $8.69
The story was unrealistic and to put it plainly silly.
The characters mentioned each others names' continously during their conversations as if they were going to forget who they were talking to.
Simms never made the characters keep an argument, my meaning, 2 characters will have very harsh words with each other and then turn around and laugh and then both go to lunch.
Also Gina was supposed to dislike black men but then fell for one at the drop of a hat. He hardly gave them time to really get to know each other.
My opinion, dont waste your [$$$] or your [$$$] because it is not worth it.
Used price: $19.95
Used price: $7.95
Collectible price: $31.49
Buy one from zShops for: $15.80
Used price: $4.71
Buy one from zShops for: $4.71