Initial Release

This commit is contained in:
2026-05-24 19:52:45 -07:00
commit 8242fdbbb3
181 changed files with 10119 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<!DOCTYPE html>
<html>
<body>
<noscript>
JavaScript is required to use this page.
</noscript>
<script>
const redirects = [
"https://www.youtube.com/watch?v=dQw4w9WgXcQ", // Risk Astley - Never Gonna Give You Up
"https://www.youtube.com/watch?v=DnmHG3mJv1o", // Masayoshi Takanaka - Tropic Birds
"https://www.youtube.com/watch?v=ZZCt92zLmLI", // Blur - Intermission
"https://www.twitch.tv/robcdee", // awesome sauce
"https://piapro.net/intl/en.html", // mikudayooo
]
const index = ((Date.now() / 60000) | 0) % redirects.length // rotate every minute
window.location.replace(redirects[index])
</script>
</body>
</html>