Toy Story

VHS : Toy Story

Toy Story

starring: Tom Hanks, Tim Allen, Don Rickles, Jim Varney, Wallace Shawn
directed by: John Lasseter



 : Toy Story
See Larger Image







Audience Rating: G (General Audience)
Binding: VHS Tape
EAN: 9786304089767
Format: Animated, Closed-captioned, Color, Dolby, NTSC
ISBN: 6304089767
Label: Walt Disney Home Video
Manufacturer: Walt Disney Home Video
Number Of Items: 1
Publisher: Walt Disney Home Video
Release Date: 1996-10-30
Studio: Walt Disney Home Video
Theatrical Release Date: 1995-11-22



Editorial Review:

Amazon.com Essential DVDThere is greatness in film that can be discussed, dissected, and talked about late into the night. Then there is genius that is right in front of our faces--we smile at the spell it puts us into and are refreshed, and nary a word needs to be spoken. This kind of entertainment is what they used to call 'movie magic,' and there is loads of it in this irresistible computer animation feature. Just a picture of these bright toys reawaken the kid in us. Filmmaker John Lasseter thinks of himself as a storyteller first and an animator second, much like another film innovator, Walt Disney.

The 10th anniversary edition of the landmark film repackages most of the extras found in the original Ultimate Toy Box set plus a few more. Two keen retrospectives are new, one with an assortment of talents including Roy Disney and Peter Jackson chiming in on the film's impact. The other is a roundtable with Lasseter and three of the creators simply talking about the experiences without--thankfully--any cutaways to noisy film clips. There's a load of other extras since the Ultimate Toy Box was one of the first and best DVD sets. Missing (besides the second film, which will be released separately) is the effects- and music-only tracks. Added is a whopping DTS soundtrack along with a remixed Dolby 5.1 track. The DVD has a higher transfer bit rate for a better picture, but only high-end enthusiasts will notice it. Since the film is a digital-to-digital transfer, both versions are eye-popping. A must-have set unless you have the Ultimate Toy Box.

Lasseter's story is universal and magical: what do toys do when they're not played with? Cowboy Woody (voiced by Tom Hanks), Andy's favorite bedroom toy, tries to calm the other toys (some original, some classic) during a wrenching time of year--the birthday party, when newer toys may replace them. Sure enough, Space Ranger Buzz Lightyear (Tim Allen) is the new toy that takes over the throne. Buzz has a crucial flaw, though--he believes he's the real Buzz Lightyear, not a toy. Lasseter further scores with perfect voice casting, including Don Rickles as Mr. Potato Head and Wallace Shawn as a meek dinosaur. The director-animator won a special Oscar for 'the development and inspired application of techniques that have made possible the first feature-length computer-animated film.' In other words, the movie is great. --Doug Thomas

The Pixar Feature Films









  • Toy Story, 1995
  • A Bug's Life, 1998
  • Toy Story 2, 1999
  • Monsters, Inc., 2001
  • Finding Nemo, 2003
  • The Incredibles, 2004




















Related Items:
     see more

Related Items:



banned interdit verboden prohibido vietato proibido
  banned    interdit    verboden   vietato     prohibido    verboden  banned      vietato      interdit proibido   vietato       interdit      verboden      banned  prohibido   

Your IP has been blocked. Please perform the action below to regain access.

Code:  security image
Please enter the Code: 



Customer Reviews
Average Rating:  out of 5 stars

Rating: 5 out of 5 stars - toy story review
This is a great movie!!! My daughter absolutely loves it...we bought this one to donate to our local library because they are trying to convert their vhs collection to dvd's, but it's expensive. We thought we could donate a movie for them so my daughter chose which movie she wanted to donate.



Rating: 5 out of 5 stars - Toy Story
A classic Pixar film that stands the test of time. I enjoyed it about as much as my son.



Rating: 1 out of 5 stars - All time greatest kids story - also for adults
This has to be the greatest kids all-time story, especially for young Boys. Which small boy has never imagined that his toys are real and come alive? Technically this is the film that revolutionized animation. It also brought animation from the "cutie-cutie", good always beats evil of Disney, introducing a more up-to-date cynicism, slightly dark & gray material, such as the kid Sid and even our hero Woody - though the latter is the main subject matter in that he is attempting to redeem himself. The characters are rich, three dimensional(Most are - except for most humans which is quite ironic and charming) Future generations will love these characters and they will endure forever. Toy Story 2 unashamedly attempts to bring the girls into the action with the lively girl-cowboy character Jessie, and while it is also very successful it just never reaches the freshness found in the original TOY STORY.



Rating: 5 out of 5 stars - Classic Disney Movie
This movie can be grouped together and receive the same respect as older Disney films. This was the first Computer Animated film Disney and it's still my favorite one.



Rating: 1 out of 5 stars - Not satisfied with seller at all
The seller did not pay attention to email requests or has not answered emails to this day and it has been 1 month since I ordered. I requested the order to be shipped to my nephew so I wouldn't pay shipping twice which was the whole purpose of purchasing for the price I did. DIDN'T HAPPEN. Never heard back from seller. Will not purchase on Amazaon again because they give no back up either.



read more customer reviews on Toy Story


 



  Plasja TV
Tools and Hardware  





Ford's next-gen hybrid is aimed squarely at the Toyota Camry Hybrid, and it's one car that just might help Ford escape the implosion of Detroit.
Add to Facebook Add to Reddit Add to digg Add to Google


Make winter a wonderland with these high-end snow toys.

via Salon

It's almost cruel of us to post about the Schöpfer Oculus, a 250-foot luxury yacht inspired by an oceanic fish.

