I am embarrassed for Scarlett Johansson that she is NOT in this movie.
Favorite films
Recent activity
AllRecent reviews
More-
-
Space Jam 1996
I'm inclined to go another full star bump: those credits hit at REFRESHING 79 mins after the best part of the movie (Bill Murray's weird face after he says "Let's Go Bulls") .
thumbs.gfycat.com/RecklessSillyLadybug-mobile.mp4
When I worked at the movie theatre in the formative summer of '96 I would always try to make it into the theatre early to see that part before I had to clean before the next showing.
Popular reviews
More-
-
Money Monster 2016
I'm sure one day a Quant will point out the Glitch in my Algo.
public float DetermineStarRating()
{
float starRating = 0f;
if (_runningTime < 100f)
{
starRating += 1f;
}
if (_prodBudget >= 25000000f)
{
starRating += 1f;
}
if (_gimmick == eGimmick.RealTime)
{
starRating += 1f;
}
if (_ratingMPAA == eRatingMPAA.Restricted)
{
starRating += .5f;
}
return starRating;
}