commit 50463927b84d98c8e410c052670acd607c918a24
Author: root <root@hub.scroll.pub> Date: 2025-01-06 11:23:04 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..a2a8e30 --- /dev/null +++ b/body.html @@ -0,0 +1,48 @@ +<header class="header"> + <h1>Humanoid Robot Teleoperation System</h1> + <p>Revolutionizing remote control of humanoid robots with precision and ease.</p> +</header> + +<main class="main-content"> + <section class="intro"> + <h2>About the System</h2> + <p>Our teleoperation system allows seamless control of humanoid robots from anywhere in the world. Experience intuitive controls, real-time feedback, and unparalleled precision.</p> + </section> + + <section class="features"> + <h2>Key Features</h2> + <div class="feature-grid"> + <div class="feature"> + <h3>Real-Time Control</h3> + <p>Control your robot with zero latency, ensuring smooth and responsive movements.</p> + </div> + <div class="feature"> + <h3>Intuitive Interface</h3> + <p>User-friendly design for both beginners and experts.</p> + </div> + <div class="feature"> + <h3>Advanced Feedback</h3> + <p>Receive detailed sensory feedback for precise operations.</p> + </div> + </div> + </section> + + <section class="demo"> + <h2>Live Demo</h2> + <div class="demo-container"> + <div class="robot-view" id="robot-view"> + <p>Robot camera feed will appear here.</p> + </div> + <div class="controls"> + <button id="move-forward">Move Forward</button> + <button id="move-backward">Move Backward</button> + <button id="turn-left">Turn Left</button> + <button id="turn-right">Turn Right</button> + </div> + </div> + </section> +</main> + +<footer class="footer"> + <p>Contact us for more information or to request a demo.</p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..0f8dbbb --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://robotelo.scroll.pub +metaTags +editButton /edit.html +title Humanoid Robot Teleoperation System +style.css +body.html +script.js \ No newline at end of file diff --git a/prompt.json b/prompt.json new file mode 100644 index 0000000..740a4b8 --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "c8a16c4b-050a-4086-ba67-64ded44c7899", + "object": "chat.completion", + "created": 1736162558, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\nrobotelo.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://robotelo.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Humanoid Robot Teleoperation System\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header class=\"header\">\n <h1>Humanoid Robot Teleoperation System</h1>\n <p>Revolutionizing remote control of humanoid robots with precision and ease.</p>\n</header>\n\n<main class=\"main-content\">\n <section class=\"intro\">\n <h2>About the System</h2>\n <p>Our teleoperation system allows seamless control of humanoid robots from anywhere in the world. Experience intuitive controls, real-time feedback, and unparalleled precision.</p>\n </section>\n\n <section class=\"features\">\n <h2>Key Features</h2>\n <div class=\"feature-grid\">\n <div class=\"feature\">\n <h3>Real-Time Control</h3>\n <p>Control your robot with zero latency, ensuring smooth and responsive movements.</p>\n </div>\n <div class=\"feature\">\n <h3>Intuitive Interface</h3>\n <p>User-friendly design for both beginners and experts.</p>\n </div>\n <div class=\"feature\">\n <h3>Advanced Feedback</h3>\n <p>Receive detailed sensory feedback for precise operations.</p>\n </div>\n </div>\n </section>\n\n <section class=\"demo\">\n <h2>Live Demo</h2>\n <div class=\"demo-container\">\n <div class=\"robot-view\" id=\"robot-view\">\n <p>Robot camera feed will appear here.</p>\n </div>\n <div class=\"controls\">\n <button id=\"move-forward\">Move Forward</button>\n <button id=\"move-backward\">Move Backward</button>\n <button id=\"turn-left\">Turn Left</button>\n <button id=\"turn-right\">Turn Right</button>\n </div>\n </div>\n </section>\n</main>\n\n<footer class=\"footer\">\n <p>Contact us for more information or to request a demo.</p>\n</footer>\n---style.css---\n:root {\n --primary-color: #1a73e8;\n --secondary-color: #34a853;\n --background-color: #f5f5f5;\n --text-color: #333;\n --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;\n}\n\nbody {\n font-family: var(--font-family);\n color: var(--text-color);\n background-color: var(--background-color);\n margin: 0;\n padding: 0;\n line-height: 1.6;\n}\n\n.header {\n background: var(--primary-color);\n color: white;\n padding: 2rem;\n text-align: center;\n}\n\n.header h1 {\n margin: 0;\n font-size: 2.5rem;\n}\n\n.header p {\n font-size: 1.2rem;\n margin-top: 0.5rem;\n}\n\n.main-content {\n padding: 2rem;\n}\n\n.intro, .features, .demo {\n margin-bottom: 2rem;\n}\n\n.features h2, .demo h2 {\n color: var(--primary-color);\n margin-bottom: 1rem;\n}\n\n.feature-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 1rem;\n}\n\n.feature {\n background: white;\n padding: 1rem;\n border-radius: 8px;\n box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);\n}\n\n.feature h3 {\n color: var(--secondary-color);\n margin-top: 0;\n}\n\n.demo-container {\n display: flex;\n flex-direction: column;\n align-items: center;\n gap: 1rem;\n}\n\n.robot-view {\n width: 100%;\n max-width: 600px;\n height: 300px;\n background: #ddd;\n border-radius: 8px;\n display: flex;\n justify-content: center;\n align-items: center;\n color: #666;\n}\n\n.controls {\n display: flex;\n gap: 1rem;\n}\n\n.controls button {\n background: var(--primary-color);\n color: white;\n border: none;\n padding: 0.75rem 1.5rem;\n border-radius: 4px;\n cursor: pointer;\n font-size: 1rem;\n transition: background 0.3s ease;\n}\n\n.controls button:hover {\n background: var(--secondary-color);\n}\n\n.footer {\n background: var(--primary-color);\n color: white;\n text-align: center;\n padding: 1rem;\n margin-top: 2rem;\n}\n\n@media (max-width: 768px) {\n .header h1 {\n font-size: 2rem;\n }\n\n .header p {\n font-size: 1rem;\n }\n\n .controls {\n flex-direction: column;\n }\n\n .controls button {\n width: 100%;\n }\n}\n---script.js---\ndocument.addEventListener('DOMContentLoaded', function () {\n const robotView = document.getElementById('robot-view');\n const moveForward = document.getElementById('move-forward');\n const moveBackward = document.getElementById('move-backward');\n const turnLeft = document.getElementById('turn-left');\n const turnRight = document.getElementById('turn-right');\n\n moveForward.addEventListener('click', () => {\n robotView.textContent = 'Moving Forward...';\n });\n\n moveBackward.addEventListener('click', () => {\n robotView.textContent = 'Moving Backward...';\n });\n\n turnLeft.addEventListener('click', () => {\n robotView.textContent = 'Turning Left...';\n });\n\n turnRight.addEventListener('click', () => {\n robotView.textContent = 'Turning Right...';\n });\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 241, + "completion_tokens": 1301, + "total_tokens": 1542, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 241 + }, + "system_fingerprint": "fp_3a5770e1b4" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..d6523bf --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# robotelo.scroll.pub +Website generated by DeepSeek from prompt: a humanoid robot Teleoperation System \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..747ec63 --- /dev/null +++ b/script.js @@ -0,0 +1,23 @@ +document.addEventListener('DOMContentLoaded', function () { + const robotView = document.getElementById('robot-view'); + const moveForward = document.getElementById('move-forward'); + const moveBackward = document.getElementById('move-backward'); + const turnLeft = document.getElementById('turn-left'); + const turnRight = document.getElementById('turn-right'); + + moveForward.addEventListener('click', () => { + robotView.textContent = 'Moving Forward...'; + }); + + moveBackward.addEventListener('click', () => { + robotView.textContent = 'Moving Backward...'; + }); + + turnLeft.addEventListener('click', () => { + robotView.textContent = 'Turning Left...'; + }); + + turnRight.addEventListener('click', () => { + robotView.textContent = 'Turning Right...'; + }); +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..468eb59 --- /dev/null +++ b/style.css @@ -0,0 +1,129 @@ +:root { + --primary-color: #1a73e8; + --secondary-color: #34a853; + --background-color: #f5f5f5; + --text-color: #333; + --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; +} + +body { + font-family: var(--font-family); + color: var(--text-color); + background-color: var(--background-color); + margin: 0; + padding: 0; + line-height: 1.6; +} + +.header { + background: var(--primary-color); + color: white; + padding: 2rem; + text-align: center; +} + +.header h1 { + margin: 0; + font-size: 2.5rem; +} + +.header p { + font-size: 1.2rem; + margin-top: 0.5rem; +} + +.main-content { + padding: 2rem; +} + +.intro, .features, .demo { + margin-bottom: 2rem; +} + +.features h2, .demo h2 { + color: var(--primary-color); + margin-bottom: 1rem; +} + +.feature-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 1rem; +} + +.feature { + background: white; + padding: 1rem; + border-radius: 8px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); +} + +.feature h3 { + color: var(--secondary-color); + margin-top: 0; +} + +.demo-container { + display: flex; + flex-direction: column; + align-items: center; + gap: 1rem; +} + +.robot-view { + width: 100%; + max-width: 600px; + height: 300px; + background: #ddd; + border-radius: 8px; + display: flex; + justify-content: center; + align-items: center; + color: #666; +} + +.controls { + display: flex; + gap: 1rem; +} + +.controls button { + background: var(--primary-color); + color: white; + border: none; + padding: 0.75rem 1.5rem; + border-radius: 4px; + cursor: pointer; + font-size: 1rem; + transition: background 0.3s ease; +} + +.controls button:hover { + background: var(--secondary-color); +} + +.footer { + background: var(--primary-color); + color: white; + text-align: center; + padding: 1rem; + margin-top: 2rem; +} + +@media (max-width: 768px) { + .header h1 { + font-size: 2rem; + } + + .header p { + font-size: 1rem; + } + + .controls { + flex-direction: column; + } + + .controls button { + width: 100%; + } +} \ No newline at end of file