Because of Winn-Dixie

Because of Winn-Dixie is a children's novel written by Kate DiCamillo, which was published in 2000, and was the winner of a Newbery Honor distinction the following year.[1] In 2000, the book won the Josette Frank Award,[2] and in 2003 won the Mark Twain Award.[3] It was adapted as a 2005 family film directed by Wayne Wang, produced by Walden Media and Twentieth Century Fox, and starring AnnaSophia Robb as Opal Buloni.[4][5]

Because of Winn-Dixie
First edition
AuthorKate DiCamillo
CountryUnited States
LanguageEnglish
GenreChildren's novel
PublisherCandlewick Press (US)
Walker Books (UK)
Publication date
March 2000
Media typePrint (hardback & paperback)
Pages182 pp.
ISBN0-7636-0776-2
OCLC41601218
Followed byThe Tiger Rising 

In 2007 the U.S. National Education Association named Winn-Dixie one of its "Teachers' Top 100 Books for Children", based on an online poll.[6] In 2012 it was ranked number 20 among all-time children's novels in a survey published by School Library Journal – the first of three books by DiCamillo in the Top 100.[7]

Plot Summary

A 10-year-old girl named India Opal Bulloni has just moved to a trailer park in the small town of Naomi, Florida, with her father, who is known as The Preacher because he preaches at the local church. While in the supermarket, Opal sees a scruffy dog wrecking the store and decides to take him home, naming him Winn-Dixie after the supermarket chain. Miss Franny Block, a librarian, shares great stories about her past, including one about her great-grandfather, whose family members died while he was fighting for the South in the Civil War. He invented Littmus Lozenge candies, which tasted like root beer and strawberry but included a secret ingredient—melancholy. Anyone who tasted the candies tasted sweetness mixed with sadness. In Because of Winn-Dixie, these candies symbolize that even though life sometimes deals people a bit of sadness, there is always much to appreciate. Opal learns that her sour-faced neighbor, Amanda Wilkinson, lost her brother Carson because he drowned. She vows to be nicer to her from then on.

Opal finds a dog collar that she wants to buy for Winn-Dixie, but she has no money and decides to work for the pet store to earn it. Otis, a worker at Gertrude's Pets, is unwilling to hire Opal as a cleaning girl, but she comes to work. When Opal and Winn-Dixie step into the store, the animals panic when they see the big dog. Otis plays his guitar to calm them. Opal learns that Otis once went to jail for battering a police officer who told him that he could not play his guitar on the street because he was disturbing others and tried to confiscate it.

While Opal is riding her bike and Winn-Dixie runs ahead, they meet a woman named Gloria Dump. She and Opal become good friends. Opal and Gloria, a recovering alcoholic, decide to host a small party, inspired by the one in Gone With the Wind, inviting everyone they know. In the process, Opal becomes a friend to her former enemies, the brothers Stevie and Dunlap Dewberry. She also invites Amanda Wilkinson and Sweetie Pie Thomas, a girl who has no pet, and so has fallen in love with Winn-Dixie. Otis and Miss Franny Block are also invited.

Opal and Gloria set up everything outdoors, but it starts to rain, so they bring the party indoors. Opal can't find Winn-Dixie anywhere, even after searching the town. Ten minutes later she returns to Gloria's home to discover that Winn-Dixie has been there all the time, hiding because he is scared of storms. The book ends with Otis playing his guitar and everyone singing one of The Preacher's songs.

Translations

Translated to Persian, published in 2005 by Ghatreh.[8]

gollark: Here is a similar thing for JSON. Note that it delegates out to an external JSON library for string escaping.```luafunction safe_json_serialize(x, prev) local t = type(x) if t == "number" then if x ~= x or x <= -math.huge or x >= math.huge then return tostring(x) end return string.format("%.14g", x) elseif t == "string" then return json.encode(x) elseif t == "table" then prev = prev or {} local as_array = true local max = 0 for k in pairs(x) do if type(k) ~= "number" then as_array = false break end if k > max then max = k end end if as_array then for i = 1, max do if x[i] == nil then as_array = false break end end end if as_array then local res = {} for i, v in ipairs(x) do table.insert(res, safe_json_serialize(v)) end return "["..table.concat(res, ",").."]" else local res = {} for k, v in pairs(x) do table.insert(res, json.encode(tostring(k)) .. ":" .. safe_json_serialize(v)) end return "{"..table.concat(res, ",").."}" end elseif t == "boolean" then return tostring(x) elseif x == nil then return "null" else return json.encode(tostring(x)) endend```
gollark: My tape shuffler thing from a while ago got changed round a bit. Apparently there's some demand for it, so I've improved the metadata format and written some documentation for it, and made the encoder work better by using file metadata instead of filenames and running tasks in parallel so it's much faster. The slightly updated code and docs are here: https://pastebin.com/SPyr8jrh. There are also people working on alternative playback/encoding software for the format for some reason.
gollark: Are you less utilitarian with your names than <@125217743170568192> but don't really want to name your cool shiny robot with the sort of names used by *foolish organic lifeforms*? Care somewhat about storage space and have HTTP enabled to download name lists? Try OC Robot Name Thing! It uses the OpenComputers robot name list for your... CC computer? https://pastebin.com/PgqwZkn5
gollark: I wanted something to play varying music in my base, so I made this.https://pastebin.com/SPyr8jrh is the CC bit, which automatically loads random tapes from a connected chest into the connected tape drive and plays a random track. The "random track" bit works by using an 8KiB block of metadata at the start of the tape.Because I did not want to muck around with handling files bigger than CC could handle within CC, "tape images" are generated with this: https://pastebin.com/kX8k7xYZ. It requires `ffmpeg` to be available and `LionRay.jar` in the working directory, and takes one command line argument, the directory to load to tape. It expects a directory of tracks in any ffmpeg-compatible audio format with the filename `[artist] - [track].[filetype extension]` (this is editable if you particularly care), and outputs one file in the working directory, `tape.bin`. Please make sure this actually fits on your tape.I also wrote this really simple program to write a file from the internet™️ to tape: https://pastebin.com/LW9RFpmY. You can use this to write a tape image to tape.EDIT with today's updates: the internet→tape writer now actually checks if the tape is big enough, and the shuffling algorithm now actually takes into account tapes with different numbers of tracks properly, as well as reducing the frequency of a track after it's already been played recently.
gollark: https://pastebin.com/pDNfjk30Tired of communicating fast? Want to talk over a pair of redstone lines at 10 baud? Then this is definitely not perfect, but does work for that!Use `set rx_side [whatever]` and `set tx_side [whatever]` on each computer to set which side of the computer they should receive/transmit on.

References

  1. Newbery Medal winners
  2. Josette Frank Award winners Archived 2009-12-02 at the Wayback Machine
  3. Mark Twain Award winners
  4. Because of Winn-Dixie (2005) Allmovie entry
  5. Because of Winn-Dixie - IMDb Retrieved 2015-08-22
  6. National Education Association (2007). "Teachers' Top 100 Books for Children". Retrieved August 19, 2012.
  7. Bird, Elizabeth (July 7, 2012). "Top 100 Chapter Book Poll Results". A Fuse #8 Production. Blog. School Library Journal (blog.schoollibraryjournal.com). Archived from the original on July 13, 2012. Retrieved August 19, 2012.
  8. "به‌خاطر وین دیکسی". کتابک Ketabak (in Persian).
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.