Rated R · 1 hr 44 min · 2023
Biography, Comedy, Drama
Dumb Money is the ultimate David vs. Goliath tale, based on the insane true story of everyday people who flipped the script on Wall Street and got rich by turning GameStop (yes, the mall videogame store) into the world’s hottest company. In the middle of everything is regular guy Keith Gill (Paul Dano), who starts it all by sinking his life savings into the stock and posting about it. When his social posts start blowing up, so does his life and the lives of everyone following him. As a stock tip becomes a movement, everyone gets rich – until the billionaires fight back, and both sides find their worlds turned upside down.
- Synopsis provided byFabric Origin
Credits
Director:
- Craig Gillespie
Cast:
- Paul Dano
- Pete Davidson
- Vincent D'Onofrio
- America Ferrera
- Nick Offerman
- Anthony Ramos
- Sebastian Stan
- Shailene Woodley
- Seth Rogen
- Clancy Brown
Writers:
- Ben Mezrich
- Lauren Schuker Blum
- Rebecca Angelo
Producers:
- Aaron Ryder
- Andrew Swett
- Ben Mezrich
- Cameron Winklevoss
- Claire Severance
- Craig Gillespie
- John Friedberg
- Johnny Holland
- Kevin Ulrich
- Lauren Schuker Blum
- Loren Brock
- Michael Heimler
- Rebecca Angelo
- Teddy Schwarzman
- Tyler Winklevoss
Now Playing
Dumb Money is not showing in any theaters in the area.
'); this.result_cont.append('
'); this.html = jQuery("#times-"+count); for (var i = 0; i < grouped[keys[index]].length; i++ ){ this.html.append(jQuery(grouped[keys[index]][i])); } keys.pop(); count++; } } } Component.prototype.toggle = function(event){ var id = jQuery(event.currentTarget).data('partner'); if(jQuery("#"+id).is(":visible")){ jQuery("#"+id).fadeOut(); jQuery("#"+id+"toggle").addClass('expand'); jQuery("#"+id+"toggle").removeClass('contract'); } else { jQuery("#"+id).fadeIn('slow'); jQuery("#"+id+"toggle").addClass('contract'); jQuery("#"+id+"toggle").removeClass('expand'); } } Component.prototype.render = function(data){ this.results.fadeTo("fast", 0, function(){ this.results.html(data).fadeTo("fast", 1); this.init(); }.bind(this)); this.hideLoading(); } Component.prototype.squish = function(rows){ if (rows.length < MAX_INIT_COUNT){ //return true; } // itterate through the rows grouping them into hour chunks. result = {}; for (var i = 0; i < rows.length; i++){ time = parseInt(jQuery(rows[i]).data("time").split(":")[0]); time = time < 4 ? time + 24 : time if( typeof result[time] == "undefined"){ result[time] = [rows[i]]; } else { result[time].push(rows[i]); } } return result; } Component.prototype.group = function(obj, chunk){ var result = {}; keys = []; for (key in obj){ keys.push(parseInt(key)); } if (keys.length == 0) return false; keys.sort(function(a,b){return a-b}); for (var i = keys[0]; i < 28; i = i + chunk ){ var temp = []; for(var j = 0; j < CHUNK; j++){ if (i + j in obj){ temp = temp.concat(obj[i+j]); } } if (temp.length > 0 ){ result[i] =temp; } } // if the first group is less than 10 add to next group if ( result[keys[0]].length < 10 && (keys[0] + CHUNK) in result ){ result[keys[0]] = result[keys[0]].concat(result[keys[0] + CHUNK]); delete result[keys[0] + CHUNK]; } return result; } Component.prototype.get = function(e){ var myUrl = URL, params; e.preventDefault(); this.date = jQuery(e.currentTarget).data("date") || this.date; if(jQuery(e.currentTarget).val() == "-none-"){ this.neighborhood = ""; }else{ this.neighborhood = jQuery(e.currentTarget).val() || jQuery(e.currentTarget).data('hood') || this.neighborhood || "all"; } params = { ajaxComponent: COMPONENT_ID, }; params[PARAM_NAME] = this.date; params['neighborhood'] = this.neighborhood; this.historyUrl = new Foundation.URL(this.historyUrl.toString(), {'narrowByDate':this.date, 'neighborhood': this.neighborhood}); jQuery.ajax({ url: this.historyUrl.toString(), cache: false, type: 'GET', data: (params), beforeSend: this.showLoading.bind(this), success: this.render.bind(this) }); } return new Component(); }());