Changes to gosearch.scroll.pub

ScrollHub
ScrollHub
20 days ago
Initial commit
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://gosearch.scroll.pub
+ metaTags
+ editButton /edit.html
+ title GoSearch - The Simple Search Engine
+ style.css
+
+ header
+ class hero
+ nav
+ div GoSearch
+ class logo
+ div
+ class nav-links
+ a About
+ href #about
+ a Images
+ href #images
+ a Settings
+ href #settings
+ div
+ class search-container
+ form
+ id search-form
+ div
+ class search-box
+ input
+ type text
+ name q
+ placeholder Search the web
+ id search-input
+ button
+ type submit
+ class search-button
+ div 🔍
+ main
+ section
+ id about
+ class info-section
+ h2 About GoSearch
+ p A clean, fast search engine built with Scroll technology. No tracking, no ads, just results.
+ section
+ id images
+ class info-section
+ h2 Image Search
+ p Coming soon - search the web's images with our privacy-focused image search.
+ section
+ id settings
+ class info-section
+ h2 Settings
+ p Customize your search experience with dark mode, safe search, and more preferences.
+ footer
+ div
+ class footer-content
+ div
+ class footer-links
+ a Privacy
+ href /privacy
+ a Terms
+ href /terms
+ a Contact
+ href mailto:hello@gosearch.scroll.pub
+
+ script.js
prompt.json
Changed around line 1
+ {
+ "id": "f556bd01-3f86-49c4-b784-e9ae58d63c9d",
+ "object": "chat.completion",
+ "created": 1748383068,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "Here's my proposal for a Google-inspired search engine built with Scroll:\n\n---domain---\ngosearch.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://gosearch.scroll.pub\nmetaTags\neditButton /edit.html\ntitle GoSearch - The Simple Search Engine\nstyle.css\n\nheader\n class hero\n nav\n div GoSearch\n class logo\n div\n class nav-links\n a About\n href #about\n a Images\n href #images\n a Settings\n href #settings\n div\n class search-container\n form\n id search-form\n div\n class search-box\n input\n type text\n name q\n placeholder Search the web\n id search-input\n button\n type submit\n class search-button\n div 🔍\nmain\n section\n id about\n class info-section\n h2 About GoSearch\n p A clean, fast search engine built with Scroll technology. No tracking, no ads, just results.\n section\n id images\n class info-section\n h2 Image Search\n p Coming soon - search the web's images with our privacy-focused image search.\n section\n id settings\n class info-section\n h2 Settings\n p Customize your search experience with dark mode, safe search, and more preferences.\nfooter\n div\n class footer-content\n div\n class footer-links\n a Privacy\n href /privacy\n a Terms\n href /terms\n a Contact\n href mailto:hello@gosearch.scroll.pub\n\nscript.js\n---style.css---\n:root {\n --primary: #4285F4;\n --secondary: #34A853;\n --accent: #EA4335;\n --text: #202124;\n --light: #f8f9fa;\n --dark: #3c4043;\n --shadow: 0 1px 6px rgba(32,33,36,0.28);\n}\n\nbody {\n font-family: 'Arial', sans-serif;\n line-height: 1.6;\n color: var(--text);\n margin: 0;\n padding: 0;\n min-height: 100vh;\n display: flex;\n flex-direction: column;\n}\n\n.hero {\n display: flex;\n flex-direction: column;\n align-items: center;\n padding: 2rem 1rem;\n background: var(--light);\n}\n\n.logo {\n font-size: 2.5rem;\n font-weight: bold;\n color: var(--primary);\n margin-bottom: 1rem;\n}\n\n.nav-links {\n display: flex;\n gap: 1.5rem;\n margin-bottom: 2rem;\n}\n\n.nav-links a {\n text-decoration: none;\n color: var(--dark);\n font-weight: 500;\n transition: color 0.3s;\n}\n\n.nav-links a:hover {\n color: var(--primary);\n}\n\n.search-container {\n width: 100%;\n max-width: 600px;\n margin: 0 auto;\n}\n\n.search-box {\n display: flex;\n border: 1px solid #dfe1e5;\n border-radius: 24px;\n padding: 0.5rem 1rem;\n box-shadow: var(--shadow);\n transition: all 0.3s;\n}\n\n.search-box:hover {\n box-shadow: 0 2px 8px rgba(32,33,36,0.3);\n}\n\n#search-input {\n flex: 1;\n border: none;\n outline: none;\n font-size: 1rem;\n padding: 0.5rem;\n background: transparent;\n}\n\n.search-button {\n background: none;\n border: none;\n cursor: pointer;\n font-size: 1.2rem;\n color: var(--primary);\n padding: 0 0.5rem;\n}\n\n.info-section {\n padding: 3rem 1rem;\n max-width: 800px;\n margin: 0 auto;\n text-align: center;\n}\n\n.info-section h2 {\n color: var(--primary);\n margin-bottom: 1.5rem;\n}\n\n.footer-content {\n text-align: center;\n padding: 2rem 1rem;\n margin-top: auto;\n background: var(--light);\n}\n\n.footer-links {\n display: flex;\n justify-content: center;\n gap: 1.5rem;\n margin-bottom: 1rem;\n}\n\n.footer-links a {\n text-decoration: none;\n color: var(--dark);\n}\n\n@media (max-width: 600px) {\n .nav-links {\n flex-direction: column;\n gap: 0.5rem;\n align-items: center;\n }\n \n .search-box {\n padding: 0.5rem;\n }\n}\n---script.js---\ndocument.addEventListener('DOMContentLoaded', function() {\n const searchForm = document.getElementById('search-form');\n const searchInput = document.getElementById('search-input');\n \n searchForm.addEventListener('submit', function(e) {\n e.preventDefault();\n const query = searchInput.value.trim();\n if (query) {\n // In a real implementation, this would redirect to search results\n alert(`Searching for: ${query}`);\n // window.location.href = `/search?q=${encodeURIComponent(query)}`;\n }\n });\n \n // Focus the search input on page load\n searchInput.focus();\n \n // Smooth scrolling for anchor links\n document.querySelectorAll('a[href^=\"#\"]').forEach(anchor => {\n anchor.addEventListener('click', function(e) {\n e.preventDefault();\n const targetId = this.getAttribute('href');\n if (targetId !== '#') {\n document.querySelector(targetId).scrollIntoView({\n behavior: 'smooth'\n });\n }\n });\n });\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 718,
+ "completion_tokens": 1277,
+ "total_tokens": 1995,
+ "prompt_tokens_details": {
+ "cached_tokens": 0
+ },
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 718
+ },
+ "system_fingerprint": "fp_8802369eaa_prod0425fp8"
+ }
readme.scroll
Changed around line 1
+ # gosearch.scroll.pub
+
+ Prompt: website
+ Agent: deepseek
+ Model: deepseek-chat
+
+ ## User prompt
+ google.com
+
+ ## System prompt
+ You are an expert web developer. Create a website based on this request: "google.com"
+
+ Requirements:
+ - Use only Scroll, CSS, and JavaScript (NO frameworks, NO external dependencies)
+ - Create clean, semantic HTML5
+ - Make it mobile-responsive
+ - Follow modern best practices and accessibility guidelines
+ - Keep it simple but professional
+ - Use only relative links and no external resources
+ - Do not put a copyright symbol or all rights reserved in the footer.
+ - Make it beautiful. Dazzling. Advanced used of CSS.
+
+ As a refresher, for doing the html body, Scroll is a whitespace based language that uses a single indented space to mark a line (aka particle) as a subparticle of a parent line.
+
+ For example:
+
+ header
+ class hero
+ nav
+ div Scroll
+ class logo
+ div
+ class nav-links
+ a Features
+ href #features
+ a Examples
+ href #examples
+ a Edit
+ href edit.html
+ a GitHub
+ class cta-button
+ href https://github.com/breck7/scroll
+ div
+ class hero-content
+ h1 Write Better with Scroll
+ p The extendible markup language that makes source beautiful and compiles to anything
+ a Get Started
+ class primary-button
+ href https://hub.scroll.pub/
+ main
+ section
+ id features
+ class features
+ h2 Why Scroll?
+ div
+ class feature-grid
+ div
+ class feature-card
+ div ⚡
+ class feature-icon
+ h3 Simple Syntax
+ p Like Markdown, but more powerful. No parentheses needed.
+ div
+ class feature-card
+ div 🧩
+ class feature-icon
+ h3 Extendible
+ p Build your own custom parsers.
+ div
+ class feature-card
+ div 🎨
+ class feature-icon
+ h3 Beautiful Output
+ p Create stunning documents with minimal effort.
+ div
+ class feature-card
+ div 🚀
+ class feature-icon
+ h3 Fast & Light
+ p Built on the efficient PPS Stack.
+ section
+ id examples
+ class code-demo
+ h2 See It In Action
+ div
+ class code-container
+ pre
+ class code-example
+ div
+ class code-output
+ footer
+ div
+ class footer-content
+ div
+ class footer-links
+ a Documentation
+ href https://scroll.pub/tutorial.html
+ a Community
+ href https://www.reddit.com/r/WorldWideScroll/
+ a Blog
+ href https://scroll.pub/blog
+ p Started by Breck Yunits. Evolved by a community.
+ https://twitter.com/breckyunits Breck Yunits
+ https://github.com/breck7/scroll/graphs/contributors community
+
+
+ First suggest a short, memorable domain name ending in scroll.pub that represents this website. Then provide the website files. Use this exact format:
+
+ ---domain---
+ (domainscroll.pub here)
+ ---index.scroll---
+ buildHtml
+ baseUrl https://(domainscroll.pub here)
+ metaTags
+ editButton /edit.html
+ title (Title here)
+ style.css
+
+ (body content here. no blank lines please.)
+
+ script.js
+ ---style.css---
+ (CSS content here)
+ ---script.js---
+ (JavaScript content here)
+ ---end---
script.js
Changed around line 1
+ document.addEventListener('DOMContentLoaded', function() {
+ const searchForm = document.getElementById('search-form');
+ const searchInput = document.getElementById('search-input');
+
+ searchForm.addEventListener('submit', function(e) {
+ e.preventDefault();
+ const query = searchInput.value.trim();
+ if (query) {
+ // In a real implementation, this would redirect to search results
+ alert(`Searching for: ${query}`);
+ // window.location.href = `/search?q=${encodeURIComponent(query)}`;
+ }
+ });
+
+ // Focus the search input on page load
+ searchInput.focus();
+
+ // Smooth scrolling for anchor links
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
+ anchor.addEventListener('click', function(e) {
+ e.preventDefault();
+ const targetId = this.getAttribute('href');
+ if (targetId !== '#') {
+ document.querySelector(targetId).scrollIntoView({
+ behavior: 'smooth'
+ });
+ }
+ });
+ });
+ });
style.css
Changed around line 1
+ :root {
+ --primary: #4285F4;
+ --secondary: #34A853;
+ --accent: #EA4335;
+ --text: #202124;
+ --light: #f8f9fa;
+ --dark: #3c4043;
+ --shadow: 0 1px 6px rgba(32,33,36,0.28);
+ }
+
+ body {
+ font-family: 'Arial', sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ margin: 0;
+ padding: 0;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ }
+
+ .hero {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ padding: 2rem 1rem;
+ background: var(--light);
+ }
+
+ .logo {
+ font-size: 2.5rem;
+ font-weight: bold;
+ color: var(--primary);
+ margin-bottom: 1rem;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1.5rem;
+ margin-bottom: 2rem;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--dark);
+ font-weight: 500;
+ transition: color 0.3s;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ .search-container {
+ width: 100%;
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ .search-box {
+ display: flex;
+ border: 1px solid #dfe1e5;
+ border-radius: 24px;
+ padding: 0.5rem 1rem;
+ box-shadow: var(--shadow);
+ transition: all 0.3s;
+ }
+
+ .search-box:hover {
+ box-shadow: 0 2px 8px rgba(32,33,36,0.3);
+ }
+
+ #search-input {
+ flex: 1;
+ border: none;
+ outline: none;
+ font-size: 1rem;
+ padding: 0.5rem;
+ background: transparent;
+ }
+
+ .search-button {
+ background: none;
+ border: none;
+ cursor: pointer;
+ font-size: 1.2rem;
+ color: var(--primary);
+ padding: 0 0.5rem;
+ }
+
+ .info-section {
+ padding: 3rem 1rem;
+ max-width: 800px;
+ margin: 0 auto;
+ text-align: center;
+ }
+
+ .info-section h2 {
+ color: var(--primary);
+ margin-bottom: 1.5rem;
+ }
+
+ .footer-content {
+ text-align: center;
+ padding: 2rem 1rem;
+ margin-top: auto;
+ background: var(--light);
+ }
+
+ .footer-links {
+ display: flex;
+ justify-content: center;
+ gap: 1.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .footer-links a {
+ text-decoration: none;
+ color: var(--dark);
+ }
+
+ @media (max-width: 600px) {
+ .nav-links {
+ flex-direction: column;
+ gap: 0.5rem;
+ align-items: center;
+ }
+
+ .search-box {
+ padding: 0.5rem;
+ }
+ }