Disable All Advertising
Image
EAN-139780763664558   EAN-13 barcode 9780763664558
Product NameSee You At Harry's
CategoryBook / Magazine / Publication
Amazon.comA Buy on Amazon ~ 0763664553
Price New2.03 US Dollars    (curriencies)
Price Used0.66 US Dollars    (curriencies)
Width0.8 inches    (convert)
Height7.8 inches    (convert)
Length5.2 inches    (convert)
Weight9.12 ounces    (convert)
AuthorJo Knowles
Page Count320
BindingPaperback
Published08/06/2013
FeaturesUsed Book in Good Condition
Long DescriptionStarting middle school brings all the usual challenges — until the unthinkable happens, and Fern and her family must find a way to heal. Twelve-year-old Fern feels invisible. It seems as though everyone in her family has better things to do than pay attention to her: Mom (when she’s not meditating) helps Dad run the family restaurant; Sarah is taking a gap year after high school; and Holden pretends that Mom and Dad and everyone else doesn’t know he’s gay, even as he fends off bullies at school. Then there’s Charlie: three years old, a "surprise" baby, the center of everyone’s world. He’s devoted to Fern, but he’s annoying, too, always getting his way, always dirty, always commanding attention. If it wasn’t for Ran, Fern’s calm and positive best friend, there’d be nowhere to turn. Ran’s mantra, "All will be well," is soothing in a way that nothing else seems to be. And when Ran says it, Fern can almost believe it’s true. But then tragedy strikes- and Fern feels not only more alone than ever, but also responsible for the accident that has wrenched her family apart. All will not be well. Or at least all will never be the same.
Similar Items9781606843925: The False Princess
9781416978053: Camo Girl
9780805092073: Pearl: A Novel
9780763660659: A Monster Calls: Inspired By An Idea From Siobhan Dowd
9780763652968: Jumping Off Swings
9780763644857: Lessons From A Dead Girl
9780761381143: Lily Renee, Escape Artist: From Holocaust Survivor To Comic Book Pioneer
9780545636575: Guitar Notes
9780375851599: Love, Aubrey
9780374371937: The Pull Of Gravity
9780142426524: One For The Murphys
9780002258296: Pearl: A Novel
Created09-27-2013 11:20:47pm
Modified05-01-2020 1:08:07am
MD5ac5291d6b9ca13b646dbf90269efbb76
SHA256066464d1d836547deca934cbeee5fca93a955c1bdca478a487148e6c6831dcaa
Search Googleby EAN or by Title
Query Time0.0340290

An article of interest

Making use of the tools we offer

Data feed access via Java

This is a basic implementation of a service that provides retrieval access to the EANData.com UPC web site. Its was coded to verify basic  proof-of-concept for development of another application and was not intended to provide be anything more than basic functionality in the retrieval  of UPC data from the EANData.com web site.

There are several places where simple code was left in place rather than using more advanced Java features/methods to allow for easier  understanding of junior developers. Not much time spent refactoring or cleaning up the code. It is provided as a starting point only.

It contains a Factory service that returns a service object configured using the UcpService.properties (see below) file found in the class path of  the executed code. The UpcQueryService can respond with an implementation of the UpcResponse and supporting interfaces or with an InputStream  allowing direct access to the response from the from the EANData.com web site.

JSR 353 is the Java API for JSON is currently under development (http://java.net/projects/json-processing-spec & http://java.net/projects/jsonp).  The several Java JSON implementations seemed to be more than I was wanting/needing so I wrote a basic parser to provide JSON parsing capability  needed. Its not perfect but is a good basic start.

Download the example source code

The UpcService.properties must be configured.

Url (Required)
provides the address used to query UPC data. The additional parameters are added to retrieve the requested information.

ApiKeyCode (Required)
Provided from EANData.com when your account is setup.

Mode (Required)
The manner in which the data will be retrieved from the EANData.com web site.
 
AutoRetrieveGraphics (Optional)
Boolean to indicate whether the graphics, when indicated by a Url, are to be automatically retrieved at the same time with the UPC data. Default is false. A factory method allows for the this property to be overridden at the time the UpcQueryService is created.