Disable All Advertising
Image
EAN-139780710088833   EAN-13 barcode 9780710088833
Product NameJustice: What's The Right Thing To Do?
LanguageEnglish
CategoryBook / Magazine / Publication
Amazon.comA Buy on Amazon ~ 0374532508
Price New2.36 US Dollars    (curriencies)
Price Used1.68 US Dollars    (curriencies)
Width0.81 inches    (convert)
Height8.21 inches    (convert)
Length5.46 inches    (convert)
Weight11.36 ounces    (convert)
AuthorMichael J. Sandel
Page Count320
BindingPaperback
Published08/17/2010
FeaturesFarrar Straus Giroux
Long Description"For Michael Sandel, justice is not a spectator sport," The Nation 's reviewer of Justice remarked. In his acclaimed book―based on his legendary Harvard course―Sandel offers a rare education in thinking through the complicated issues and controversies we face in public life today. It has emerged as a most lucid and engaging guide for those who yearn for a more robust and thoughtful public discourse. "In terms we can all understand," wrote Jonathan Rauch in The New York Times , Justice "confronts us with the concepts that lurk . . . beneath our conflicts." Affirmative action, same-sex marriage, physician-assisted suicide, abortion, national service, the moral limits of markets―Sandel relates the big questions of political philosophy to the most vexing issues of the day, and shows how a surer grasp of philosophy can help us make sense of politics, morality, and our own convictions as well. Justice is lively, thought-provoking, and wise―an essential new addition to the small shelf of books that speak convincingly to the hard questions of our civic life.
Similar Items9780070381155: Classic Works In Medical Ethics: Core Philosophical Readings
9780065015881: Developing Management Skills: Managing Stress
9780061604065: Research In Mass Communication: A Practical Guide
9780061316418: The Good Society
9780061176050: Being Wrong: Adventures In The Margin Of Error
9780060631123: Shantung Compound: The Story Of Men And Women Under Pressure
9780060441036: Macroeconomics
9780060198381: Writings on an Ethical Life
9780043012130: A New History Of Social Welfare (6th Edition)
9780006863588: The Righteous Mind: Why Good People Are Divided By Politics And Religion
View 59 more similar items
Created08-06-2013 9:51:58am
Modified04-30-2020 11:40:51pm
MD51efb8c523311cba1c62fbd916a10769d
SHA2569ade8f0be38a73ed506277ac170f84096283fb3ae16644e344c0f32eab5e1834
Search Googleby EAN or by Title
Query Time0.0297849

An article of interest

Making use of the tools we offer

Data feed access via Java

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.