Used price: $6.49
Buy one from zShops for: $6.92
List price: $24.95 (that's 30% off!)
Used price: $6.75
Collectible price: $6.99
Buy one from zShops for: $17.34
Imagine my joy to find a reprint! The book means much more now that I can understand it. I've got 13 years in the Army myself, in Infantry and Special Forces. I'm a Major now, and I pay close attention to what Mauldin writes about officers. I want to be the kind of officer that he respects: always putting the welfare of my men first, respecting my men, and leading from the front. His narrative and comments are a constant reminder to me of the responsibility I hold for my soldiers.
If you are from the World War II era, you already know about Willie and Joe, and there's nothing new I can tell you. If you are an old soldier and you somehow have missed this book, then you are in for a treat. If you are a young soldier, or a prospective soldier, or the family of a soldier, then you NEED to read this book. For anyone else, it's a great window into a world that, thanks to some brave men 50 years ago, you will hopefully never have to see.
List price: $17.97 (that's 30% off!)
Used price: $5.99
Collectible price: $13.49
Buy one from zShops for: $11.69
First I thougth it was a lame book but then I went Throught the book and then I was like wow now that's freaky man.But then after I check it out I thouth hey this is one of the freakest book I ever read in my entire life, so then I went looking for more.
The only books I read is three of this scary Stories books. But then I wonder why it did'nt make more.Scary Stories is one of the scariest books I read. It was even scaryer than that guy R.l Stine.But R.L Stine is still a good writer,but his stories aint as scary as Alvin Schwartz book's.
This book is one of my favorite books in the world. I am a guy who likes to read scary stories. I am a guy who dosent like to read books that are borning and that make's me want to fall aSleep.I also like this book because it's really not borning or stupit but it is cool.
I also really like this book because of all the pictures. The pictures are so scary and they look like they were going to jump of the book or some thing. The pictures of this book lookes like just the picture of a movie I watch called THE RING. But it is not close to be as the same becuase the ring is ten times as scary but lets not get of mind.
List price: $14.95 (that's 30% off!)
Used price: $5.50
Buy one from zShops for: $8.00
Readers are often faced with the dilemma of deciding to read further after the first few chapters of a book in the hope they'll "get into it" or to close it and turn it into a dust-catcher. Not so with Sandoz's Crazy Horse. The reader is immediately drawn into it. I was hooked by the lyricism of the first few words of the book which told me that this was going to be no ordinary biography. They read as follows: "The drowsy heat of middle August lay heavy as a furred robe on the upper country of the Shell River, the North Platte of the white man. Almost every noon the thunders built themselves a dark cloud to ride the far crown of Laramie Peak. But down along the river no rain came to lay the dust of the emigrant road, and no cloud shaded the gleaming 'dobe walls and bastions of Fort Laramie, the soldier town that was only a little island of whites in a great sea of Indian country two thousand miles wide."
This story is told, not in the voice of a distant historian, but in the voice of an eyewitness. The vividness of her narrative would convince you, if you did not know otherwise, that Sandoz walked with Crazy Horse and his people. But even though she did not walk with them, she knew them well.
This is an extraordinary work of creative nonfiction that makes you love being a reader.
Used price: $23.99
Buy one from zShops for: $31.00
systems and languages looks like it should be easy, but it
is emphatically not. The nave designer of networked
applications will encounter a thicket of problems including
lack of portability, distributed performance bottlenecks,
maintaining correctness during shutdown, and managing
recovery from partial failures.
"C++ Network Programming, Volume 2, Systematic Reuse with
ACE and Frameworks" by Douglas Schmidt and Stephen Huston
provides some powerful help in the design and implementation
of networked applications. This help comes in the form of
several frameworks.
A few words about the definition of "framework." The first
step up from writing applications that interface directly
with operating systems is to insert object-oriented wrappers
between the application and lower level services. These
wrappers are classes that encapsulate the low level,
functionally specified, services such as operating systems
and protocol stacks. This first step was taken in the
predecessor volume to the present book, "C++ Network
Programming, Volume 1: Mastering Complexity with ACE and
Patterns", by the same authors, where a collection of
wrappers, called the ACE wrappers, is provided that not only
raises the level of the application interface from
functional to object-oriented, but also provides portability
at the same time.
For example, consider an application that directly uses
sockets. This application would depend on the syntax and
functional details of that operating system's s operating
system's socket implementation. By inserting the ACE
wrappers, the application acquires an object interface to
socket capabilities, and in addition becomes portable across
a large number of compilers, operating systems, and
communication protocols.
But a set of wrapper classes does not solve the networked
application designer's problems, any more than a pile of
bricks is a house.
Frameworks, which are the subject of the present book, are
the next step up in power from wrappers. A framework is an
integrated set of classes into which application designers
plug code that is unique to their applications. The
frameworks described in the present book handle a large part
of the difficulty inherent in network programming, leaving
application designers to deal primary with their
applications' local functionality.
For example, one of the frameworks described in the book is
the Acceptor-Connector Framework. This framework relieves
the user of dealing with the numerous tricky details
inherent in the conceptually simple process of connecting
clients with servers, such as address formats, protocols,
initialization, and message queue locking.
Readers should be aware that the present book is not a
general-purpose text on network programming using C++; this
book is a focused exposition of the ACE frameworks. Readers
will be most comfortable reading this book if they are
already familiar with software design and architecture
patterns, including those described in "Pattern-Oriented
Software Architecture: Patterns for Concurrent and Networked
Objects, Volume 2" by Douglas Schmidt et al, and in the
famous Gang of Four book: "Design Patterns: Elements of
Reusable Object-Oriented Software" by Eric Gamma et al.
The large amount of code that implements the wrappers of
volume 1 and the frameworks of volume 2 is available for
download for free. This code is in wide use today.
Designers of networked applications, when offered a large
pile of code that purports to do a lot of what needs to be
done, must trade off the anticipated saving in design and
implementation time against the anticipated time to
understand what the offered code is intended to do and what
it actually does. This tradeoff can lead a reasonable
designer to ignore existing code in favor of hand-writing an
entire application. In the case of the ACE wrappers and
frameworks, as documented and explained by the two books
mentioned here, combined with the open-source nature of the
implementing code and its widespread employment in real
applications, make the result of this tradeoff pretty clear:
read the books, use the code.
This book has definitely helped me in getting my head around the Reactor, Acceptor/Connector and Task patterns, since these are the patterns that I most actively use in ACE. It has also exposed me to several other patterns that I haven't had a chance to use yet.
If you're doing network programming in C++, and aren't using ACE, it's well worth looking into. The reoccurring patterns used in designing and implementing networked applications are all contained in the ACE framework -- and as a huge bonus -- platform independence (support for most popular operating systems) is built in with ACE's wrapper facades. Also, the ACE open-source community is actively enhancing and improving the framework, so it just keeps getting better and better.
The challenge with any good framework, is learning how to harness what's provided in it. C++ Network Programming Volume 2 goes a long way towards that end and both it and Volume 1 are essential for any developer serious about using the ACE framework.
Although the book recommends that you be familiar with the underlying patterns before delving into the details, I think that anybody who has experience developing network applications will be able to fully grasp the power of these frameworks without necessarily having knowledge of the patterns.
The areas of the book I found most useful were the description of the ACE Reactor framework (Ch 3), Reactor implementations (Ch 4), the description of the ACE Task framework (Ch 6) and the description of the ACE Streams framework (Ch 9).
Use of UML sequence diagrams made it easier to understand the interaction between application and framework code. However, I think more space could have been devoted to the class diagrams to give a clearer picture of the relationship between application and framework classes.
I also found the highlighting of common techniques in sidebars to be very informative.
The only complaint I have is that this book wasn't available in January 2001 ;-(
Used price: $3.75
I picked up this book after reading Mrs Dalloway. I loved Dalloway. It was the first Woolf book I had read and it blew me away. In comparison, reading The Waves was like taking a sandblaster to my eyeballs. She uses stream of consciousness as a medium to delve as deep as she possibly can into the intricacy of existence. Not much happens on a specific and literal level outside of the rising of the sun, but the endless poetry pouring forth from the perceptive cores (I'd say "minds" but I think it goes a bit beyond even that) of these six characters speaks volumes on the fearsome intensity of beauty, the vast complexity of sadness, and the endless endless isolation of the human soul.
It is at times so deep and so personal that I felt more than a bit uncomfortable reading it. The effort is well worth it however. Woolf more than any other author I have read, struggles to communicate the hidden message contained in all stories and books... A message forever clouded in meanings and phrases... Lost in its own words.
No one speaks in this book. You follow the characters' lives from childhood to adulthood by entering their minds and listening to their thoughts. At first it is difficult to figure out what is going on. There is no narration except short poetic passages about the sea and the sun's placement over it preceding each section of the book (and each period of the characters' lives). By the middle of the book, you know who is speaking without reading the name of the character. You know how they think.
I strongly encourage anyone who is even slightly curious to buy this book. This small investment can change how you view the world. The Waves takes much longer to get through than some whodunit, but that's the beauty of it. My husband and I read a passage at night before going to bed. It's best when read slowly, with time to reflect after a small amount of pages. You'll be highlighting sentences that make great quotes as you go. What a glorious book!
I consider this to be Woolf's greatest work. Mrs. Dalloway may be a more pleasurable read and more consistently a "masterpiece", but the Waves is often so intense and beautiful that it's devastating. In fact, there are times that one is a bit overwhelmed by the surfeit of emotion, poetic words, unremitting interiority.
My Woolf pix in order: 1. Waves 2. Dalloway 3. Jacob's Room 4. A Room of One's Own 5. Orlando
I personally feel that To the Lighthouse is more of a work to be appreciated than liked--it's simply too refined. And I couldn't make it through Between the Acts--too many upper class English people sitting around a table in the country sipping tea and performing their subtle, boring manners.
Wait, I can't end on a sour note: Woolf is a bloody delight!
In addition the process that the author has gone through is at first tragic and then uplifting, not so much because he found his dog guide, but much more so because the author found himself as a blind man.
I grieve for his parents who could never say the word 'blind'. I have seen this so often. Mr. K's message is strong and clear. "coming out" is better and empowering and in his case enobling as well.
A beautifully written and powerful book.
I recommend this book to anyone who would like to understand what living on the "Planet of the Blind" is really like, and for anyone who enjoys beautiful writing.
A definite must read for baby boomers entering on the macular degeneration road to the Planet of the Blind!
List price: $14.95 (that's 30% off!)
Used price: $9.86
Buy one from zShops for: $9.14
The paper is crisp, semi-glossy, and brilliant white; the cover and page edges are guilded; the typeface is sharp and crystal-clear; and the full-color endpapers are truly magnificent.
In all and every way this is a truly magnificent and sumptuous edition -- with perhaps the single exception of price. And even then, with such a marvelous work, that is to be expected!
List price: $12.95 (that's 20% off!)
Used price: $7.75
Collectible price: $12.96
Buy one from zShops for: $9.00