Image | ![]() |
EAN-13 | 9780486268705 ![]() |
Product Name | Dubliners (Dover Thrift Editions) |
Language | English |
Category | Book / Magazine / Publication |
Short Description | Paperback |
Amazon.com | ![]() |
SKU | 9780486268705 |
Price New | 0.01 US Dollars (curriencies) |
Price Used | 0.01 US Dollars (curriencies) |
Width | 0.41 inches (convert) |
Height | 8.28 inches (convert) |
Length | 5.34 inches (convert) |
Weight | 4.48 ounces (convert) |
Author | James Joyce |
Page Count | 152 |
Binding | Paperback |
Published | 05/01/1991 |
Long Description | Although James Joyce began these stories of Dublin life in 1904, when he was 22, and had completed them by the end of 1907, they remained unpublished until 1914 — victims of Edwardian squeamishness. Their vivid, tightly focused observations of the life of Dublin's poorer classes, their unconventional themes, coarse language, and mention of actual people and places made publishers of the day reluctant to undertake sponsorship. Today, however, the stories are admired for their intense and masterly dissection of "dear dirty Dublin," and for the economy and grace with which Joyce invested this youthful fiction. From "The Sisters," the first story, illuminating a young boy's initial encounter with death, through the final piece, "The Dead," considered a masterpiece of the form, these tales represent, as Joyce himself explained, a chapter in the moral history of Ireland that would give the Irish "one good look at themselves." But in the end the stories are not just about the Irish; they represent moments of revelation common to all people. Now readers can enjoy all 15 stories in this inexpensive collection, which also functions as an excellent, accessible introduction to the work of one of the 20th century's most influential writers. Dubliners is reprinted here, complete and unabridged, from a standard edition. |
Similar Items | 9780099582212: Inventing Ireland (Convergences: Inventories Of The Present) 9780099562603: Let The Great World Spin: A Novel 9780099469629: Star Of The Sea 9780060789565: Dubliners 9780030260902: Anthology of Twentieth-Century British and Irish Poetry 9780030234620: A Portrait Of The Artist As A Young Man (Dover Thrift Editions) 9780026326902: The Collected Poems Of W. B. Yeats, 2nd Edition 9780006860051: Ireland Since The Famine 9780006380726: Ulysses 8587546587278: Heart Of Darkness (Broadview Literary Texts) 2nd (Second) Edition View 59 more similar items |
Created | 02-26-2012 6:31:55pm |
Modified | 04-30-2020 9:09:15pm |
MD5 | f55e8104889da49bbc7ea280dea27ee1 |
SHA256 | 2692fd780ef9b1e0f293dd4e4e4a257cc7cbcec12ca69526aeb5d710b63093cd |
Search Google | by EAN or by Title |
Query Time | 0.0341811 |
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.