Image | ![]() |
EAN-13 | 9780230246577 ![]() |
Product Name | Theorizing Power |
Language | English |
Category | Book / Magazine / Publication |
Short Description | Height:9.17 inches / Length:6.14 inches / Weight:0.89 pounds / Width:0.59 inches |
Amazon.com | ![]() |
SKU | 679089 |
Price New | 33.89 US Dollars (curriencies) |
Price Used | 28.50 US Dollars (curriencies) |
Width | 1 inches (convert) |
Height | 9 inches (convert) |
Length | 6 inches (convert) |
Weight | 13.6 ounces (convert) |
Author | Jonathan S. Hearn |
Page Count | 264 |
Binding | Paperback |
Published | 06/19/2012 |
Features | Used Book in Good Condition |
Long Description | If we're interested in why society changes and develops, and if we want to identify the forces that influence our personal beliefs and choices, then we must have an understanding of the nature and scope of human power. This distinctively clear text critically evaluates how power is defined, conceptualized and theorized. Spanning 500 years of thinking in the field, the book examines ideas from classical and contemporary thinkers, from Machiavelli to Michael Mann. Theories are firmly rooted in their historical context alongside real-life examples to explain their relevance to our lives today. Theorizing Power highlights the significance of power across all areas of social life, including gender, religion, morality and identity. It is the ideal text to stimulate thinking and debate on the subject of power for all students of sociology and politics. |
Similar Items | 9780226910673: Power: Its Forms, Bases, and Uses 9780415051019: Ideology And Social Welfare (Radical Social Policy) 9780719023590: Power: A Philosophical Analysis 9781560008224: Power: Its Forms, Bases, And Uses 9780719059964: Power: A Philosophical Analysis, Second Edition 9780719057298: Power: A Reader 9780333420928: Power: A Radical View 9780300056693: Domination And The Arts Of Resistance: Hidden Transcripts 9780091279110: Domination And The Arts Of Resistance: Hidden Transcripts 9780060907020: Power, Its Forms, Bases, And Uses (Key Concepts In The Social Sciences) View 8 more similar items |
Created | 01-20-2013 1:58:23am |
Modified | 04-30-2020 5:12:22pm |
MD5 | a2ac9460e9c88ec7eaa95dcf77dab38e |
SHA256 | fe9d55c9f802439a30a801864fe2a3a935efcbe89b99f2590db8d612efc52517 |
Search Google | by EAN or by Title |
Query Time | 0.0338321 |
Article of interest
With version 3.2 comes a new way to handle product images. This should give you more control over the images you display.
Prior to version 3.2, you simply had to check for the existance of the product>image property. If it existed and was not blank, you could safely display the image.
Starting with version 3.2, you may want to check one more field before you display the product image. Many API users wanted access to the pending images. The only reasonable way to do this was to add a new property named product>hasImage which can be one of four values.
- Unknown (should never actually appear in the API)
- Yes (a production image exists)
- No (there is no image)
- Pending (a pending image exists)
If you are displaying the product images to your users and you DO NOT want to display pending images that have not been checked, you should only display the image if product>hasImage=Yes. If you want to show production and pending images, you can simply check the product>image property if you like. We suggest using product>hasImage as your main check and only display the image if it meets your needs. Here are samples of the JSON structure.
The property product>hasImage will always be regurned even if you specified a list of properties in the "get" string that does not include the image property. The main reason for this is that it is possible to calculate the image path on your side thereby saving the bandwidth of returning the image path.
If you want to calculate the path to the image on your end instead of requesting it from us, you can do this in two ways.
- If product>hasImage=Pending then simply use the path https://eandata.com/image/pending/{13_digit_EAN}.jpg
- If product>hasImage=Yes then it gets a little more tricky. We split the images into subfolders because there are so many of them. To calculate the path start with the 13 digit EAN and split it up like this: https://eandata.com/image/product/{1st_3_digits}/{2nd_3_digits}/{3rd_3_digits}/{13_digit_EAN}.jpg
This should make interacting with product and pending images much easier for you. Look at the example JSON shown above for working exmples of image paths.