Skip to content

Instantly share code, notes, and snippets.

@frankie-loves-jesus
Last active August 29, 2015 14:04
Show Gist options
  • Save frankie-loves-jesus/cac1d72283eff41706b6 to your computer and use it in GitHub Desktop.
Save frankie-loves-jesus/cac1d72283eff41706b6 to your computer and use it in GitHub Desktop.
# WORKING LIVE APP: http://runnable.com/U9RltBIJZFsY9s0O/amazon-api-old-
raw_products = request.item_search(query: params)
hashed_products = raw_products.to_h
@products = []
hashed_products['ItemSearchResponse']['Items']['Item'].each do |item|
product = OpenStruct.new
product.name = item['ItemAttributes']['Title']
product.url = item['DetailPageURL']
product.image_url = item['LargeImage']['URL']
@products << product
end
# NON-WORKING LIVE APP: http://runnable.com/U9Zi5jeGhlIi7QFr/amazon-api-xml-to-json
converted_products = JSON.parse(raw_products.to_json)
converted_products.map do |product|
product = OpenStruct.new(product)
product.name = item['ItemAttributes']['Title']
product.url = item['DetailPageURL']
image = product.images.find { |i| i["largeImage"] == 'URL' }
product.image = OpenStruct.new(image)
product
end

Result from running: http://runnable.com/U9Zi5jeGhlIi7QFr/amazon-api-xml-to-json

