Image | ![]() |
EAN-13 | 9780007205233 ![]() |
Product Name | Angela's Ashes: A Memoir of a Childhood |
Language | English |
Category | Book / Magazine / Publication |
Short Description | Paperback |
Amazon.com | ![]() |
SKU | MON0001629542 |
Price New | 9.99 US Dollars (curriencies) |
Price Used | 0.01 US Dollars (curriencies) |
Author | Frank McCourt |
Page Count | 256 |
Binding | Paperback |
Published | 12/07/1999 |
Long Description | "When I look back on my childhood I wonder how I managed to survive at all. It was, of course, a miserable childhood: the happy childhood is hardly worth your while. Worse than the ordinary miserable childhood is the miserable Irish childhood, and worse yet is the miserable Irish Catholic childhood." So begins the luminous memoir of Frank McCourt, born in Depression-era Brooklyn to recent Irish immigrants and raised in the slums of Limerick, Ireland. Frank's mother, Angela, has no money to feed the children since Frank's father, Malachy, rarely works, and when he does he drinks his wages. Yet Malachy-exasperating, irresponsible, and beguiling-does nurture in Frank an appetite for the one thing he can provide: a story. Frank lives for his father's tales of Cuchulain, who saved Ireland, and of the Angel on the Seventh Step, who brings his mother babies. Perhaps it is story that accounts for Frank's survival. Wearing rags for diapers, begging a pig's head for Christmas dinner and gathering coal from the roadside to light a fire, Frank endures poverty, near-starvation and the casual cruelty of relatives and neighbors-yet lives to tell his tale with eloquence, exuberance, and remarkable forgiveness. Angela's Ashes, imbued on every page with Frank McCourt's astounding humor and compassion, is a glorious book that bears all the marks of a classic. |
Similar Items | 9780143035749: The Liars' Club: A Memoir 9780140250947: The Things They Carried 9780140179835: The Liars' Club: A Memoir 9780099465539: The Glass Castle: A Memoir 9780007736409: Angela's Ashes: A Memoir 9780007666607: The Amazing Adventures of Kavalier & Clay 9780007205240: 'Tis: A Memoir 9780007106448: Angela's Ashes: A Memoir 9780006543954: The Things They Carried 9780006136699: The Glass Castle: A Memoir View 41 more similar items |
Created | 09-22-2012 1:07:50am |
Modified | 12-07-2016 6:10:40pm |
MD5 | 2502206d65678878d739bcc732b3c50d |
SHA256 | 527b0d27d69dfec40381af842cb85ac2b23681a9a59f3012030a5e22d2040cb8 |
Search Google | by EAN or by Title |
Query Time | 0.0307639 |
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.