Image | ![]() |
EAN-13 | 9780559122774 ![]() |
Product Name | The Tarot: History, Symbolism, And Divination |
Language | English |
Category | Book / Magazine / Publication |
Short Description | Height:9.54 inches / Length:0.12 inches / Weight:0.28 pounds / Width:7.32 inches |
Amazon.com | ![]() |
SKU | 9781585423491 |
Price New | 11.09 US Dollars (curriencies) |
Price Used | 5.44 US Dollars (curriencies) |
Width | 0.9 inches (convert) |
Height | 9 inches (convert) |
Length | 6 inches (convert) |
Weight | 12.32 ounces (convert) |
Author | Robert Place |
Page Count | 336 |
Binding | Paperback |
Published | 03/17/2005 |
Long Description | The Tarot is one of the few books that cuts through conventional misperceptions to explore the Tarot deck as it really developed in the Middle Ages and Renaissance Europe-not, as some would suggest, in the far reaches of Egyp-tian antiquity. Mining the Hermetic, alchemical, and Neoplatonic influences behind the evolution of the deck, author Robert M. Place provides a historically grounded and compelling portrait of the Tarot's true origins, without overlooking the deck's mystical dimensions. Indeed, Place uncommonly weds reliable historiography with a practical understanding of the intuitive help and divinatory guidance that the cards can bring. He presents techniques that offer new and valuable ways to read and interpret the cards. Based on a simple three-card spread, Place's approach can be used by either the seasoned practitioner or the new inquirer. |
Similar Items | 9780671891015: The Tarot: History, Mystery And Lore 9780615700779: The Tarot Of The Sevenfold Mystery 9780615543420: Alchemy And The Tarot: An Examination Of The Historical Connection With A Guide To The Alchemical Tarot 9780595273331: The Devil's Picturebook: The Compleat Guide To Tarot Cards: Their Origins And Their Usage 9780557533503: The Fool's Journey: The History, Art, & Symbolism Of The Tarot 9780486412368: A History Of Playing Cards And A Bibliography Of Cards And Gaming 9780451168009: The Mystical Tarot (Signet) 9780312361624: The Vampire Tarot 9780007102181: Animal Wisdom 9780004722979: Seventy-Eight Degrees Of Wisdom: A Book Of Tarot View 37 more similar items |
Created | 07-24-2013 10:08:42pm |
Modified | 04-30-2020 10:08:14pm |
MD5 | fd2f2caddac37a21154ecd063f099072 |
SHA256 | 21ed052528cb558ffacb93e87d9dc9caeaab2f926e47bf23dc60a3d5ec8a0b00 |
Search Google | by EAN or by Title |
Query Time | 0.0248442 |
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.