undefined method `to_sym' for #<Hash:0x000000028601f8>

Extracted source (around line #21):
    converted_products.map do |product|
      product = OpenStruct.new(product)
      product.name = item['ItemAttributes']['Title']
      product.url = item['DetailPageURL']
      image = product.images.find { |i| i["largeImage"] == 'URL' }

Rails.root: /root/rails-repo

app/controllers/main_controller.rb:21:in `new'
app/controllers/main_controller.rb:21:in `block in index'
app/controllers/main_controller.rb:20:in `each'
app/controllers/main_controller.rb:20:in `map'
app/controllers/main_controller.rb:20:in `index'
<Items>
<Request>
<IsValid>True</IsValid>
<ItemSearchRequest>
<Condition>All</Condition>
<Keywords>Ruby on Rails</Keywords>
<ResponseGroup>Images</ResponseGroup>
<ResponseGroup>ItemAttributes</ResponseGroup>
<ResponseGroup>Offers</ResponseGroup>
<SearchIndex>Books</SearchIndex>
</ItemSearchRequest>
</Request>
<TotalResults>686</TotalResults>
<TotalPages>69</TotalPages>
<MoreSearchResultsUrl>http://www.amazon.com/gp/redirect.html?camp=2025&creative=386001&location=http%3A%2F%2Fwww.amazon.com%2Fgp%2Fsearch%3Fkeywords%3DRuby%2Bon%2BRails%26url%3Dsearch-alias%253Dstripbooks&linkCode=xm2&tag=runnable-20&SubscriptionId=AKIAJVXKRZFPHQNNY5LQ</MoreSearchResultsUrl>
<Item>
<ASIN>0321832051</ASIN>
<DetailPageURL>http://www.amazon.com/Ruby-Rails-Tutorial-Addison-Wesley-Professional/dp/0321832051%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0321832051</DetailPageURL>
<ItemLinks>
<ItemLink>
<Description>Technical Details</Description>
<URL>http://www.amazon.com/Ruby-Rails-Tutorial-Addison-Wesley-Professional/dp/tech-data/0321832051%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321832051</URL>
</ItemLink>
<ItemLink>
<Description>Add To Baby Registry</Description>
<URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0321832051%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321832051</URL>
</ItemLink>
<ItemLink>
<Description>Add To Wedding Registry</Description>
<URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0321832051%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321832051</URL>
</ItemLink>
<ItemLink>
<Description>Add To Wishlist</Description>
<URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0321832051%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321832051</URL>
</ItemLink>
<ItemLink>
<Description>Tell A Friend</Description>
<URL>http://www.amazon.com/gp/pdp/taf/0321832051%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321832051</URL>
</ItemLink>
<ItemLink>
<Description>All Customer Reviews</Description>
<URL>http://www.amazon.com/review/product/0321832051%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321832051</URL>
</ItemLink>
<ItemLink>
<Description>All Offers</Description>
<URL>http://www.amazon.com/gp/offer-listing/0321832051%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321832051</URL>
</ItemLink>
</ItemLinks>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/515MC8lePYL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">57</Width>
</SmallImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/515MC8lePYL._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">123</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/515MC8lePYL.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">383</Width>
</LargeImage>
<ImageSets>
<ImageSet Category="primary">
<SwatchImage>
<URL>http://ecx.images-amazon.com/images/I/515MC8lePYL._SL30_.jpg</URL>
<Height Units="pixels">30</Height>
<Width Units="pixels">23</Width>
</SwatchImage>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/515MC8lePYL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">57</Width>
</SmallImage>
<ThumbnailImage>
<URL>http://ecx.images-amazon.com/images/I/515MC8lePYL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">57</Width>
</ThumbnailImage>
<TinyImage>
<URL>http://ecx.images-amazon.com/images/I/515MC8lePYL._SL110_.jpg</URL>
<Height Units="pixels">110</Height>
<Width Units="pixels">84</Width>
</TinyImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/515MC8lePYL._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">123</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/515MC8lePYL.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">383</Width>
</LargeImage>
</ImageSet>
</ImageSets>
<ItemAttributes>
<Author>Michael Hartl</Author>
<Binding>Paperback</Binding>
<EAN>9780321832054</EAN>
<EANList>
<EANListElement>9780321832054</EANListElement>
</EANList>
<Edition>2</Edition>
<ISBN>0321832051</ISBN>
<IsEligibleForTradeIn>1</IsEligibleForTradeIn>
<ItemDimensions>
<Height Units="hundredths-inches">114</Height>
<Length Units="hundredths-inches">909</Length>
<Weight Units="hundredths-pounds">203</Weight>
<Width Units="hundredths-inches">701</Width>
</ItemDimensions>
<Label>Addison-Wesley Professional</Label>
<Languages>
<Language>
<Name>English</Name>
<Type>Unknown</Type>
</Language>
<Language>
<Name>English</Name>
<Type>Original Language</Type>
</Language>
<Language>
<Name>English</Name>
<Type>Published</Type>
</Language>
</Languages>
<ListPrice>
<Amount>4499</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$44.99</FormattedPrice>
</ListPrice>
<Manufacturer>Addison-Wesley Professional</Manufacturer>
<NumberOfItems>1</NumberOfItems>
<NumberOfPages>600</NumberOfPages>
<PackageDimensions>
<Height Units="hundredths-inches">120</Height>
<Length Units="hundredths-inches">910</Length>
<Weight Units="hundredths-pounds">210</Weight>
<Width Units="hundredths-inches">700</Width>
</PackageDimensions>
<PackageQuantity>1</PackageQuantity>
<ProductGroup>Book</ProductGroup>
<ProductTypeName>ABIS_BOOK</ProductTypeName>
<PublicationDate>2012-08-06</PublicationDate>
<Publisher>Addison-Wesley Professional</Publisher>
<Studio>Addison-Wesley Professional</Studio>
<Title>Ruby on Rails Tutorial: Learn Web Development with Rails (2nd Edition) (Addison-Wesley Professional Ruby Series)</Title>
<TradeInValue>
<Amount>1101</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$11.01</FormattedPrice>
</TradeInValue>
</ItemAttributes>
<OfferSummary>
<LowestNewPrice>
<Amount>2548</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$25.48</FormattedPrice>
</LowestNewPrice>
<LowestUsedPrice>
<Amount>2200</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$22.00</FormattedPrice>
</LowestUsedPrice>
<TotalNew>43</TotalNew>
<TotalUsed>23</TotalUsed>
<TotalCollectible>0</TotalCollectible>
<TotalRefurbished>0</TotalRefurbished>
</OfferSummary>
<Offers>
<TotalOffers>2</TotalOffers>
<TotalOfferPages>1</TotalOfferPages>
<MoreOffersUrl>http://www.amazon.com/gp/offer-listing/0321832051%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321832051</MoreOffersUrl>
<Offer>
<OfferAttributes>
<Condition>New</Condition>
</OfferAttributes>
<OfferListing>
<OfferListingId>yJzbxs3NISziLgWC1RDJEjSg28aNTJkgWFNn%2BwZkEcHyTBqfOH6HyeCyFLGUuciDRZ8VPCS8USJo2h1DxI7NilcgfA0UHdQkHlLOm75TuXNbkDjuM1UXWA%3D%3D</OfferListingId>
<Price>
<Amount>2548</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$25.48</FormattedPrice>
</Price>
<AmountSaved>
<Amount>1951</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$19.51</FormattedPrice>
</AmountSaved>
<PercentageSaved>43</PercentageSaved>
<Availability>Usually ships in 1-2 business days</Availability>
<AvailabilityAttributes>
<AvailabilityType>now</AvailabilityType>
<MinimumHours>24</MinimumHours>
<MaximumHours>48</MaximumHours>
</AvailabilityAttributes>
<IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
</OfferListing>
</Offer>
<Offer>
<OfferAttributes>
<Condition>Used</Condition>
</OfferAttributes>
<OfferListing>
<OfferListingId>yJzbxs3NISziLgWC1RDJEjSg28aNTJkgN9aDoBNSholRrOkGdPgFxflH%2BJzcFA9hr1SKYuCkUcw9F4NH414iWC9jaYDfCaUK%2FWPTWeyNtT%2BCigdbnaXvUw%3D%3D</OfferListingId>
<Price>
<Amount>2300</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$23.00</FormattedPrice>
</Price>
<SalePrice>
<Amount>2200</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$22.00</FormattedPrice>
</SalePrice>
<AmountSaved>
<Amount>100</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$1.00</FormattedPrice>
</AmountSaved>
<PercentageSaved>4</PercentageSaved>
<Availability>Usually ships in 1-2 business days</Availability>
<AvailabilityAttributes>
<AvailabilityType>now</AvailabilityType>
<MinimumHours>24</MinimumHours>
<MaximumHours>48</MaximumHours>
</AvailabilityAttributes>
<IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
</OfferListing>
</Offer>
</Offers>
</Item>
<Item>
<ASIN>0321944275</ASIN>
<DetailPageURL>http://www.amazon.com/Rails-Edition-Addison-Wesley-Professional-Series/dp/0321944275%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0321944275</DetailPageURL>
<ItemLinks>
<ItemLink>
<Description>Technical Details</Description>
<URL>http://www.amazon.com/Rails-Edition-Addison-Wesley-Professional-Series/dp/tech-data/0321944275%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321944275</URL>
</ItemLink>
<ItemLink>
<Description>Add To Baby Registry</Description>
<URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0321944275%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321944275</URL>
</ItemLink>
<ItemLink>
<Description>Add To Wedding Registry</Description>
<URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0321944275%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321944275</URL>
</ItemLink>
<ItemLink>
<Description>Add To Wishlist</Description>
<URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0321944275%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321944275</URL>
</ItemLink>
<ItemLink>
<Description>Tell A Friend</Description>
<URL>http://www.amazon.com/gp/pdp/taf/0321944275%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321944275</URL>
</ItemLink>
<ItemLink>
<Description>All Customer Reviews</Description>
<URL>http://www.amazon.com/review/product/0321944275%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321944275</URL>
</ItemLink>
<ItemLink>
<Description>All Offers</Description>
<URL>http://www.amazon.com/gp/offer-listing/0321944275%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321944275</URL>
</ItemLink>
</ItemLinks>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/51X4nf0-thL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">49</Width>
</SmallImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/51X4nf0-thL._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">104</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/51X4nf0-thL.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">324</Width>
</LargeImage>
<ImageSets>
<ImageSet Category="primary">
<SwatchImage>
<URL>http://ecx.images-amazon.com/images/I/51X4nf0-thL._SL30_.jpg</URL>
<Height Units="pixels">30</Height>
<Width Units="pixels">19</Width>
</SwatchImage>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/51X4nf0-thL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">49</Width>
</SmallImage>
<ThumbnailImage>
<URL>http://ecx.images-amazon.com/images/I/51X4nf0-thL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">49</Width>
</ThumbnailImage>
<TinyImage>
<URL>http://ecx.images-amazon.com/images/I/51X4nf0-thL._SL110_.jpg</URL>
<Height Units="pixels">110</Height>
<Width Units="pixels">71</Width>
</TinyImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/51X4nf0-thL._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">104</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/51X4nf0-thL.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">324</Width>
</LargeImage>
</ImageSet>
</ImageSets>
<ItemAttributes>
<Author>Obie Fernandez</Author>
<Author>Kevin Faustino</Author>
<Binding>Paperback</Binding>
<EAN>9780321944276</EAN>
<EANList>
<EANListElement>9780321944276</EANListElement>
</EANList>
<Edition>3</Edition>
<ISBN>0321944275</ISBN>
<IsEligibleForTradeIn>1</IsEligibleForTradeIn>
<ItemDimensions>
<Height Units="hundredths-inches">0</Height>
<Length Units="hundredths-inches">0</Length>
<Weight Units="hundredths-pounds">0</Weight>
<Width Units="hundredths-inches">0</Width>
</ItemDimensions>
<Label>Addison-Wesley Professional</Label>
<Languages>
<Language>
<Name>English</Name>
<Type>Unknown</Type>
</Language>
<Language>
<Name>English</Name>
<Type>Original Language</Type>
</Language>
<Language>
<Name>English</Name>
<Type>Published</Type>
</Language>
</Languages>
<ListPrice>
<Amount>4999</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$49.99</FormattedPrice>
</ListPrice>
<Manufacturer>Addison-Wesley Professional</Manufacturer>
<NumberOfItems>1</NumberOfItems>
<NumberOfPages>880</NumberOfPages>
<PackageDimensions>
<Height Units="hundredths-inches">150</Height>
<Length Units="hundredths-inches">910</Length>
<Weight Units="hundredths-pounds">245</Weight>
<Width Units="hundredths-inches">700</Width>
</PackageDimensions>
<PackageQuantity>1</PackageQuantity>
<ProductGroup>Book</ProductGroup>
<ProductTypeName>ABIS_BOOK</ProductTypeName>
<PublicationDate>2014-06-08</PublicationDate>
<Publisher>Addison-Wesley Professional</Publisher>
<Studio>Addison-Wesley Professional</Studio>
<Title>The Rails 4 Way (3rd Edition) (Addison-Wesley Professional Ruby Series)</Title>
<TradeInValue>
<Amount>1581</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$15.81</FormattedPrice>
</TradeInValue>
</ItemAttributes>
<OfferSummary>
<LowestNewPrice>
<Amount>2750</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$27.50</FormattedPrice>
</LowestNewPrice>
<LowestUsedPrice>
<Amount>2499</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$24.99</FormattedPrice>
</LowestUsedPrice>
<TotalNew>35</TotalNew>
<TotalUsed>12</TotalUsed>
<TotalCollectible>0</TotalCollectible>
<TotalRefurbished>0</TotalRefurbished>
</OfferSummary>
<Offers>
<TotalOffers>2</TotalOffers>
<TotalOfferPages>1</TotalOfferPages>
<MoreOffersUrl>http://www.amazon.com/gp/offer-listing/0321944275%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321944275</MoreOffersUrl>
<Offer>
<OfferAttributes>
<Condition>New</Condition>
</OfferAttributes>
<OfferListing>
<OfferListingId>TSW4SltlpPyPea6XHktzHg6Z2bfc0EXGalsN9B2uJKnmJDwQDBwVXa5LPFVcA1i%2Fdw5ZdF%2Ff7ZUskmi79Y7KfJR2iCIluYhK5%2BmnXoODaYU6kUyrz%2FhD%2Bw%3D%3D</OfferListingId>
<Price>
<Amount>2750</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$27.50</FormattedPrice>
</Price>
<AmountSaved>
<Amount>2249</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$22.49</FormattedPrice>
</AmountSaved>
<PercentageSaved>45</PercentageSaved>
<Availability>Usually ships in 1-2 business days</Availability>
<AvailabilityAttributes>
<AvailabilityType>now</AvailabilityType>
<MinimumHours>24</MinimumHours>
<MaximumHours>48</MaximumHours>
</AvailabilityAttributes>
<IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
</OfferListing>
</Offer>
<Offer>
<OfferAttributes>
<Condition>Used</Condition>
</OfferAttributes>
<OfferListing>
<OfferListingId>%2B1Tn4p299Z5zG7%2B77qB2m0MfOn4GPQo%2FNnI8UC5Tq4M4vJxKPYPGPvBSlcqPYIet5R3dYB4eyFVESRJJYmDb%2F538HfEbzJ3Fk8WoR9VqX%2Bk8mTwMQr63Sg%3D%3D</OfferListingId>
<Price>
<Amount>2499</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$24.99</FormattedPrice>
</Price>
<AmountSaved>
<Amount>2500</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$25.00</FormattedPrice>
</AmountSaved>
<PercentageSaved>50</PercentageSaved>
<Availability>Usually ships in 1-2 business days</Availability>
<AvailabilityAttributes>
<AvailabilityType>now</AvailabilityType>
<MinimumHours>24</MinimumHours>
<MaximumHours>48</MaximumHours>
</AvailabilityAttributes>
<IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
</OfferListing>
</Offer>
</Offers>
</Item>
<Item>
<ASIN>B00DGYDXGK</ASIN>
<DetailPageURL>http://www.amazon.com/Ruby-In-Day-Basics-Coding-ebook/dp/B00DGYDXGK%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB00DGYDXGK</DetailPageURL>
<ItemLinks>
<ItemLink>
<Description>Technical Details</Description>
<URL>http://www.amazon.com/Ruby-In-Day-Basics-Coding-ebook/dp/tech-data/B00DGYDXGK%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00DGYDXGK</URL>
</ItemLink>
<ItemLink>
<Description>Add To Baby Registry</Description>
<URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB00DGYDXGK%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00DGYDXGK</URL>
</ItemLink>
<ItemLink>
<Description>Add To Wedding Registry</Description>
<URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB00DGYDXGK%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00DGYDXGK</URL>
</ItemLink>
<ItemLink>
<Description>Add To Wishlist</Description>
<URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB00DGYDXGK%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00DGYDXGK</URL>
</ItemLink>
<ItemLink>
<Description>Tell A Friend</Description>
<URL>http://www.amazon.com/gp/pdp/taf/B00DGYDXGK%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00DGYDXGK</URL>
</ItemLink>
<ItemLink>
<Description>All Customer Reviews</Description>
<URL>http://www.amazon.com/review/product/B00DGYDXGK%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00DGYDXGK</URL>
</ItemLink>
<ItemLink>
<Description>All Offers</Description>
<URL>http://www.amazon.com/gp/offer-listing/B00DGYDXGK%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00DGYDXGK</URL>
</ItemLink>
</ItemLinks>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/41%2BvLczgP3L._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">47</Width>
</SmallImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/41%2BvLczgP3L._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">100</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/41%2BvLczgP3L.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">313</Width>
</LargeImage>
<ImageSets>
<ImageSet Category="primary">
<SwatchImage>
<URL>http://ecx.images-amazon.com/images/I/41%2BvLczgP3L._SL30_.jpg</URL>
<Height Units="pixels">30</Height>
<Width Units="pixels">19</Width>
</SwatchImage>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/41%2BvLczgP3L._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">47</Width>
</SmallImage>
<ThumbnailImage>
<URL>http://ecx.images-amazon.com/images/I/41%2BvLczgP3L._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">47</Width>
</ThumbnailImage>
<TinyImage>
<URL>http://ecx.images-amazon.com/images/I/41%2BvLczgP3L._SL110_.jpg</URL>
<Height Units="pixels">110</Height>
<Width Units="pixels">69</Width>
</TinyImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/41%2BvLczgP3L._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">100</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/41%2BvLczgP3L.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">313</Width>
</LargeImage>
</ImageSet>
</ImageSets>
<ItemAttributes>
<Author>Richard Wagstaff</Author>
<Binding>Kindle Edition</Binding>
<Format>Kindle eBook</Format>
<IsAdultProduct>0</IsAdultProduct>
<Languages>
<Language>
<Name>English</Name>
<Type>Published</Type>
</Language>
</Languages>
<NumberOfPages>75</NumberOfPages>
<ProductGroup>eBooks</ProductGroup>
<ProductTypeName>ABIS_EBOOKS</ProductTypeName>
<PublicationDate>2013-06-17</PublicationDate>
<ReleaseDate>2013-06-17</ReleaseDate>
<Title>Ruby In A Day: Learn The Basics, Learn It Quick, Start Coding Fast (In A Day Books Book 3)</Title>
</ItemAttributes>
</Item>
<Item>
<ASIN>1937785564</ASIN>
<DetailPageURL>http://www.amazon.com/Agile-Development-Rails-Facets-Ruby/dp/1937785564%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1937785564</DetailPageURL>
<ItemLinks>
<ItemLink>
<Description>Technical Details</Description>
<URL>http://www.amazon.com/Agile-Development-Rails-Facets-Ruby/dp/tech-data/1937785564%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1937785564</URL>
</ItemLink>
<ItemLink>
<Description>Add To Baby Registry</Description>
<URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D1937785564%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1937785564</URL>
</ItemLink>
<ItemLink>
<Description>Add To Wedding Registry</Description>
<URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D1937785564%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1937785564</URL>
</ItemLink>
<ItemLink>
<Description>Add To Wishlist</Description>
<URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D1937785564%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1937785564</URL>
</ItemLink>
<ItemLink>
<Description>Tell A Friend</Description>
<URL>http://www.amazon.com/gp/pdp/taf/1937785564%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1937785564</URL>
</ItemLink>
<ItemLink>
<Description>All Customer Reviews</Description>
<URL>http://www.amazon.com/review/product/1937785564%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1937785564</URL>
</ItemLink>
<ItemLink>
<Description>All Offers</Description>
<URL>http://www.amazon.com/gp/offer-listing/1937785564%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1937785564</URL>
</ItemLink>
</ItemLinks>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/41nToGax%2BRL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">61</Width>
</SmallImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/41nToGax%2BRL._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">130</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/41nToGax%2BRL.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">406</Width>
</LargeImage>
<ImageSets>
<ImageSet Category="primary">
<SwatchImage>
<URL>http://ecx.images-amazon.com/images/I/41nToGax%2BRL._SL30_.jpg</URL>
<Height Units="pixels">30</Height>
<Width Units="pixels">24</Width>
</SwatchImage>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/41nToGax%2BRL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">61</Width>
</SmallImage>
<ThumbnailImage>
<URL>http://ecx.images-amazon.com/images/I/41nToGax%2BRL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">61</Width>
</ThumbnailImage>
<TinyImage>
<URL>http://ecx.images-amazon.com/images/I/41nToGax%2BRL._SL110_.jpg</URL>
<Height Units="pixels">110</Height>
<Width Units="pixels">89</Width>
</TinyImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/41nToGax%2BRL._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">130</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/41nToGax%2BRL.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">406</Width>
</LargeImage>
</ImageSet>
<ImageSet Category="variant">
<SwatchImage>
<URL>http://ecx.images-amazon.com/images/I/51YYppV-ZHL._SL30_.jpg</URL>
<Height Units="pixels">30</Height>
<Width Units="pixels">24</Width>
</SwatchImage>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/51YYppV-ZHL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">61</Width>
</SmallImage>
<ThumbnailImage>
<URL>http://ecx.images-amazon.com/images/I/51YYppV-ZHL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">61</Width>
</ThumbnailImage>
<TinyImage>
<URL>http://ecx.images-amazon.com/images/I/51YYppV-ZHL._SL110_.jpg</URL>
<Height Units="pixels">110</Height>
<Width Units="pixels">89</Width>
</TinyImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/51YYppV-ZHL._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">130</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/51YYppV-ZHL.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">406</Width>
</LargeImage>
</ImageSet>
</ImageSets>
<ItemAttributes>
<Author>Sam Ruby</Author>
<Author>Dave Thomas</Author>
<Author>David Heinemeier Hansson</Author>
<Binding>Paperback</Binding>
<EAN>9781937785567</EAN>
<EANList>
<EANListElement>9781937785567</EANListElement>
</EANList>
<Edition>1</Edition>
<ISBN>1937785564</ISBN>
<IsEligibleForTradeIn>1</IsEligibleForTradeIn>
<ItemDimensions>
<Height Units="hundredths-inches">93</Height>
<Length Units="hundredths-inches">899</Length>
<Weight Units="hundredths-pounds">167</Weight>
<Width Units="hundredths-inches">763</Width>
</ItemDimensions>
<Label>Pragmatic Bookshelf</Label>
<Languages>
<Language>
<Name>English</Name>
<Type>Unknown</Type>
</Language>
<Language>
<Name>English</Name>
<Type>Original Language</Type>
</Language>
<Language>
<Name>English</Name>
<Type>Published</Type>
</Language>
</Languages>
<ListPrice>
<Amount>4395</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$43.95</FormattedPrice>
</ListPrice>
<Manufacturer>Pragmatic Bookshelf</Manufacturer>
<NumberOfItems>1</NumberOfItems>
<NumberOfPages>480</NumberOfPages>
<PackageDimensions>
<Height Units="hundredths-inches">110</Height>
<Length Units="hundredths-inches">890</Length>
<Weight Units="hundredths-pounds">160</Weight>
<Width Units="hundredths-inches">750</Width>
</PackageDimensions>
<ProductGroup>Book</ProductGroup>
<ProductTypeName>ABIS_BOOK</ProductTypeName>
<PublicationDate>2013-10-11</PublicationDate>
<Publisher>Pragmatic Bookshelf</Publisher>
<Studio>Pragmatic Bookshelf</Studio>
<Title>Agile Web Development with Rails 4 (Facets of Ruby)</Title>
<TradeInValue>
<Amount>967</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$9.67</FormattedPrice>
</TradeInValue>
</ItemAttributes>
<OfferSummary>
<LowestNewPrice>
<Amount>2199</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$21.99</FormattedPrice>
</LowestNewPrice>
<LowestUsedPrice>
<Amount>2242</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$22.42</FormattedPrice>
</LowestUsedPrice>
<TotalNew>42</TotalNew>
<TotalUsed>16</TotalUsed>
<TotalCollectible>0</TotalCollectible>
<TotalRefurbished>0</TotalRefurbished>
</OfferSummary>
<Offers>
<TotalOffers>2</TotalOffers>
<TotalOfferPages>1</TotalOfferPages>
<MoreOffersUrl>http://www.amazon.com/gp/offer-listing/1937785564%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1937785564</MoreOffersUrl>
<Offer>
<OfferAttributes>
<Condition>New</Condition>
</OfferAttributes>
<OfferListing>
<OfferListingId>f5KdFHCY2Jxm2vumaX%2BM6TyeE8Knrk%2B6Rz3GCsg8ErCcgcZ8Fs5DjanXUayd3CVadWflU6xnJP6Ll8YKCtQhEfetgHXQB5pdITSwiYcSrXYUSRkOjPil9RFCvFyOVOMA</OfferListingId>
<Price>
<Amount>2199</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$21.99</FormattedPrice>
</Price>
<AmountSaved>
<Amount>2196</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$21.96</FormattedPrice>
</AmountSaved>
<PercentageSaved>50</PercentageSaved>
<Availability>Usually ships in 3-4 business days</Availability>
<AvailabilityAttributes>
<AvailabilityType>now</AvailabilityType>
<MinimumHours>72</MinimumHours>
<MaximumHours>96</MaximumHours>
</AvailabilityAttributes>
<IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
</OfferListing>
</Offer>
<Offer>
<OfferAttributes>
<Condition>Used</Condition>
</OfferAttributes>
<OfferListing>
<OfferListingId>f5KdFHCY2Jxm2vumaX%2BM6TyeE8Knrk%2B6Xl9tEqI4vSJUqH1xMyRsUgdI0BNlmBK9UF2ERxZAkVoFLS31jEBe%2FHgi%2FCkK97V9WftHy5KodlMMFYljxkAn2w%3D%3D</OfferListingId>
<Price>
<Amount>2242</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$22.42</FormattedPrice>
</Price>
<AmountSaved>
<Amount>2153</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$21.53</FormattedPrice>
</AmountSaved>
<PercentageSaved>49</PercentageSaved>
<Availability>Usually ships in 1-2 business days</Availability>
<AvailabilityAttributes>
<AvailabilityType>now</AvailabilityType>
<MinimumHours>24</MinimumHours>
<MaximumHours>48</MaximumHours>
</AvailabilityAttributes>
<IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
</OfferListing>
</Offer>
</Offers>
</Item>
<Item>
<ASIN>1491054484</ASIN>
<DetailPageURL>http://www.amazon.com/Ruby-Rails-4-0-Guide-guide/dp/1491054484%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1491054484</DetailPageURL>
<ItemLinks>
<ItemLink>
<Description>Technical Details</Description>
<URL>http://www.amazon.com/Ruby-Rails-4-0-Guide-guide/dp/tech-data/1491054484%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1491054484</URL>
</ItemLink>
<ItemLink>
<Description>Add To Baby Registry</Description>
<URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D1491054484%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1491054484</URL>
</ItemLink>
<ItemLink>
<Description>Add To Wedding Registry</Description>
<URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D1491054484%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1491054484</URL>
</ItemLink>
<ItemLink>
<Description>Add To Wishlist</Description>
<URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D1491054484%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1491054484</URL>
</ItemLink>
<ItemLink>
<Description>Tell A Friend</Description>
<URL>http://www.amazon.com/gp/pdp/taf/1491054484%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1491054484</URL>
</ItemLink>
<ItemLink>
<Description>All Customer Reviews</Description>
<URL>http://www.amazon.com/review/product/1491054484%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1491054484</URL>
</ItemLink>
<ItemLink>
<Description>All Offers</Description>
<URL>http://www.amazon.com/gp/offer-listing/1491054484%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1491054484</URL>
</ItemLink>
</ItemLinks>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/51DH3OaYl4L._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">50</Width>
</SmallImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/51DH3OaYl4L._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">107</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/51DH3OaYl4L.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">333</Width>
</LargeImage>
<ImageSets>
<ImageSet Category="primary">
<SwatchImage>
<URL>http://ecx.images-amazon.com/images/I/51DH3OaYl4L._SL30_.jpg</URL>
<Height Units="pixels">30</Height>
<Width Units="pixels">20</Width>
</SwatchImage>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/51DH3OaYl4L._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">50</Width>
</SmallImage>
<ThumbnailImage>
<URL>http://ecx.images-amazon.com/images/I/51DH3OaYl4L._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">50</Width>
</ThumbnailImage>
<TinyImage>
<URL>http://ecx.images-amazon.com/images/I/51DH3OaYl4L._SL110_.jpg</URL>
<Height Units="pixels">110</Height>
<Width Units="pixels">73</Width>
</TinyImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/51DH3OaYl4L._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">107</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/51DH3OaYl4L.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">333</Width>
</LargeImage>
</ImageSet>
<ImageSet Category="variant">
<SwatchImage>
<URL>http://ecx.images-amazon.com/images/I/416L0mfecaL._SL30_.jpg</URL>
<Height Units="pixels">30</Height>
<Width Units="pixels">20</Width>
</SwatchImage>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/416L0mfecaL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">50</Width>
</SmallImage>
<ThumbnailImage>
<URL>http://ecx.images-amazon.com/images/I/416L0mfecaL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">50</Width>
</ThumbnailImage>
<TinyImage>
<URL>http://ecx.images-amazon.com/images/I/416L0mfecaL._SL110_.jpg</URL>
<Height Units="pixels">110</Height>
<Width Units="pixels">73</Width>
</TinyImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/416L0mfecaL._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">107</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/416L0mfecaL.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">333</Width>
</LargeImage>
</ImageSet>
</ImageSets>
<ItemAttributes>
<Author>Stefan Wintermeyer</Author>
<Binding>Paperback</Binding>
<EAN>9781491054482</EAN>
<EANList>
<EANListElement>9781491054482</EANListElement>
</EANList>
<Edition>1.0</Edition>
<ISBN>1491054484</ISBN>
<IsEligibleForTradeIn>1</IsEligibleForTradeIn>
<Label>CreateSpace Independent Publishing Platform</Label>
<Languages>
<Language>
<Name>English</Name>
<Type>Original Language</Type>
</Language>
<Language>
<Name>English</Name>
<Type>Published</Type>
</Language>
</Languages>
<ListPrice>
<Amount>2695</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$26.95</FormattedPrice>
</ListPrice>
<Manufacturer>CreateSpace Independent Publishing Platform</Manufacturer>
<NumberOfPages>336</NumberOfPages>
<PackageDimensions>
<Height Units="hundredths-inches">90</Height>
<Length Units="hundredths-inches">890</Length>
<Weight Units="hundredths-pounds">120</Weight>
<Width Units="hundredths-inches">600</Width>
</PackageDimensions>
<ProductGroup>Book</ProductGroup>
<ProductTypeName>ABIS_BOOK</ProductTypeName>
<PublicationDate>2013-07-20</PublicationDate>
<Publisher>CreateSpace Independent Publishing Platform</Publisher>
<Studio>CreateSpace Independent Publishing Platform</Studio>
<Title>Ruby on Rails 4.0 Guide: A step by step guide to learn Ruby on Rails 4.0 and Ruby 2.0.</Title>
<TradeInValue>
<Amount>445</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$4.45</FormattedPrice>
</TradeInValue>
</ItemAttributes>
<OfferSummary>
<LowestNewPrice>
<Amount>2403</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$24.03</FormattedPrice>
</LowestNewPrice>
<LowestUsedPrice>
<Amount>17631</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$176.31</FormattedPrice>
</LowestUsedPrice>
<TotalNew>3</TotalNew>
<TotalUsed>2</TotalUsed>
<TotalCollectible>0</TotalCollectible>
<TotalRefurbished>0</TotalRefurbished>
</OfferSummary>
<Offers>
<TotalOffers>2</TotalOffers>
<TotalOfferPages>1</TotalOfferPages>
<MoreOffersUrl>http://www.amazon.com/gp/offer-listing/1491054484%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1491054484</MoreOffersUrl>
<Offer>
<OfferAttributes>
<Condition>New</Condition>
</OfferAttributes>
<OfferListing>
<OfferListingId>R24pyOCAKpg7D8u6pAX7wDQhF0EO5%2BsonoAM8JpuFotdGXfywTziq6KZWh%2FXsox8QdWmWGNIHm3FvgZ9weT4gAXNplNbqA0PxVEAkiwY3Zj29m%2F7G1tasA%3D%3D</OfferListingId>
<Price>
<Amount>2403</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$24.03</FormattedPrice>
</Price>
<AmountSaved>
<Amount>292</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$2.92</FormattedPrice>
</AmountSaved>
<PercentageSaved>11</PercentageSaved>
<Availability>Usually ships in 24 hours</Availability>
<AvailabilityAttributes>
<AvailabilityType>now</AvailabilityType>
<MinimumHours>24</MinimumHours>
<MaximumHours>24</MaximumHours>
</AvailabilityAttributes>
<IsEligibleForSuperSaverShipping>1</IsEligibleForSuperSaverShipping>
</OfferListing>
</Offer>
<Offer>
<OfferAttributes>
<Condition>Used</Condition>
</OfferAttributes>
<OfferListing>
<OfferListingId>ERbMp2SpTyXSDP3xByR5szu2LFgO3qLU78yPoTZzvLvhCM3yzdoQ%2Bq7cCxNiXuKGgmhsZZ2HAFyPuZPQ%2BS5Mou8c3VTJOB82NYCFS69wFTv5Gu4epQxqrA%3D%3D</OfferListingId>
<Price>
<Amount>17631</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$176.31</FormattedPrice>
</Price>
<Availability>Usually ships in 1-2 business days</Availability>
<AvailabilityAttributes>
<AvailabilityType>now</AvailabilityType>
<MinimumHours>24</MinimumHours>
<MaximumHours>48</MaximumHours>
</AvailabilityAttributes>
<IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
</OfferListing>
</Offer>
</Offers>
</Item>
<Item>
<ASIN>B00LPALWL0</ASIN>
<DetailPageURL>http://www.amazon.com/Ruby-Programming-Beginners-Scratch-Development-ebook/dp/B00LPALWL0%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB00LPALWL0</DetailPageURL>
<ItemLinks>
<ItemLink>
<Description>Technical Details</Description>
<URL>http://www.amazon.com/Ruby-Programming-Beginners-Scratch-Development-ebook/dp/tech-data/B00LPALWL0%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00LPALWL0</URL>
</ItemLink>
<ItemLink>
<Description>Add To Baby Registry</Description>
<URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3DB00LPALWL0%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00LPALWL0</URL>
</ItemLink>
<ItemLink>
<Description>Add To Wedding Registry</Description>
<URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3DB00LPALWL0%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00LPALWL0</URL>
</ItemLink>
<ItemLink>
<Description>Add To Wishlist</Description>
<URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3DB00LPALWL0%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00LPALWL0</URL>
</ItemLink>
<ItemLink>
<Description>Tell A Friend</Description>
<URL>http://www.amazon.com/gp/pdp/taf/B00LPALWL0%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00LPALWL0</URL>
</ItemLink>
<ItemLink>
<Description>All Customer Reviews</Description>
<URL>http://www.amazon.com/review/product/B00LPALWL0%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00LPALWL0</URL>
</ItemLink>
<ItemLink>
<Description>All Offers</Description>
<URL>http://www.amazon.com/gp/offer-listing/B00LPALWL0%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3DB00LPALWL0</URL>
</ItemLink>
</ItemLinks>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/51L4VtFy0RL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">50</Width>
</SmallImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/51L4VtFy0RL._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">107</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/51L4VtFy0RL.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">333</Width>
</LargeImage>
<ImageSets>
<ImageSet Category="primary">
<SwatchImage>
<URL>http://ecx.images-amazon.com/images/I/51L4VtFy0RL._SL30_.jpg</URL>
<Height Units="pixels">30</Height>
<Width Units="pixels">20</Width>
</SwatchImage>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/51L4VtFy0RL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">50</Width>
</SmallImage>
<ThumbnailImage>
<URL>http://ecx.images-amazon.com/images/I/51L4VtFy0RL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">50</Width>
</ThumbnailImage>
<TinyImage>
<URL>http://ecx.images-amazon.com/images/I/51L4VtFy0RL._SL110_.jpg</URL>
<Height Units="pixels">110</Height>
<Width Units="pixels">73</Width>
</TinyImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/51L4VtFy0RL._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">107</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/51L4VtFy0RL.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">333</Width>
</LargeImage>
</ImageSet>
</ImageSets>
<ItemAttributes>
<Author>AZ Elite Publishing</Author>
<Binding>Kindle Edition</Binding>
<Creator Role="Introduction">Rupy</Creator>
<Creator Role="Introduction">Ruby on Rails</Creator>
<Edition>Ruby, Ruby on rail, Ruby Red, Ruby Programming, Ru</Edition>
<Format>Kindle eBook</Format>
<IsAdultProduct>0</IsAdultProduct>
<Languages>
<Language>
<Name>English</Name>
<Type>Published</Type>
</Language>
</Languages>
<NumberOfPages>45</NumberOfPages>
<ProductGroup>eBooks</ProductGroup>
<ProductTypeName>ABIS_EBOOKS</ProductTypeName>
<PublicationDate>2014-07-10</PublicationDate>
<ReleaseDate>2014-07-10</ReleaseDate>
<Title>Ruby: Quick & Easy Ruby On Rails Programming For Beginners. Learn Ruby On Rails from Scratch!: (Ruby, Ruby on rail, Ruby Red, Ruby Programming, Ruby Development) ... Ruby Programming, Ruby Development, Book 1)</Title>
</ItemAttributes>
</Item>
<Item>
<ASIN>0321721330</ASIN>
<DetailPageURL>http://www.amazon.com/Practical-Object-Oriented-Design-Ruby-Addison-Wesley/dp/0321721330%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0321721330</DetailPageURL>
<ItemLinks>
<ItemLink>
<Description>Technical Details</Description>
<URL>http://www.amazon.com/Practical-Object-Oriented-Design-Ruby-Addison-Wesley/dp/tech-data/0321721330%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321721330</URL>
</ItemLink>
<ItemLink>
<Description>Add To Baby Registry</Description>
<URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0321721330%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321721330</URL>
</ItemLink>
<ItemLink>
<Description>Add To Wedding Registry</Description>
<URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0321721330%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321721330</URL>
</ItemLink>
<ItemLink>
<Description>Add To Wishlist</Description>
<URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0321721330%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321721330</URL>
</ItemLink>
<ItemLink>
<Description>Tell A Friend</Description>
<URL>http://www.amazon.com/gp/pdp/taf/0321721330%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321721330</URL>
</ItemLink>
<ItemLink>
<Description>All Customer Reviews</Description>
<URL>http://www.amazon.com/review/product/0321721330%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321721330</URL>
</ItemLink>
<ItemLink>
<Description>All Offers</Description>
<URL>http://www.amazon.com/gp/offer-listing/0321721330%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321721330</URL>
</ItemLink>
</ItemLinks>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/513q2AOSeAL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">57</Width>
</SmallImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/513q2AOSeAL._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">122</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/513q2AOSeAL.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">382</Width>
</LargeImage>
<ImageSets>
<ImageSet Category="primary">
<SwatchImage>
<URL>http://ecx.images-amazon.com/images/I/513q2AOSeAL._SL30_.jpg</URL>
<Height Units="pixels">30</Height>
<Width Units="pixels">23</Width>
</SwatchImage>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/513q2AOSeAL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">57</Width>
</SmallImage>
<ThumbnailImage>
<URL>http://ecx.images-amazon.com/images/I/513q2AOSeAL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">57</Width>
</ThumbnailImage>
<TinyImage>
<URL>http://ecx.images-amazon.com/images/I/513q2AOSeAL._SL110_.jpg</URL>
<Height Units="pixels">110</Height>
<Width Units="pixels">84</Width>
</TinyImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/513q2AOSeAL._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">122</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/513q2AOSeAL.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">382</Width>
</LargeImage>
</ImageSet>
</ImageSets>
<ItemAttributes>
<Author>Sandi Metz</Author>
<Binding>Paperback</Binding>
<Brand>Brand: Addison-Wesley Professional</Brand>
<EAN>9780321721334</EAN>
<EANList>
<EANListElement>9780321721334</EANListElement>
</EANList>
<Edition>1</Edition>
<Feature>Used Book in Good Condition</Feature>
<ISBN>0321721330</ISBN>
<IsEligibleForTradeIn>1</IsEligibleForTradeIn>
<ItemDimensions>
<Height Units="hundredths-inches">51</Height>
<Length Units="hundredths-inches">906</Length>
<Weight Units="hundredths-pounds">112</Weight>
<Width Units="hundredths-inches">705</Width>
</ItemDimensions>
<Label>Addison-Wesley Professional</Label>
<Languages>
<Language>
<Name>English</Name>
<Type>Unknown</Type>
</Language>
<Language>
<Name>English</Name>
<Type>Original Language</Type>
</Language>
<Language>
<Name>English</Name>
<Type>Published</Type>
</Language>
</Languages>
<ListPrice>
<Amount>3999</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$39.99</FormattedPrice>
</ListPrice>
<Manufacturer>Addison-Wesley Professional</Manufacturer>
<NumberOfItems>1</NumberOfItems>
<NumberOfPages>272</NumberOfPages>
<PackageDimensions>
<Height Units="hundredths-inches">60</Height>
<Length Units="hundredths-inches">900</Length>
<Weight Units="hundredths-pounds">110</Weight>
<Width Units="hundredths-inches">690</Width>
</PackageDimensions>
<PackageQuantity>1</PackageQuantity>
<ProductGroup>Book</ProductGroup>
<ProductTypeName>ABIS_BOOK</ProductTypeName>
<PublicationDate>2012-09-15</PublicationDate>
<Publisher>Addison-Wesley Professional</Publisher>
<Studio>Addison-Wesley Professional</Studio>
<Title>Practical Object-Oriented Design in Ruby: An Agile Primer (Addison-Wesley Professional Ruby Series)</Title>
<TradeInValue>
<Amount>1508</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$15.08</FormattedPrice>
</TradeInValue>
</ItemAttributes>
<OfferSummary>
<LowestNewPrice>
<Amount>2312</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$23.12</FormattedPrice>
</LowestNewPrice>
<LowestUsedPrice>
<Amount>2737</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$27.37</FormattedPrice>
</LowestUsedPrice>
<TotalNew>46</TotalNew>
<TotalUsed>21</TotalUsed>
<TotalCollectible>0</TotalCollectible>
<TotalRefurbished>0</TotalRefurbished>
</OfferSummary>
<Offers>
<TotalOffers>2</TotalOffers>
<TotalOfferPages>1</TotalOfferPages>
<MoreOffersUrl>http://www.amazon.com/gp/offer-listing/0321721330%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0321721330</MoreOffersUrl>
<Offer>
<OfferAttributes>
<Condition>New</Condition>
</OfferAttributes>
<OfferListing>
<OfferListingId>hqpxl8L0HQ8sxLl%2BEUdHeZJr40a3Og5oE%2FUruhuXqQCuItW26nqTc2R6YzQ7OFCG%2BI2S76YD7Ks7E0EkkQ246SzLY00AUVYYQN8WBgIdYElY8NW3zwrRMw%3D%3D</OfferListingId>
<Price>
<Amount>2312</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$23.12</FormattedPrice>
</Price>
<AmountSaved>
<Amount>1687</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$16.87</FormattedPrice>
</AmountSaved>
<PercentageSaved>42</PercentageSaved>
<Availability>Usually ships in 1-2 business days</Availability>
<AvailabilityAttributes>
<AvailabilityType>now</AvailabilityType>
<MinimumHours>24</MinimumHours>
<MaximumHours>48</MaximumHours>
</AvailabilityAttributes>
<IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
</OfferListing>
</Offer>
<Offer>
<OfferAttributes>
<Condition>Used</Condition>
</OfferAttributes>
<OfferListing>
<OfferListingId>hqpxl8L0HQ8sxLl%2BEUdHeZJr40a3Og5oIwOm7KbhlCDXHySYThTCf8v6xsQQ%2FUZsR91SZpJSbGkCx1dwkTQG84OVRevgowJgtsIdkNy%2BKUhCBfVniZslDA%3D%3D</OfferListingId>
<Price>
<Amount>2737</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$27.37</FormattedPrice>
</Price>
<AmountSaved>
<Amount>1262</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$12.62</FormattedPrice>
</AmountSaved>
<PercentageSaved>32</PercentageSaved>
<Availability>Usually ships in 1-2 business days</Availability>
<AvailabilityAttributes>
<AvailabilityType>now</AvailabilityType>
<MinimumHours>24</MinimumHours>
<MaximumHours>48</MaximumHours>
</AvailabilityAttributes>
<IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
</OfferListing>
</Offer>
</Offers>
</Item>
<Item>
<ASIN>0596516177</ASIN>
<DetailPageURL>http://www.amazon.com/Ruby-Programming-Language-David-Flanagan/dp/0596516177%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0596516177</DetailPageURL>
<ItemLinks>
<ItemLink>
<Description>Technical Details</Description>
<URL>http://www.amazon.com/Ruby-Programming-Language-David-Flanagan/dp/tech-data/0596516177%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596516177</URL>
</ItemLink>
<ItemLink>
<Description>Add To Baby Registry</Description>
<URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0596516177%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596516177</URL>
</ItemLink>
<ItemLink>
<Description>Add To Wedding Registry</Description>
<URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0596516177%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596516177</URL>
</ItemLink>
<ItemLink>
<Description>Add To Wishlist</Description>
<URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0596516177%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596516177</URL>
</ItemLink>
<ItemLink>
<Description>Tell A Friend</Description>
<URL>http://www.amazon.com/gp/pdp/taf/0596516177%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596516177</URL>
</ItemLink>
<ItemLink>
<Description>All Customer Reviews</Description>
<URL>http://www.amazon.com/review/product/0596516177%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596516177</URL>
</ItemLink>
<ItemLink>
<Description>All Offers</Description>
<URL>http://www.amazon.com/gp/offer-listing/0596516177%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596516177</URL>
</ItemLink>
</ItemLinks>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/51Hx79%2BtZGL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">57</Width>
</SmallImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/51Hx79%2BtZGL._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">122</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/51Hx79%2BtZGL.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">381</Width>
</LargeImage>
<ImageSets>
<ImageSet Category="primary">
<SwatchImage>
<URL>http://ecx.images-amazon.com/images/I/51Hx79%2BtZGL._SL30_.jpg</URL>
<Height Units="pixels">30</Height>
<Width Units="pixels">23</Width>
</SwatchImage>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/51Hx79%2BtZGL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">57</Width>
</SmallImage>
<ThumbnailImage>
<URL>http://ecx.images-amazon.com/images/I/51Hx79%2BtZGL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">57</Width>
</ThumbnailImage>
<TinyImage>
<URL>http://ecx.images-amazon.com/images/I/51Hx79%2BtZGL._SL110_.jpg</URL>
<Height Units="pixels">110</Height>
<Width Units="pixels">84</Width>
</TinyImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/51Hx79%2BtZGL._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">122</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/51Hx79%2BtZGL.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">381</Width>
</LargeImage>
</ImageSet>
<ImageSet Category="variant">
<SwatchImage>
<URL>http://ecx.images-amazon.com/images/I/51OasjloW3L._SL30_.jpg</URL>
<Height Units="pixels">30</Height>
<Width Units="pixels">23</Width>
</SwatchImage>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/51OasjloW3L._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">57</Width>
</SmallImage>
<ThumbnailImage>
<URL>http://ecx.images-amazon.com/images/I/51OasjloW3L._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">57</Width>
</ThumbnailImage>
<TinyImage>
<URL>http://ecx.images-amazon.com/images/I/51OasjloW3L._SL110_.jpg</URL>
<Height Units="pixels">110</Height>
<Width Units="pixels">84</Width>
</TinyImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/51OasjloW3L._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">122</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/51OasjloW3L.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">381</Width>
</LargeImage>
</ImageSet>
</ImageSets>
<ItemAttributes>
<Author>David Flanagan</Author>
<Author>Yukihiro Matsumoto</Author>
<Binding>Paperback</Binding>
<Brand>Brand: O'Reilly Media</Brand>
<EAN>9780596516178</EAN>
<EANList>
<EANListElement>9780596516178</EANListElement>
</EANList>
<Edition>1</Edition>
<Feature>ISBN13: 9780596516178</Feature>
<Feature>Notes: 100% Satisfaction Guarantee. Tracking provided on most orders. Buy with Confidence! Millions of books sold!</Feature>
<ISBN>0596516177</ISBN>
<ItemDimensions>
<Height Units="hundredths-inches">90</Height>
<Length Units="hundredths-inches">920</Length>
<Weight Units="hundredths-pounds">138</Weight>
<Width Units="hundredths-inches">710</Width>
</ItemDimensions>
<Label>O'Reilly Media</Label>
<Languages>
<Language>
<Name>English</Name>
<Type>Unknown</Type>
</Language>
<Language>
<Name>English</Name>
<Type>Original Language</Type>
</Language>
<Language>
<Name>English</Name>
<Type>Published</Type>
</Language>
</Languages>
<ListPrice>
<Amount>3999</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$39.99</FormattedPrice>
</ListPrice>
<Manufacturer>O'Reilly Media</Manufacturer>
<NumberOfItems>1</NumberOfItems>
<NumberOfPages>448</NumberOfPages>
<PackageDimensions>
<Height Units="hundredths-inches">120</Height>
<Length Units="hundredths-inches">910</Length>
<Weight Units="hundredths-pounds">120</Weight>
<Width Units="hundredths-inches">700</Width>
</PackageDimensions>
<PackageQuantity>1</PackageQuantity>
<ProductGroup>Book</ProductGroup>
<ProductTypeName>ABIS_BOOK</ProductTypeName>
<PublicationDate>2008-02-04</PublicationDate>
<Publisher>O'Reilly Media</Publisher>
<ReleaseDate>2008-02-01</ReleaseDate>
<Studio>O'Reilly Media</Studio>
<Title>The Ruby Programming Language</Title>
</ItemAttributes>
<OfferSummary>
<LowestNewPrice>
<Amount>2049</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$20.49</FormattedPrice>
</LowestNewPrice>
<LowestUsedPrice>
<Amount>891</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$8.91</FormattedPrice>
</LowestUsedPrice>
<TotalNew>47</TotalNew>
<TotalUsed>40</TotalUsed>
<TotalCollectible>0</TotalCollectible>
<TotalRefurbished>0</TotalRefurbished>
</OfferSummary>
<Offers>
<TotalOffers>2</TotalOffers>
<TotalOfferPages>1</TotalOfferPages>
<MoreOffersUrl>http://www.amazon.com/gp/offer-listing/0596516177%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0596516177</MoreOffersUrl>
<Offer>
<OfferAttributes>
<Condition>New</Condition>
</OfferAttributes>
<OfferListing>
<OfferListingId>EXPp2iPthlPrNyXeBomy7NZUwHwZg%2BGIMxND10k077DK1yokuVl59siNJWvPOxhF2GLagWj2znbL9mx0xDzkXSVLRU1IGfqMH7y1oMr9HnGb5pvlIGsHaA%3D%3D</OfferListingId>
<Price>
<Amount>2049</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$20.49</FormattedPrice>
</Price>
<AmountSaved>
<Amount>1950</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$19.50</FormattedPrice>
</AmountSaved>
<PercentageSaved>49</PercentageSaved>
<Availability>Usually ships in 1-2 business days</Availability>
<AvailabilityAttributes>
<AvailabilityType>now</AvailabilityType>
<MinimumHours>24</MinimumHours>
<MaximumHours>48</MaximumHours>
</AvailabilityAttributes>
<IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
</OfferListing>
</Offer>
<Offer>
<OfferAttributes>
<Condition>Used</Condition>
</OfferAttributes>
<OfferListing>
<OfferListingId>PfhxPfRXuakrvnQnmlhHIk9TPG5EkYkpb41Y33Y79Jzy2tqwgu0axb4l3N%2FFyZb8V%2Fil0MvAYN2Ug%2BHOLs5ywvnCp9n1ahaoc%2Fgh5z3ItCZ%2BDrfg6jukZUpcUnxf4ANg</OfferListingId>
<Price>
<Amount>891</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$8.91</FormattedPrice>
</Price>
<AmountSaved>
<Amount>3108</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$31.08</FormattedPrice>
</AmountSaved>
<PercentageSaved>78</PercentageSaved>
<Availability>Usually ships in 1-2 business days</Availability>
<AvailabilityAttributes>
<AvailabilityType>now</AvailabilityType>
<MinimumHours>24</MinimumHours>
<MaximumHours>48</MaximumHours>
</AvailabilityAttributes>
<IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
</OfferListing>
</Offer>
</Offers>
</Item>
<Item>
<ASIN>0470081201</ASIN>
<DetailPageURL>http://www.amazon.com/Ruby-Rails-For-Dummies-Burd/dp/0470081201%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D0470081201</DetailPageURL>
<ItemLinks>
<ItemLink>
<Description>Technical Details</Description>
<URL>http://www.amazon.com/Ruby-Rails-For-Dummies-Burd/dp/tech-data/0470081201%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0470081201</URL>
</ItemLink>
<ItemLink>
<Description>Add To Baby Registry</Description>
<URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D0470081201%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0470081201</URL>
</ItemLink>
<ItemLink>
<Description>Add To Wedding Registry</Description>
<URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D0470081201%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0470081201</URL>
</ItemLink>
<ItemLink>
<Description>Add To Wishlist</Description>
<URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D0470081201%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0470081201</URL>
</ItemLink>
<ItemLink>
<Description>Tell A Friend</Description>
<URL>http://www.amazon.com/gp/pdp/taf/0470081201%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0470081201</URL>
</ItemLink>
<ItemLink>
<Description>All Customer Reviews</Description>
<URL>http://www.amazon.com/review/product/0470081201%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0470081201</URL>
</ItemLink>
<ItemLink>
<Description>All Offers</Description>
<URL>http://www.amazon.com/gp/offer-listing/0470081201%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0470081201</URL>
</ItemLink>
</ItemLinks>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/51MFPYXRr1L._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">59</Width>
</SmallImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/51MFPYXRr1L._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">127</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/51MFPYXRr1L.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">396</Width>
</LargeImage>
<ImageSets>
<ImageSet Category="primary">
<SwatchImage>
<URL>http://ecx.images-amazon.com/images/I/51MFPYXRr1L._SL30_.jpg</URL>
<Height Units="pixels">30</Height>
<Width Units="pixels">24</Width>
</SwatchImage>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/51MFPYXRr1L._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">59</Width>
</SmallImage>
<ThumbnailImage>
<URL>http://ecx.images-amazon.com/images/I/51MFPYXRr1L._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">59</Width>
</ThumbnailImage>
<TinyImage>
<URL>http://ecx.images-amazon.com/images/I/51MFPYXRr1L._SL110_.jpg</URL>
<Height Units="pixels">110</Height>
<Width Units="pixels">87</Width>
</TinyImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/51MFPYXRr1L._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">127</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/51MFPYXRr1L.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">396</Width>
</LargeImage>
</ImageSet>
</ImageSets>
<ItemAttributes>
<Author>Burd</Author>
<Binding>Paperback</Binding>
<EAN>9780470081204</EAN>
<EANList>
<EANListElement>9780470081204</EANListElement>
</EANList>
<Edition>1</Edition>
<Feature>ISBN13: 9780470081204</Feature>
<Feature>Condition: New</Feature>
<Feature>Notes: BRAND NEW FROM PUBLISHER! 100% Satisfaction Guarantee. Tracking provided on most orders. Buy with Confidence! Millions of books sold!</Feature>
<ISBN>0470081201</ISBN>
<ItemDimensions>
<Height Units="hundredths-inches">79</Height>
<Length Units="hundredths-inches">906</Length>
<Weight Units="hundredths-pounds">141</Weight>
<Width Units="hundredths-inches">748</Width>
</ItemDimensions>
<Label>For Dummies</Label>
<Languages>
<Language>
<Name>English</Name>
<Type>Unknown</Type>
</Language>
<Language>
<Name>English</Name>
<Type>Original Language</Type>
</Language>
<Language>
<Name>English</Name>
<Type>Published</Type>
</Language>
</Languages>
<ListPrice>
<Amount>3499</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$34.99</FormattedPrice>
</ListPrice>
<Manufacturer>For Dummies</Manufacturer>
<NumberOfItems>1</NumberOfItems>
<NumberOfPages>330</NumberOfPages>
<PackageDimensions>
<Height Units="hundredths-inches">100</Height>
<Length Units="hundredths-inches">920</Length>
<Weight Units="hundredths-pounds">110</Weight>
<Width Units="hundredths-inches">740</Width>
</PackageDimensions>
<PackageQuantity>1</PackageQuantity>
<ProductGroup>Book</ProductGroup>
<ProductTypeName>ABIS_BOOK</ProductTypeName>
<PublicationDate>2007-01-10</PublicationDate>
<Publisher>For Dummies</Publisher>
<Studio>For Dummies</Studio>
<Title>Ruby on Rails For Dummies</Title>
</ItemAttributes>
<OfferSummary>
<LowestNewPrice>
<Amount>1360</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$13.60</FormattedPrice>
</LowestNewPrice>
<LowestUsedPrice>
<Amount>335</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$3.35</FormattedPrice>
</LowestUsedPrice>
<TotalNew>40</TotalNew>
<TotalUsed>32</TotalUsed>
<TotalCollectible>0</TotalCollectible>
<TotalRefurbished>0</TotalRefurbished>
</OfferSummary>
<Offers>
<TotalOffers>2</TotalOffers>
<TotalOfferPages>1</TotalOfferPages>
<MoreOffersUrl>http://www.amazon.com/gp/offer-listing/0470081201%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D0470081201</MoreOffersUrl>
<Offer>
<OfferAttributes>
<Condition>New</Condition>
</OfferAttributes>
<OfferListing>
<OfferListingId>fBequ7mFBj46ojaUxBx3tVkvzMIuwoemZ%2B1LXArl1HLP9%2F%2FxHkTkk7lzvFwEWhoEPdUVBfH1GcpHh0q6s0sJYw%2B8TFSIwzeXCZi%2Bx0w7bp48j8mNf%2BUzxA%3D%3D</OfferListingId>
<Price>
<Amount>1360</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$13.60</FormattedPrice>
</Price>
<AmountSaved>
<Amount>2139</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$21.39</FormattedPrice>
</AmountSaved>
<PercentageSaved>61</PercentageSaved>
<Availability>Usually ships in 1-2 business days</Availability>
<AvailabilityAttributes>
<AvailabilityType>now</AvailabilityType>
<MinimumHours>24</MinimumHours>
<MaximumHours>48</MaximumHours>
</AvailabilityAttributes>
<IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
</OfferListing>
</Offer>
<Offer>
<OfferAttributes>
<Condition>Used</Condition>
</OfferAttributes>
<OfferListing>
<OfferListingId>fBequ7mFBj46ojaUxBx3tVkvzMIuwoemI6m2S31wC26OHqmUMATnlyxjc6DYFpQ%2Bm9LJZXi4Xg96bHRI6BQILpzQk0sgSm3tg0sLXSy7jiDzVV8ctyV4OpWE2rV1YZG4</OfferListingId>
<Price>
<Amount>335</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$3.35</FormattedPrice>
</Price>
<AmountSaved>
<Amount>3164</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$31.64</FormattedPrice>
</AmountSaved>
<PercentageSaved>90</PercentageSaved>
<Availability>Usually ships in 1-2 business days</Availability>
<AvailabilityAttributes>
<AvailabilityType>now</AvailabilityType>
<MinimumHours>24</MinimumHours>
<MaximumHours>48</MaximumHours>
</AvailabilityAttributes>
<IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
</OfferListing>
</Offer>
</Offers>
</Item>
<Item>
<ASIN>1118871650</ASIN>
<DetailPageURL>http://www.amazon.com/JavaScript-jQuery-Interactive-Front-End-Development/dp/1118871650%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1118871650</DetailPageURL>
<ItemLinks>
<ItemLink>
<Description>Technical Details</Description>
<URL>http://www.amazon.com/JavaScript-jQuery-Interactive-Front-End-Development/dp/tech-data/1118871650%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1118871650</URL>
</ItemLink>
<ItemLink>
<Description>Add To Baby Registry</Description>
<URL>http://www.amazon.com/gp/registry/baby/add-item.html%3Fasin.0%3D1118871650%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1118871650</URL>
</ItemLink>
<ItemLink>
<Description>Add To Wedding Registry</Description>
<URL>http://www.amazon.com/gp/registry/wedding/add-item.html%3Fasin.0%3D1118871650%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1118871650</URL>
</ItemLink>
<ItemLink>
<Description>Add To Wishlist</Description>
<URL>http://www.amazon.com/gp/registry/wishlist/add-item.html%3Fasin.0%3D1118871650%26SubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1118871650</URL>
</ItemLink>
<ItemLink>
<Description>Tell A Friend</Description>
<URL>http://www.amazon.com/gp/pdp/taf/1118871650%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1118871650</URL>
</ItemLink>
<ItemLink>
<Description>All Customer Reviews</Description>
<URL>http://www.amazon.com/review/product/1118871650%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1118871650</URL>
</ItemLink>
<ItemLink>
<Description>All Offers</Description>
<URL>http://www.amazon.com/gp/offer-listing/1118871650%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1118871650</URL>
</ItemLink>
</ItemLinks>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/419RLKgwXVL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">60</Width>
</SmallImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/419RLKgwXVL._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">129</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/419RLKgwXVL.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">402</Width>
</LargeImage>
<ImageSets>
<ImageSet Category="primary">
<SwatchImage>
<URL>http://ecx.images-amazon.com/images/I/419RLKgwXVL._SL30_.jpg</URL>
<Height Units="pixels">30</Height>
<Width Units="pixels">24</Width>
</SwatchImage>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/419RLKgwXVL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">60</Width>
</SmallImage>
<ThumbnailImage>
<URL>http://ecx.images-amazon.com/images/I/419RLKgwXVL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">60</Width>
</ThumbnailImage>
<TinyImage>
<URL>http://ecx.images-amazon.com/images/I/419RLKgwXVL._SL110_.jpg</URL>
<Height Units="pixels">110</Height>
<Width Units="pixels">88</Width>
</TinyImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/419RLKgwXVL._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">129</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/419RLKgwXVL.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">402</Width>
</LargeImage>
</ImageSet>
<ImageSet Category="variant">
<SwatchImage>
<URL>http://ecx.images-amazon.com/images/I/416jxtJlUgL._SL30_.jpg</URL>
<Height Units="pixels">30</Height>
<Width Units="pixels">24</Width>
</SwatchImage>
<SmallImage>
<URL>http://ecx.images-amazon.com/images/I/416jxtJlUgL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">60</Width>
</SmallImage>
<ThumbnailImage>
<URL>http://ecx.images-amazon.com/images/I/416jxtJlUgL._SL75_.jpg</URL>
<Height Units="pixels">75</Height>
<Width Units="pixels">60</Width>
</ThumbnailImage>
<TinyImage>
<URL>http://ecx.images-amazon.com/images/I/416jxtJlUgL._SL110_.jpg</URL>
<Height Units="pixels">110</Height>
<Width Units="pixels">88</Width>
</TinyImage>
<MediumImage>
<URL>http://ecx.images-amazon.com/images/I/416jxtJlUgL._SL160_.jpg</URL>
<Height Units="pixels">160</Height>
<Width Units="pixels">129</Width>
</MediumImage>
<LargeImage>
<URL>http://ecx.images-amazon.com/images/I/416jxtJlUgL.jpg</URL>
<Height Units="pixels">500</Height>
<Width Units="pixels">402</Width>
</LargeImage>
</ImageSet>
</ImageSets>
<ItemAttributes>
<Author>Jon Duckett</Author>
<Binding>Hardcover</Binding>
<EAN>9781118871652</EAN>
<EANList>
<EANListElement>9781118871652</EANListElement>
</EANList>
<Edition>1</Edition>
<ISBN>1118871650</ISBN>
<IsEligibleForTradeIn>1</IsEligibleForTradeIn>
<ItemDimensions>
<Height Units="hundredths-inches">0</Height>
<Length Units="hundredths-inches">0</Length>
<Weight Units="hundredths-pounds">0</Weight>
<Width Units="hundredths-inches">0</Width>
</ItemDimensions>
<Label>Wiley</Label>
<Languages>
<Language>
<Name>English</Name>
<Type>Unknown</Type>
</Language>
<Language>
<Name>English</Name>
<Type>Original Language</Type>
</Language>
<Language>
<Name>English</Name>
<Type>Published</Type>
</Language>
</Languages>
<ListPrice>
<Amount>5200</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$52.00</FormattedPrice>
</ListPrice>
<Manufacturer>Wiley</Manufacturer>
<NumberOfItems>1</NumberOfItems>
<NumberOfPages>640</NumberOfPages>
<PackageDimensions>
<Height Units="hundredths-inches">160</Height>
<Length Units="hundredths-inches">940</Length>
<Weight Units="hundredths-pounds">375</Weight>
<Width Units="hundredths-inches">770</Width>
</PackageDimensions>
<ProductGroup>Book</ProductGroup>
<ProductTypeName>ABIS_BOOK</ProductTypeName>
<PublicationDate>2014-07-21</PublicationDate>
<Publisher>Wiley</Publisher>
<Studio>Wiley</Studio>
<Title>JavaScript & jQuery: Interactive Front-End Web Development Hardcover</Title>
<TradeInValue>
<Amount>1372</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$13.72</FormattedPrice>
</TradeInValue>
</ItemAttributes>
<OfferSummary>
<LowestNewPrice>
<Amount>2743</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$27.43</FormattedPrice>
</LowestNewPrice>
<LowestUsedPrice>
<Amount>2765</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$27.65</FormattedPrice>
</LowestUsedPrice>
<TotalNew>16</TotalNew>
<TotalUsed>6</TotalUsed>
<TotalCollectible>0</TotalCollectible>
<TotalRefurbished>0</TotalRefurbished>
</OfferSummary>
<Offers>
<TotalOffers>2</TotalOffers>
<TotalOfferPages>1</TotalOfferPages>
<MoreOffersUrl>http://www.amazon.com/gp/offer-listing/1118871650%3FSubscriptionId%3DAKIAJVXKRZFPHQNNY5LQ%26tag%3Drunnable-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D386001%26creativeASIN%3D1118871650</MoreOffersUrl>
<Offer>
<OfferAttributes>
<Condition>New</Condition>
</OfferAttributes>
<OfferListing>
<OfferListingId>zHt6HXWXOYy%2BtX835BRbrJEbk21POwsTQiJCTcEX3L%2Bf3NOvFIyGLC34tJjq%2Fqbn%2B1TNUvBvScrgDC%2FjXv9TltWC%2FSOYLiOiOT%2BZs4BUj42J1IeAkwXu%2BhXLtqdZrgLt</OfferListingId>
<Price>
<Amount>2743</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$27.43</FormattedPrice>
</Price>
<AmountSaved>
<Amount>2457</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$24.57</FormattedPrice>
</AmountSaved>
<PercentageSaved>47</PercentageSaved>
<Availability>Usually ships in 1-2 business days</Availability>
<AvailabilityAttributes>
<AvailabilityType>now</AvailabilityType>
<MinimumHours>24</MinimumHours>
<MaximumHours>48</MaximumHours>
</AvailabilityAttributes>
<IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
</OfferListing>
</Offer>
<Offer>
<OfferAttributes>
<Condition>Used</Condition>
</OfferAttributes>
<OfferListing>
<OfferListingId>zHt6HXWXOYy%2BtX835BRbrJEbk21POwsTQiJCTcEX3L%2Bf3NOvFIyGLC34tJjq%2Fqbn%2B1TNUvBvScrgDC%2FjXv9TluKdKyGON7OHIuUq0oYsf0UklX5xJUzVLPqwbhpb0Loo</OfferListingId>
<Price>
<Amount>2765</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$27.65</FormattedPrice>
</Price>
<AmountSaved>
<Amount>2435</Amount>
<CurrencyCode>USD</CurrencyCode>
<FormattedPrice>$24.35</FormattedPrice>
</AmountSaved>
<PercentageSaved>47</PercentageSaved>
<Availability>Usually ships in 1-2 business days</Availability>
<AvailabilityAttributes>
<AvailabilityType>now</AvailabilityType>
<MinimumHours>24</MinimumHours>
<MaximumHours>48</MaximumHours>
</AvailabilityAttributes>
<IsEligibleForSuperSaverShipping>0</IsEligibleForSuperSaverShipping>
</OfferListing>
</Offer>
</Offers>
</Item>
</Items>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment