Image | ![]() |
EAN-13 | 9780312338565 ![]() |
Product Name | Despite The Falling Snow: A Novel |
Language | English |
Category | Book / Magazine / Publication |
Short Description | Hardcover |
Amazon.com | ![]() |
SKU | NF-KL-2133873 |
Price New | 46.09 US Dollars (curriencies) |
Price Used | 8.59 US Dollars (curriencies) |
Width | 1.17 inches (convert) |
Height | 8.28 inches (convert) |
Length | 5.82 inches (convert) |
Author | Shamim Sarif |
Page Count | 352 |
Binding | Hardcover |
Published | 09/17/2005 |
Long Description | “A perfectly balanced novel of love and tragedy.” --- Waterstone’s Books Quarterly (UK) In present-day Boston, seventy-year-old Alexander Ivanov has built a successful business empire. A kind, passionate man, he has managed to bury the tragic memories surrounding his early life in post-Stalinist Russia with his charismatic late wife, Katya---or so he believes. Into his life come two women: one will open up the heart Alexander has protected for so long; the other is determined to uncover the truth about what really happened to Katya all those years ago. Despite the Falling Snow journeys back to the snowbound streets of 1950s Moscow, revealing a city of secrets and treachery, a world of true love lost and friendships betrayed. For only by confronting the past can Alexander move on to his future. “At its core an unforgettable love story. Yet it is also a political novel of the highest order. Sarif understands, as Arthur Koestler did, the human cost exacted by totalitarian systems. And like Graham Greene, she knows that the worst betrayals are those committed by the ones we love. Her novel is immensely powerful---and deeply moving. ---Steve Yarbrough, author of Prisoners of War and Visible Spirits “Explores love and tragic loss with the pace of a thriller and a style that is gentle and flowing, a hypnotic combination that eases between the United States and 1950s Moscow. . . . A pure delight, highly recommended.” --- The Bookseller (UK) “An intriguing story of love, betrayal, anguish, and despair. . . . An enthralling read.” --- Daily Dispatch (UK) :An engrossing story that moves effortlessly between present-day Boston and Soviet Russia, dealing with terrible emotional violence and passionate love.” --- Writing Magazine (UK) |
Similar Items | 9780333643341: Rebecca 9780744513479: Annie On My Mind 9780671707347: Annie On My Mind 9780590870153: Annie On My Mind 9780553130164: Annie On My Mind 9780374400118: Annie On My Mind 0741952675990: I Can't Think Straight 9781573229722: Fingersmith 9780956031617: I Can't Think Straight 9780956031600: The World Unseen View 12 more similar items |
Created | 02-26-2012 10:18:31pm |
Modified | 04-30-2020 6:08:15pm |
MD5 | 8d00f24a921dd1c49bdb2ff93017aadd |
SHA256 | df9541ecd8089417b18a2fe71e3ca060f80b6c5b0619c96d8fab6586ca243b7b |
Search Google | by EAN or by Title |
Query Time | 0.0190730 |
Article of interest
This is a basic implementation of a service that provides retrieval access to the EANData.com UPC web site. Its was coded to verify basic proof-of-concept for development of another application and was not intended to provide be anything more than basic functionality in the retrieval of UPC data from the EANData.com web site.
There are several places where simple code was left in place rather than using more advanced Java features/methods to allow for easier understanding of junior developers. Not much time spent refactoring or cleaning up the code. It is provided as a starting point only.
It contains a Factory service that returns a service object configured using the UcpService.properties (see below) file found in the class path of the executed code. The UpcQueryService can respond with an implementation of the UpcResponse and supporting interfaces or with an InputStream allowing direct access to the response from the from the EANData.com web site.
JSR 353 is the Java API for JSON is currently under development (http://java.net/projects/json-processing-spec & http://java.net/projects/jsonp). The several Java JSON implementations seemed to be more than I was wanting/needing so I wrote a basic parser to provide JSON parsing capability needed. Its not perfect but is a good basic start.
Download the example source code
The UpcService.properties must be configured.
Url (Required)
provides the address used to query UPC data. The additional parameters are added to retrieve the requested information.
ApiKeyCode (Required)
Provided from EANData.com when your account is setup.
Mode (Required)
The manner in which the data will be retrieved from the EANData.com web site.
AutoRetrieveGraphics (Optional)
Boolean to indicate whether the graphics, when indicated by a Url, are to be automatically retrieved at the same time with the UPC data. Default is false. A factory method allows for the this property to be overridden at the time the UpcQueryService is created.