Image | ![]() |
EAN-13 | 9780747597216 ![]() |
Product Name | H.I.V.E.: Higher Institute Of Villainous Education (Hive) |
Language | English |
Category | Book / Magazine / Publication |
Short Description | Paperback |
Amazon.com | ![]() |
SKU | MON0001571733 |
Price New | 9.73 US Dollars (curriencies) |
Price Used | 0.01 US Dollars (curriencies) |
Width | 0.79 inches (convert) |
Height | 7.8 inches (convert) |
Length | 5.08 inches (convert) |
Weight | 7.2 ounces (convert) |
Author | Mark Walden |
Binding | Paperback |
Published | 09/10/2016 |
Features | Used Book in Good Condition |
Long Description | HIGHER INSTITUTE OF VILLAINOUS EDUCATION Otto Malpense may only be thirteen years old, but so far he has managed to run the orphanage where he lives, and he has come up with a plan clever enough to trick the most powerful man in the country. He is the perfect candidate to become the world's next supervillain. That is why he ends up at H.I.V.E., handpicked to become a member of the incoming class. The students have been kidnapped and brought to a secluded island inside a seemingly active volcano, where the school has resided for decades. All the kids are elite; they are the most athletic, the most technically advanced, and the smartest in the country. Inside the cavernous marble rooms, floodlit hangars, and steel doors, the students are enrolled in Villainy Studies and Stealth and Evasion 101. But what Otto soon comes to realize is that this is a six-year program, and leaving is not an option. With the help of his new friends: an athletic martial-arts expert; a world-famous, beautiful diamond thief; and a spunky computer genius -- the only other people who seem to want to leave -- can Otto achieve what has never been done before and break out of H.I.V.E.? |
Similar Items | 9781442413733: Zero Hour (H.I.V.E.) 9780573699207: Zero Hour (H.I.V.E.) 9781442413696: Rogue (H.I.V.E.) 9780759677746: Rogue (H.I.V.E.) 9780738845944: Rogue (H.I.V.E.) 9781416913610: The Robot Olympics (Tom Swift, Young Inventor) 9781442494688: Aftershock (H.I.V.E.) 9781442413689: Dreadnought (H.I.V.E.) 9781442413672: Escape Velocity (H.I.V.E.) 9781416935742: The Overlord Protocol (H.I.V.E.) 9780747583950: The Overlord Protocol (H.I.V.E.) 9780553487954: Eager |
Created | 11-16-2012 12:06:02pm |
Modified | 05-01-2020 12:29:28am |
MD5 | 4bc0516af81e8edc26c94dfe71985209 |
SHA256 | 2a7e8a16079e5a9a093d62b61b49d4059a38cb3d13af0c4feabd334275ed1a85 |
Search Google | by EAN or by Title |
Query Time | 0.0316150 |
Article of interest
With version 3.2 comes a new way to handle product images. This should give you more control over the images you display.
Prior to version 3.2, you simply had to check for the existance of the product>image property. If it existed and was not blank, you could safely display the image.
Starting with version 3.2, you may want to check one more field before you display the product image. Many API users wanted access to the pending images. The only reasonable way to do this was to add a new property named product>hasImage which can be one of four values.
- Unknown (should never actually appear in the API)
- Yes (a production image exists)
- No (there is no image)
- Pending (a pending image exists)
If you are displaying the product images to your users and you DO NOT want to display pending images that have not been checked, you should only display the image if product>hasImage=Yes. If you want to show production and pending images, you can simply check the product>image property if you like. We suggest using product>hasImage as your main check and only display the image if it meets your needs. Here are samples of the JSON structure.
The property product>hasImage will always be regurned even if you specified a list of properties in the "get" string that does not include the image property. The main reason for this is that it is possible to calculate the image path on your side thereby saving the bandwidth of returning the image path.
If you want to calculate the path to the image on your end instead of requesting it from us, you can do this in two ways.
- If product>hasImage=Pending then simply use the path https://eandata.com/image/pending/{13_digit_EAN}.jpg
- If product>hasImage=Yes then it gets a little more tricky. We split the images into subfolders because there are so many of them. To calculate the path start with the 13 digit EAN and split it up like this: https://eandata.com/image/product/{1st_3_digits}/{2nd_3_digits}/{3rd_3_digits}/{13_digit_EAN}.jpg
This should make interacting with product and pending images much easier for you. Look at the example JSON shown above for working exmples of image paths.