Academy Awards - Will Smith Edition
-
wrote on 31 Mar 2022, 12:39 last edited by
-
wrote on 31 Mar 2022, 13:38 last edited by
@George-K said in Academy Awards - Will Smith Edition:
Link to video
I think I'm officially old because I hate the fact that because of how social media works, it was this guy's first inclination to do this.
-
wrote on 31 Mar 2022, 16:14 last edited by
-
wrote on 31 Mar 2022, 19:15 last edited by
@89th said in Academy Awards - Will Smith Edition:
I got to 69 km/h
Sound on to appreciate any scores above 30 km/h btw
-
wrote on 31 Mar 2022, 19:31 last edited by
-
wrote on 31 Mar 2022, 20:44 last edited by
Damn, I can't get more than 29 km/h.
I blame my wireless Apple mouse.
-
wrote on 31 Mar 2022, 20:52 last edited by
me neither.
Mac or phone.
-
wrote on 31 Mar 2022, 21:06 last edited by
The Academy ought to pay Smith. It's the most publicity they've had in decades.
-
wrote on 31 Mar 2022, 22:37 last edited by
@Klaus said in Academy Awards - Will Smith Edition:
Damn, I can't get more than 29 km/h.
I blame my wireless Apple mouse.
Make the window as small as possible...
-
wrote on 1 Apr 2022, 01:19 last edited by
That is a funny game!
-
wrote on 1 Apr 2022, 10:45 last edited by
And their April fool's today is to slap Smith
-
wrote on 1 Apr 2022, 14:10 last edited by
I couldn't help but peek at the code to understand how I can get the best speed, but instead I found some easter eggs.
const byPassMinify=`// Hello there fellow nerd. Couldn't help sneaking a peak at the code huh? // This project was pulled together VERY quickly, so please don't judge! // There's some odd code choices here, but if it works, it works. // I'll be working on cleaning it and publicly releasing soon. // In the meantime, feel free to email info@slapchris.com with ideas, questions, suggestions or bugs!`;function preventBehavior(e){e.preventDefault();} document.addEventListener("touchmove",preventBehavior,{passive:false,});function Face(){this.graphics={face:chris,slapLeft:slapLeft,slapRight:slapRight,};this.iWidth=253;this.iHeight=306;this.ratio=2.5;this.padding=30/this.ratio;this.width=this.iWidth/this.ratio;this.height=this.iHeight/this.ratio;this.gravity=0.2;this.velocity_x=0;this.velocity_y=0;this.ypos=height/2-this.height;this.xpos=W-this.width-20;this.collision=false;if(!!isAprilFools&&!disableAprilFools){this.graphics={face:will,slapLeft:will_slapLeft,slapRight:will_slapRight,};} this.show=function(){image(this.graphics.face,this.xpos,this.ypos,this.width,this.height);noFill();noStroke();rect(this.xpos,this.ypos,100,100);};this.update=function(){this.minY=this.height/2;this.maxY=height-this.height/2;this.velocity_y=this.velocity_y+this.gravity;this.ypos=this.ypos+this.velocity_y;this.xpos=this.xpos+this.velocity_x;this.velocity_x=this.velocity_x*0.99;};} function Hand(){this.iHeight=120;this.iWidth=120;this.ratio=1.2;this.height=this.iHeight/this.ratio;this.width=this.iWidth/this.ratio;this.v_speed=0;this.gravity=0.5;this.ypos=height/2-100;this.xpos=10;this.drag=false;this.v_speed_x=0;this.isFish=false;const getHandImg=()=>{if(startScreen===1){return handstart;} if(Math.random()<0.0001||secretCounter>=16){this.isFish=true;return fishHand;} if(Math.random()<0.004){return Math.random()>0.5?rarehand1:rarehand2;}
Look at the last two lines. Apparently you sometimes get a "rare hand" and even less commonly a "fish hand", which have both a different image and a different sound. For instance, this is the fish slapping sound.
-
wrote on 1 Apr 2022, 14:12 last edited by
Oh, he has a "secret counter":
function swapUnit(){secretCounter+=1;if(secretCounter===16){slapsfxfish.play();resetGame();}
In plain English, if you change the unit from metric to imperial 16 times, you get the fish slap!
-
Oh, he has a "secret counter":
function swapUnit(){secretCounter+=1;if(secretCounter===16){slapsfxfish.play();resetGame();}
In plain English, if you change the unit from metric to imperial 16 times, you get the fish slap!
wrote on 1 Apr 2022, 14:19 last edited by@Klaus said in Academy Awards - Will Smith Edition:
Oh, he has a "secret counter":
function swapUnit(){secretCounter+=1;if(secretCounter===16){slapsfxfish.play();resetGame();}
In plain English, if you change the unit from metric to imperial 16 times, you get the fish slap!
I’ve fish slapped people for less.
-
wrote on 1 Apr 2022, 19:35 last edited by
Oscars producer explains why Will Smith was not removed. Because Chris Rock did not want to escalate.
-
wrote on 1 Apr 2022, 20:02 last edited by
-
wrote on 1 Apr 2022, 20:21 last edited by
nice
-
wrote on 1 Apr 2022, 21:10 last edited by Horace 4 Jan 2022, 21:11
The best comment I've heard about this is from Jim Carrey of all people. Something about how he was most disgusted by the audience and its reaction. Hollywood's vacuous pseudo virtuous group think laid bare, as they simply lacked the personal instincts, en masse, to react appropriately to the situation. They could only clap like primates, because all the other high status primates around them were clapping. Those people wouldn't know virtue if it Rock slapped them across the face.
-
The best comment I've heard about this is from Jim Carrey of all people. Something about how he was most disgusted by the audience and its reaction. Hollywood's vacuous pseudo virtuous group think laid bare, as they simply lacked the personal instincts, en masse, to react appropriately to the situation. They could only clap like primates, because all the other high status primates around them were clapping. Those people wouldn't know virtue if it Rock slapped them across the face.
wrote on 1 Apr 2022, 21:15 last edited by@Horace said in Academy Awards - Will Smith Edition:
The best comment I've heard about this is from Jim Carrey of all people.
The second best comment, I think you'll find...
Link to video -
@Horace said in Academy Awards - Will Smith Edition:
The best comment I've heard about this is from Jim Carrey of all people.
The second best comment, I think you'll find...
Link to videowrote on 1 Apr 2022, 21:19 last edited by George K 4 Jan 2022, 21:19@Doctor-Phibes said in Academy Awards - Will Smith Edition:
The second best comment, I think you'll find...
What's great about this clip is that it uses a rarely-used part of the movie.
Kudos.