Disable All Advertising
Image
EAN-139781594860560   EAN-13 barcode 9781594860560
Product NameSub 4:00: Alan Webb and the Quest for the Fastest Mile
LanguageEnglish
CategoryBook / Magazine / Publication
Short DescriptionPaperback
Amazon.comA Buy on Amazon ~ 1594860564
SKUACOUK_BOOK_USEDLIKENEW_1594860564
Price New4.99 US Dollars    (curriencies)
Price Used0.01 US Dollars    (curriencies)
Width0.73 inches    (convert)
Height8.94 inches    (convert)
Length5.93 inches    (convert)
Weight13.12 ounces    (convert)
AuthorChris Lear
Page Count288
BindingPaperback
Published08/25/2004
Long DescriptionFor more than three decades, not one American schoolboy had run a sub-4:00 mile. Then, in January 2001, Alan Webb clocked a 3:59.86 mile, the fastest indoor U.S. high school mile ever. Just a few months later, the young track star achieved legendary status: he ran a 3:53.46 mile-a full 2 seconds faster than former record holder Jim Ryun. Everywhere Webb was hailed as "America's Next Great Miler." In Sub 4:00 , noted track writer Chris Lear follows Webb to college at the University of Michigan. As we witness Webb's freshman track season-watching him struggle with injuries, interpersonal conflicts, the politics of the collegiate track world, and his own aspirations to become the best miler ever-we get an unprecedented behind-the-scenes view of the life of one of the nation's most promising track athletes with a new chapter describing the latest developments in Webb's fascinating career.
Similar Items9781891369483: The Greatest: The Haile Gebrselassie Story
9781439192481: Again To Carthage: A Novel
9781416597896: Once A Runner: A Novel
9780007173723: Once A Runner: A Novel
9780875964577: Pre: The Story Of America's Greatest Running Legend, Steve Prefontaine
9780762773985: Running With The Buffaloes: A Season Inside With Mark Wetmore, Adam Goucher, And The University Of Colorado Men's Cross Country Team
9780618562091: The Perfect Mile: Three Athletes, One Goal, And Less Than Four Minutes To Achieve It
9780028616773: The Miler: America's Legendary Runner Talks About His Triumphs and Trials
9780753819005: The Perfect Distance - Ovett and Coe: The Record-Breaking Rivalry
Created06-05-2012 1:05:00am
Modified05-01-2020 6:19:37pm
MD52a805f26422db1657fa0273ce53f000a
SHA25693d4aa3b7839ccd891ea9852a70f0ac771c4d76a12a534e3eacb712524ec92c4
Search Googleby EAN or by Title
Query Time0.0255570

An article of interest

Making use of the tools we offer

Data Feed API - Extra

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:

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:

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.