Image | ![]() |
EAN-13 | 9780060835309 ![]() |
Product Name | By Myself And Then Some Cd |
Language | English |
Category | Book / Magazine / Publication |
Short Description | HarperAudio |
Amazon.com | ![]() |
SKU | 57233 |
Price New | 81.36 US Dollars (curriencies) |
Price Used | 11.97 US Dollars (curriencies) |
Width | 6.66 inches (convert) |
Height | 0.8 inches (convert) |
Length | 5.84 inches (convert) |
Weight | 7.84 ounces (convert) |
Author | Lauren Bacall |
Binding | Audio Cd |
Published | 03/15/2005 |
Long Description | The epitome of grace, independence, and wit, Lauren Bacall continues to astound generations with her audacious spirit and on-screen excellence. Together with Humphrey Bogart, she produced some of the most electric scenes in movie history, and their romance on and off screen made them Hollywood's most celebrated couple. But when Bogart died of cancer in 1957, Bacall and their children had to take everything he had taught them and grow up fast. In a time of postwar communism, Hollywood blacklisting, and revolutionary politics, she mixed with the legends: Hemingway, the Oliviers, Katharine Hepburn, Bobby Kennedy, and Gregory Peck. She was engaged to Frank Sinatra and had a turbulent second marriage to Jason Robards. But Bacall never lost sight of the strength that made her a superstar and she never lost sight of Bogie. Now, on the silver anniversary of its original publication, Bacall brings her inspiring memoir up to date, chronicling the events of the past twenty-five years, including her recent films and Broadway runs, and fond memories of her many close lifelong friendships. As one of the greatest actresses of all time turns eighty, By Myself and Then Some reveals the legend in her own beautiful frank words -- encapsulating a story that even Hollywood would struggle to reproduce. Read by the author |
Similar Items | 9781455878918: My Mother Was Nuts: A Memoir 9780743571708: Sage-Ing While Age-Ing 9781611761399: Rita Moreno: A Memoir 9781442344471: I'm Over All That: And Other Confessions 9781401390235: I Shouldn't Even Be Doing This! And Other Things That Strike Me As Funny 9780143057529: A Lotus Grows In The Mud |
Created | 01-15-2013 7:28:55am |
Modified | 04-30-2020 3:02:55pm |
MD5 | 003076af06482220929de3c392dd700b |
SHA256 | bf9336300ef6dc66224abc64b142408b721a6ac6ebf2772e2e0e4723dfddd8ea |
Search Google | by EAN or by Title |
Query Time | 0.0182252 |
Article of interest
The extra items are numerically indexed and provide extra text to go along with numeric values such as weights or distances or even currencies. The attributes that use these extra indexes are all numeric and take two fields. You can send the data in a single field as long as you use the same short or long text that we keep in our database.
Although the data feed API can deliver information as JSON or XML, we are using XML here because it is easier to read.
<attribute> <extra_group>Distance</extra_group> <field_name>depth</field_name> <extra> <id>501</id> <extra_short>in</extra_short> <extra_long>inches</extra_long> <seq>10</seq> </extra> <extra> <id>503</id> <extra_short>ft</extra_short> <extra_long>feet</extra_long> <seq>20</seq> </extra> <extra> <id>505</id> <extra_short>yrd</extra_short> <extra_long>yards</extra_long> <seq>30</seq> </extra> </attribute>
Looking at this example, you can see that the EXTRA portion is an array of values each with their own properties. Here is what each section means:
- extra_group - The text name representing the type of information the extra value represents. The extra elements are associated with this group.
- field_name - The field that this extra information is attached to. Multiple fields can be attached to the same extra_group.
- id - This is the unique id that identifies the specific extra element. It is unique across all extra groups.
- extra_short - The short text used to enhance the main data item.
- extra_long - The long text used to enhance the main data item.
- seq - The sequence that we use to display this element in a list. When two sequence numbers are the same we sort by the extra_long value.
This extra information is normally used in a drop down box next to the numeric data field that we want to enhance. Some examples might be:
- 12 pounds
- 15.25 US Dollars
- 354 grams
- 12.4 ounces
- 12 lbs
- 15.25 USD
- 354 g
- 12.4 oz
You see we can display the long or short version of the extra code by using the ID index.
Fields that make use of this extra information require it when pushing data back to us in the feed. You can either send the data in two fields (value and extra_id) or in a single field (value) as long as the text following the numeric portion matches the long or short version of the extra data we store for the field.
For example, if you wanted to update a field that represented distance with the value "100 yards", you could either send that data just like that in the value field value=100+yards or in two seperate fields value=100&extra_id=505 and you would get the same results. If you send an invalid extra_id or text after the number that doesn't match our accepted list, your update would be rejected.