Image | ![]() |
EAN-13 | 9780810126718 ![]() |
Product Name | Barbarous Souls |
Category | Book / Magazine / Publication |
Short Description | Paperback |
Amazon.com | ![]() |
SKU | 9780810126718 |
Price New | 11.00 US Dollars (curriencies) |
Price Used | 2.00 US Dollars (curriencies) |
Width | 0.7 inches (convert) |
Height | 9 inches (convert) |
Length | 6 inches (convert) |
Weight | 13.28 ounces (convert) |
Author | David L. Strauss |
Page Count | 272 |
Binding | Paperback |
Published | 11/30/2010 |
Features | Used Book in Good Condition |
Long Description | On December 14, 1955, Darrel Parker arrived at his Lincoln, Nebraska, home to find his wife, Nancy, strangled to death. Although their house was broken into less than a month earlier, the police were unable to find any leads, so their attention turned to Parker. To make their case, the authorities relied on a private interrogation by polygraph operator John Reid of Chicago. Reid’s company, founded in 1947, today provides interviewing and interrogation techniques that the company claims are the most widely used in the world. Barbarous Souls tells the story of Darrel Parker’s wrongful conviction for Nancy’s murder. Lincoln native David Strauss weaves a shocking true crime story with an exposé of still-prevalent methods of interrogation—methods that often lead to false confessions and the conviction of innocent suspects. After he was convicted, Parker served thirteen years of a life sentence before agreeing to a deal that would free him but not clear his record. It was later discovered that a murderer who died in prison in 1988 had taped a confession to the crime. A roller-coaster ride in the tradition of John Grisham’s The Innocent Man , Barbarous Souls is a thorough examination of a wrongful conviction based on a false confession, and an illuminating portrayal of a widespread phenomenon that still plagues the justice system. |
Similar Items | 9780618509638: Brothers And Keepers: A Memoir 9780582031449: No Matter How Loud I Shout : A Year In The Life Of Juvenile Court 9780534615253: Criminal Investigation (The Justice Series) 9780495913375: Criminal Law 9780451209825: Actual Innocence: When Justice Goes Wrong And How To Make It Right 9780431167916: Fish: A Memoir Of A Boy In A Man's Prison 9780256185591: Criminal Law 9780205519712: From These Beginnings, Volume 1 (8th Edition) 9780205503704: Criminal Investigation (The Justice Series) 9780132570923: Criminal Investigation (The Justice Series) View 7 more similar items |
Created | 11-16-2012 6:29:08am |
Modified | 05-01-2020 2:45:01am |
MD5 | e3cc8fcc704bc85ba40ecb3cddded76c |
SHA256 | 85d425e5384ff55dedc8e753c7ab9cd8e90fc9a45ba10a031cb8bce954444b35 |
Search Google | by EAN or by Title |
Query Time | 0.0183370 |
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.