With room for 12 people to comfortably cruise at 25 knots, the rear of the Oculus remains open like a gigantic jaw that's eating the passengers alive in luxury. And what appears to be a cleverly-placed window fills in an apt spot for an eye.

Inside, the ceilings reach an impressive 12-feet (hey, those are higher than where I live every day!) while the entire boat is still described as a "low rider," featuring retractable panels that protect the decks from swells. Wait, why are we even bothering to explain all of this to you? You can't afford it. [Schopfer Yachts via DVICE]


via Gizmodo

Joe Walker

If you want to protect yourself from a XSS attack, what characters should you escape? I've seen 2 recommendations:

  • ', ", <, > and & should be converted to ', ", <, >, &
  • Convert anything that isn't ASCII alphanumeric to &#xx;

I've seen the second recommended more and more recently. Which is best?

The argument for escaping all non-ASCII alphanumeric

It's a known security tenet that whitelisting is safer than blacklisting. If you're just escaping ', ", <, > and & then you're blacklisting, which isn't as safe as whitelisting.

There are some practical examples of how this can play out -

(I'm using $ to represent the injection point. This would probably crop up in a template something like this: )

If all the escape() function does is to escape ', ", <, > and &, then what if the user entered a data: URL? You could end up with the following output:

test

Which in case you can't do base64 in your head is equivalent to this:

test

Clearly this is bad - we've let a user XSS us even though we are filtering for XSS. There are many more examples that are similar.

The argument for escaping only ', ", <, > and &

The bad news is that more filtering does not help. If we enhance our escape function to encode every non-alpha, then we would get the following output:

test

Here's the bad news - the above works. (Look: test (if this script gets into your RSS aggregator, then you need a new RSS aggregator.))

Adding the extra filtering has had the following effect:

  • It's hidden the hole, so now we're less likely to notice it, and fall in.
  • It's wasted bandwidth

So how do we keep ourselves clear of XSS attacks?

The solution is to understand about insertion points.

The following insertion points, are ones that I believe are safe if ', ", <, > and & are escaped:

  • $
    (Where div could be p, h*, li, etc - things expecting textual content)
  • (i.e. somewhere else that expects textual content)
  • (needs different escaping rules)

I think it's likely that virtually any other insertion point is likely to be dangerous. Some examples:

  • (no amount of escaping will protect you, prepare to die)
  • $> (there are countless events we could latch into, including several non-standard, hard to find ones)
  • ... (JavaScript pops up in CSS in many places like width:expression(script_here))
  • ... (The example we used above)
  • (For similar reasons)
  • etc.

The key it to understand the environment into which we are allowing injection. The trend for separating content, style and action into separate files is good because it more clearly defines the environment, but that doesn't stop HTML from being able to embed CSS.

I once saw some code that was JSP containing Java containing HTML containing CSS and JavaScript containing SQL all on one line. An environment so confused that it contained it's very own security hole built right in.

Filtering in DWR

DWR version 3 is nearly cooked, and our escaping functions use the simpler escaping system of just escaping ', ", <, > and &. If anyone knows of any attack that a broader filtering system would protect people from, then please comment.

If you want to protect yourself from a XSS attack, what characters should you escape? I've seen 2 recommendations:

  • ', ", <, > and & should be converted to ', ", <, >, &
  • Convert anything that isn't ASCII alphanumeric to &#xx;

I've seen the second recommended more and more recently. Which is best?

The argument for escaping all non-ASCII alphanumeric

It's a known security tenet that whitelisting is safer than blacklisting. If you're just escaping ', ", <, > and & then you're blacklisting, which isn't as safe as whitelisting.

There are some practical examples of how this can play out -

(I'm using $ to represent the injection point. This would probably crop up in a template something like this: )

If all the escape() function does is to escape ', ", <, > and &, then what if the user entered a data: URL? You could end up with the following output:

test

Which in case you can't do base64 in your head is equivalent to this:

test

Clearly this is bad - we've let a user XSS us even though we are filtering for XSS. There are many more examples that are similar.

The argument for escaping only ', ", <, > and &

The bad news is that more filtering does not help. If we enhance our escape function to encode every non-alpha, then we would get the following output:

test

Here's the bad news - the above works. (Look: test (if this script gets into your RSS aggregator, then you need a new RSS aggregator.))

Adding the extra filtering has had the following effect:

  • It's hidden the hole, so now we're less likely to notice it, and fall in.
  • It's wasted bandwidth

So how do we keep ourselves clear of XSS attacks?

The solution is to understand about insertion points.

The following insertion points, are ones that I believe are safe if ', ", <, > and & are escaped:

  • $
    (Where div could be p, h*, li, etc - things expecting textual content)
  • (i.e. somewhere else that expects textual content)
  • (needs different escaping rules)

I think it's likely that virtually any other insertion point is likely to be dangerous. Some examples:

  • (no amount of escaping will protect you, prepare to die)
  • $> (there are countless events we could latch into, including several non-standard, hard to find ones)
  • ... (JavaScript pops up in CSS in many places like width:expression(script_here))
  • ... (The example we used above)
  • (For similar reasons)
  • etc.

The key it to understand the environment into which we are allowing injection. The trend for separating content, style and action into separate files is good because it more clearly defines the environment, but that doesn't stop HTML from being able to embed CSS.

I once saw some code that was JSP containing Java containing HTML containing CSS and JavaScript containing SQL all on one line. An environment so confused that it contained it's very own security hole built right in.

Filtering in DWR

DWR version 3 is nearly cooked, and our escaping functions use the simpler escaping system of just escaping ', ", <, > and &. If anyone knows of any attack that a broader filtering system would protect people from, then please comment.






Toy Story

Shopping