Image | ![]() |
EAN-13 | 9780745639468 ![]() |
Product Name | Concepts of the Self |
Language | English |
Category | Book / Magazine / Publication |
Short Description | Height:8.5 inches / Length:5.75 inches / Weight:0.61 pounds / Width:0.63 inches |
Amazon.com | ![]() |
SKU | 0745639461 |
Price New | 34.39 US Dollars (curriencies) |
Price Used | 3.24 US Dollars (curriencies) |
Width | 0.62 inches (convert) |
Height | 8.54 inches (convert) |
Length | 5.48 inches (convert) |
Weight | 56 hundredths pounds (convert) |
Author | Anthony Elliott |
Page Count | 216 |
Binding | Paperback |
Published | 12/17/2007 |
Features | Used Book in Good Condition |
Long Description | This new and updated edition of Concepts of the Self remains the most lively, lucid and compelling introduction to contemporary controversies over the self and self-identity in the social sciences. Written by an author of international reputation, the book concentrates mainly on the work of social theorists and cultural analysts who have attempted to place the self in relation to psychological processes, social contexts, and historical perspectives. Mead, Freud, Goffman, Foucault, Chodorow, Kristeva and Baudrillard are among the figures covered; the new edition also introduces material on Zizek. Elliott also connects debates about the self directly to identity politics, the sociology of personal relationships and intimacy, and the politics of sexuality. The book focuses upon cultural and political issues, and breaks new ground in integrating interdisciplinary perspectives. In analysing debates about the self, Elliott draws extensively on contemporary social and cultural theory. Among the traditions of thought discussed are symbolic interactionism; modern sociology; post-structuralist thought; feminist and queer theory; psychoanalysis; and postmodernism. Elliott reviews core concepts of the self through an analysis of several connected themes: the complex relation between self and society; the importance of the interpreting self in social life; the reshaping of processes of self-formation; and, the changing character of identity politics. The new edition continues to break new ground by introducing compelling, contemporary material on the globalization of the self. Concepts of the Self is an accessible and invaluable introductory text for students in the areas of social and political theory, sociology, social psychology, cultural studies, and gender studies. |
Created | 11-21-2012 8:25:00am |
Modified | 05-01-2020 12:27:18am |
MD5 | dcde9f5d87b03ac61dad65ac49be5524 |
SHA256 | 98ffbc0096789cd9bc6a4fca8a0b116c8efc9f7a50db06c77d66c542d647e205 |
Search Google | by EAN or by Title |
Query Time | 0.0071850 |
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.