------------------------------------------------------------
commit 15f64826445835913167538a24c445e876a0e2c8
Author: ffff:12.186.22.250 <ffff:12.186.22.250@hub.scroll.pub> Date: Thu Dec 19 21:04:28 2024 +0000 updated index.scroll diff --git a/index.scroll b/index.scroll index aa6f851..ca1e8a2 100644 --- a/index.scroll +++ b/index.scroll @@ -1,4 +1,4 @@ buildHtml theme roboto -Hello World my name is Abdulla, of Uyghur ethnicity. \ No newline at end of file +claude.html \ No newline at end of file ------------------------------------------------------------
commit b2e67b3621bb12a382097fc8438499de751b6997
Author: ffff:12.186.22.250 <ffff:12.186.22.250@hub.scroll.pub> Date: Thu Dec 19 21:04:19 2024 +0000 updated claude.html diff --git a/claude.html b/claude.html index e69de29..0366932 100644 --- a/claude.html +++ b/claude.html @@ -0,0 +1,159 @@ +<!doctype html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <title>Abdulla's Homepage</title> + <style> + * { + margin: 0; + padding: 0; + box-sizing: border-box; + font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; + } + + body { + background: linear-gradient(135deg, #1a1a1a, #2a2a2a); + color: #ffffff; + min-height: 100vh; + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + padding: 2rem; + } + + .container { + text-align: center; + max-width: 800px; + } + + h1 { + font-size: 3.5rem; + margin-bottom: 1rem; + opacity: 0; + transform: translateY(20px); + animation: fadeInUp 1s ease forwards; + } + + p { + font-size: 1.5rem; + margin-bottom: 2rem; + opacity: 0; + transform: translateY(20px); + animation: fadeInUp 1s ease 0.3s forwards; + } + + .cultural-pattern { + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + pointer-events: none; + opacity: 0.1; + z-index: -1; + } + + @keyframes fadeInUp { + to { + opacity: 1; + transform: translateY(0); + } + } + + .interactive-text { + cursor: pointer; + transition: color 0.3s ease; + } + + .interactive-text:hover { + color: #ff6b6b; + } + + .language-switch { + position: absolute; + top: 20px; + right: 20px; + padding: 10px 20px; + background: rgba(255, 255, 255, 0.1); + border: none; + color: white; + cursor: pointer; + border-radius: 5px; + transition: background 0.3s ease; + } + + .language-switch:hover { + background: rgba(255, 255, 255, 0.2); + } + </style> + </head> + <body> + <button class="language-switch" onclick="toggleLanguage()"> + Toggle Language + </button> + <div class="container"> + <h1 class="interactive-text" id="greeting">Hello World</h1> + <p id="intro">My name is Abdulla, of Uyghur ethnicity.</p> + </div> + <svg class="cultural-pattern" width="100%" height="100%"> + <pattern + id="uyghurPattern" + x="0" + y="0" + width="50" + height="50" + patternUnits="userSpaceOnUse" + > + <path + d="M25,0 L50,25 L25,50 L0,25 Z" + fill="none" + stroke="white" + stroke-width="1" + /> + <circle cx="25" cy="25" r="5" fill="white" /> + </pattern> + <rect width="100%" height="100%" fill="url(#uyghurPattern)" /> + </svg> + + <script> + const greetings = { + en: "Hello World", + ug: "دۇنيا ، ياخشىمۇسىز", + }; + + const intros = { + en: "My name is Abdulla, of Uyghur ethnicity.", + ug: "مېنىڭ ئىسمىم ئابدۇللا ، مەن ئۇيغۇر", + }; + + let currentLang = "en"; + + function toggleLanguage() { + currentLang = currentLang === "en" ? "ug" : "en"; + document.getElementById("greeting").textContent = + greetings[currentLang]; + document.getElementById("intro").textContent = intros[currentLang]; + } + + // Interactive text effect + document.querySelectorAll(".interactive-text").forEach((element) => { + element.addEventListener("mouseover", () => { + element.style.transform = "scale(1.05)"; + }); + + element.addEventListener("mouseout", () => { + element.style.transform = "scale(1)"; + }); + }); + + // Random pattern animation + setInterval(() => { + const pattern = document.querySelector("#uyghurPattern"); + const rotation = Math.random() * 360; + pattern.setAttribute("patternTransform", `rotate(${rotation} 25 25)`); + }, 5000); + </script> + </body> +</html> ------------------------------------------------------------
commit 1cf61c04132b0144d723f9e99ba79bee507e9d9e
Author: ffff:12.186.22.250 <ffff:12.186.22.250@hub.scroll.pub> Date: Thu Dec 19 21:04:17 2024 +0000 created claude.html diff --git a/claude.html b/claude.html new file mode 100644 index 0000000..e69de29 ------------------------------------------------------------
commit 2cccb2ab7ab7e76e928e9b306c98197c2d1f7a30
Author: ffff:12.186.22.250 <ffff:12.186.22.250@hub.scroll.pub> Date: Thu Dec 19 21:03:09 2024 +0000 updated index.scroll diff --git a/index.scroll b/index.scroll index 3842c11..aa6f851 100644 --- a/index.scroll +++ b/index.scroll @@ -1,4 +1,4 @@ buildHtml theme roboto -Hello World my name is Abdulla, of Uyghurian ethnicity. \ No newline at end of file +Hello World my name is Abdulla, of Uyghur ethnicity. \ No newline at end of file ------------------------------------------------------------
commit 79af4c197e546fc334807af8b5a06fbabae372c0
Author: ffff:12.186.22.250 <ffff:12.186.22.250@hub.scroll.pub> Date: Thu Dec 19 21:03:04 2024 +0000 updated index.scroll diff --git a/index.scroll b/index.scroll index 4eab4ce..3842c11 100644 --- a/index.scroll +++ b/index.scroll @@ -1,4 +1,4 @@ buildHtml theme roboto -Hello World my name is Uyghur \ No newline at end of file +Hello World my name is Abdulla, of Uyghurian ethnicity. \ No newline at end of file ------------------------------------------------------------
commit ea7479a1c8b9cff50a053abc9ff5bbab54a255de
Author: ffff:12.186.22.250 <ffff:12.186.22.250@hub.scroll.pub> Date: Thu Dec 19 21:02:31 2024 +0000 updated index.scroll diff --git a/index.scroll b/index.scroll index 4442ed6..4eab4ce 100644 --- a/index.scroll +++ b/index.scroll @@ -1,4 +1,4 @@ buildHtml theme roboto -Hello World my name is \ No newline at end of file +Hello World my name is Uyghur \ No newline at end of file ------------------------------------------------------------
commit 93e43037b7794c5d3de89eaf6afe3e3d561d8df3
Author: root <root@hub.scroll.pub> Date: Sun Nov 10 20:12:15 2024 +0000 initial blank_template template diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bd1a52d --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +.DS_Store +*.html +*.txt +*.xml +*.css +*.js +*.csv +requests.scroll \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..4442ed6 --- /dev/null +++ b/index.scroll @@ -0,0 +1,4 @@ +buildHtml +theme roboto + +Hello World my name is \ No newline at end of file