Changes to breck.scroll.pub

ScrollHub
ScrollHub
22 days ago
Initial commit
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://breck.scroll.pub
+ metaTags
+ editButton /edit.html
+ title Breck Yunits | Inventor of Scroll
+ style.css
+ header
+ class hero
+ nav
+ div Scroll
+ class logo
+ div
+ class nav-links
+ a About
+ href #about
+ a Projects
+ href #projects
+ a Philosophy
+ href #philosophy
+ div
+ class hero-content
+ h1 Breck Yunits
+ p Inventor, programmer, and thinker behind Scroll and other innovative technologies
+ main
+ section
+ id about
+ class about-section
+ h2 About Breck
+ div
+ class content-grid
+ div
+ class portrait-container
+ div
+ class portrait
+ div
+ class bio
+ p Breck Yunits is a software engineer and inventor known for creating Scroll, an elegant markup language designed to make source code beautiful and maintainable.
+ p With a background in mathematics and computer science, Breck has worked on numerous projects at the intersection of language design, user interfaces, and web technologies.
+ p His work emphasizes simplicity, readability, and the power of well-designed notation systems.
+ section
+ id projects
+ class projects-section
+ h2 Notable Projects
+ div
+ class project-grid
+ div
+ class project-card
+ div 📜
+ class project-icon
+ h3 Scroll
+ p An extendible markup language that compiles to anything while keeping source beautiful.
+ div
+ class project-card
+ div 🌐
+ class project-icon
+ h3 World Wide Scroll
+ p A vision for a more readable, writable web built on Scroll documents.
+ div
+ class project-card
+ div 🧠
+ class project-icon
+ h3 ThoughtStorms
+ p A platform for networked thought and collaborative knowledge building.
+ section
+ id philosophy
+ class philosophy-section
+ h2 Design Philosophy
+ div
+ class philosophy-content
+ div
+ class principle
+ h3 Beauty in Notation
+ p "The notation should be as beautiful as the ideas it represents."
+ div
+ class principle
+ h3 Minimal Complexity
+ p "Build systems that are as simple as possible, but no simpler."
+ div
+ class principle
+ h3 Human-Centered
+ p "Technology should adapt to human cognition, not the other way around."
+ footer
+ div
+ class footer-content
+ div
+ class footer-links
+ a Twitter
+ href https://twitter.com/breckyunits
+ a GitHub
+ href https://github.com/breck7
+ a Scroll
+ href https://scroll.pub
+ p Made with Scroll, the language Breck created.
+ script.js
prompt.json
Changed around line 1
+ {
+ "id": "d7843ebc-eeb2-424e-9001-ff7cbb709dce",
+ "object": "chat.completion",
+ "created": 1750124026,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "Here's a professional, beautiful website explaining Breck Yunits and his work:\n\n---domain---\nbreck.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://breck.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Breck Yunits | Inventor of Scroll\nstyle.css\nheader\n class hero\n nav\n div Scroll\n class logo\n div\n class nav-links\n a About\n href #about\n a Projects\n href #projects\n a Philosophy\n href #philosophy\n div\n class hero-content\n h1 Breck Yunits\n p Inventor, programmer, and thinker behind Scroll and other innovative technologies\nmain\n section\n id about\n class about-section\n h2 About Breck\n div\n class content-grid\n div\n class portrait-container\n div\n class portrait\n div\n class bio\n p Breck Yunits is a software engineer and inventor known for creating Scroll, an elegant markup language designed to make source code beautiful and maintainable.\n p With a background in mathematics and computer science, Breck has worked on numerous projects at the intersection of language design, user interfaces, and web technologies.\n p His work emphasizes simplicity, readability, and the power of well-designed notation systems.\n section\n id projects\n class projects-section\n h2 Notable Projects\n div\n class project-grid\n div\n class project-card\n div 📜\n class project-icon\n h3 Scroll\n p An extendible markup language that compiles to anything while keeping source beautiful.\n div\n class project-card\n div 🌐\n class project-icon\n h3 World Wide Scroll\n p A vision for a more readable, writable web built on Scroll documents.\n div\n class project-card\n div 🧠\n class project-icon\n h3 ThoughtStorms\n p A platform for networked thought and collaborative knowledge building.\n section\n id philosophy\n class philosophy-section\n h2 Design Philosophy\n div\n class philosophy-content\n div\n class principle\n h3 Beauty in Notation\n p \"The notation should be as beautiful as the ideas it represents.\"\n div\n class principle\n h3 Minimal Complexity\n p \"Build systems that are as simple as possible, but no simpler.\"\n div\n class principle\n h3 Human-Centered\n p \"Technology should adapt to human cognition, not the other way around.\"\nfooter\n div\n class footer-content\n div\n class footer-links\n a Twitter\n href https://twitter.com/breckyunits\n a GitHub\n href https://github.com/breck7\n a Scroll\n href https://scroll.pub\n p Made with Scroll, the language Breck created.\nscript.js\n---style.css---\n:root {\n --primary: #2a5bd7;\n --primary-light: #e0e8ff;\n --text: #1a1a1a;\n --text-light: #666;\n --background: #ffffff;\n --card-bg: #f8f9fa;\n --border-radius: 12px;\n --shadow: 0 4px 12px rgba(0,0,0,0.05);\n --max-width: 1200px;\n}\n\n* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\nbody {\n font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;\n line-height: 1.6;\n color: var(--text);\n background: var(--background);\n}\n\nheader.hero {\n background: linear-gradient(135deg, var(--primary) 0%, #4a6bff 100%);\n color: white;\n padding: 2rem 1rem;\n position: relative;\n overflow: hidden;\n}\n\nheader.hero::before {\n content: '';\n position: absolute;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n background: url('data:image/svg+xml;utf8,');\n opacity: 0.1;\n}\n\nnav {\n display: flex;\n justify-content: space-between;\n align-items: center;\n max-width: var(--max-width);\n margin: 0 auto;\n padding: 0 1rem;\n}\n\n.logo {\n font-weight: 700;\n font-size: 1.5rem;\n}\n\n.nav-links {\n display: flex;\n gap: 1.5rem;\n}\n\n.nav-links a {\n color: white;\n text-decoration: none;\n font-weight: 500;\n transition: opacity 0.2s;\n}\n\n.nav-links a:hover {\n opacity: 0.8;\n}\n\n.hero-content {\n max-width: var(--max-width);\n margin: 4rem auto 0;\n padding: 0 1rem;\n text-align: center;\n}\n\n.hero-content h1 {\n font-size: 3rem;\n margin-bottom: 1rem;\n font-weight: 800;\n}\n\n.hero-content p {\n font-size: 1.25rem;\n max-width: 700px;\n margin: 0 auto 2rem;\n opacity: 0.9;\n}\n\nmain {\n max-width: var(--max-width);\n margin: 0 auto;\n padding: 4rem 1rem;\n}\n\nsection {\n margin-bottom: 6rem;\n}\n\nh2 {\n font-size: 2rem;\n margin-bottom: 2rem;\n text-align: center;\n color: var(--primary);\n}\n\n.content-grid {\n display: grid;\n grid-template-columns: 1fr 2fr;\n gap: 3rem;\n align-items: center;\n}\n\n.portrait {\n width: 200px;\n height: 200px;\n border-radius: 50%;\n background: var(--primary-light);\n margin: 0 auto;\n position: relative;\n overflow: hidden;\n}\n\n.portrait::after {\n content: 'BY';\n position: absolute;\n top: 50%;\n left: 50%;\n transform: translate(-50%, -50%);\n font-size: 3rem;\n font-weight: bold;\n color: var(--primary);\n opacity: 0.3;\n}\n\n.bio p {\n margin-bottom: 1.5rem;\n color: var(--text-light);\n}\n\n.project-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n gap: 2rem;\n}\n\n.project-card {\n background: var(--card-bg);\n padding: 2rem;\n border-radius: var(--border-radius);\n box-shadow: var(--shadow);\n transition: transform 0.2s;\n}\n\n.project-card:hover {\n transform: translateY(-5px);\n}\n\n.project-icon {\n font-size: 2.5rem;\n margin-bottom: 1rem;\n}\n\n.project-card h3 {\n margin-bottom: 1rem;\n color: var(--primary);\n}\n\n.philosophy-content {\n max-width: 800px;\n margin: 0 auto;\n}\n\n.principle {\n margin-bottom: 3rem;\n text-align: center;\n}\n\n.principle h3 {\n margin-bottom: 1rem;\n color: var(--primary);\n}\n\nfooter {\n background: var(--card-bg);\n padding: 3rem 1rem;\n text-align: center;\n}\n\n.footer-content {\n max-width: var(--max-width);\n margin: 0 auto;\n}\n\n.footer-links {\n display: flex;\n justify-content: center;\n gap: 2rem;\n margin-bottom: 2rem;\n}\n\n.footer-links a {\n color: var(--primary);\n text-decoration: none;\n font-weight: 500;\n}\n\n.footer-links a:hover {\n text-decoration: underline;\n}\n\n@media (max-width: 768px) {\n .content-grid {\n grid-template-columns: 1fr;\n gap: 2rem;\n }\n \n .hero-content h1 {\n font-size: 2.5rem;\n }\n \n .nav-links {\n gap: 1rem;\n }\n}\n\n@media (max-width: 480px) {\n .hero-content h1 {\n font-size: 2rem;\n }\n \n .hero-content p {\n font-size: 1.1rem;\n }\n \n .project-grid {\n grid-template-columns: 1fr;\n }\n \n .footer-links {\n flex-direction: column;\n gap: 1rem;\n }\n}\n---script.js---\ndocument.addEventListener('DOMContentLoaded', function() {\n // Smooth scrolling for anchor links\n document.querySelectorAll('a[href^=\"#\"]').forEach(anchor => {\n anchor.addEventListener('click', function(e) {\n e.preventDefault();\n \n const targetId = this.getAttribute('href');\n if (targetId === '#') return;\n \n const targetElement = document.querySelector(targetId);\n if (targetElement) {\n targetElement.scrollIntoView({\n behavior: 'smooth',\n block: 'start'\n });\n \n // Update URL without page jump\n history.pushState(null, null, targetId);\n }\n });\n });\n \n // Add animation class when elements come into view\n const observerOptions = {\n threshold: 0.1\n };\n \n const observer = new IntersectionObserver((entries) => {\n entries.forEach(entry => {\n if (entry.isIntersecting) {\n entry.target.classList.add('animate-in');\n observer.unobserve(entry.target);\n }\n });\n }, observerOptions);\n \n document.querySelectorAll('.project-card, .principle, .portrait').forEach(el => {\n el.classList.add('animate-on-scroll');\n observer.observe(el);\n });\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 729,
+ "completion_tokens": 2261,
+ "total_tokens": 2990,
+ "prompt_tokens_details": {
+ "cached_tokens": 0
+ },
+ "prompt_cache_hit_tokens": 0,
+ "prompt_cache_miss_tokens": 729
+ },
+ "system_fingerprint": "fp_8802369eaa_prod0425fp8"
+ }
readme.scroll
Changed around line 1
+ # breck.scroll.pub
+
+ Prompt: website
+ Agent: deepseek
+ Model: deepseek-chat
+
+ ## User prompt
+ i want a website that explains what breck yuntis is
+
+ ## System prompt
+ You are an expert web developer. Create a website based on this request: "i want a website that explains what breck yuntis is"
+
+ 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() {
+ // 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 === '#') return;
+
+ const targetElement = document.querySelector(targetId);
+ if (targetElement) {
+ targetElement.scrollIntoView({
+ behavior: 'smooth',
+ block: 'start'
+ });
+
+ // Update URL without page jump
+ history.pushState(null, null, targetId);
+ }
+ });
+ });
+
+ // Add animation class when elements come into view
+ const observerOptions = {
+ threshold: 0.1
+ };
+
+ const observer = new IntersectionObserver((entries) => {
+ entries.forEach(entry => {
+ if (entry.isIntersecting) {
+ entry.target.classList.add('animate-in');
+ observer.unobserve(entry.target);
+ }
+ });
+ }, observerOptions);
+
+ document.querySelectorAll('.project-card, .principle, .portrait').forEach(el => {
+ el.classList.add('animate-on-scroll');
+ observer.observe(el);
+ });
+ });
style.css
Changed around line 1
+ :root {
+ --primary: #2a5bd7;
+ --primary-light: #e0e8ff;
+ --text: #1a1a1a;
+ --text-light: #666;
+ --background: #ffffff;
+ --card-bg: #f8f9fa;
+ --border-radius: 12px;
+ --shadow: 0 4px 12px rgba(0,0,0,0.05);
+ --max-width: 1200px;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ background: var(--background);
+ }
+
+ header.hero {
+ background: linear-gradient(135deg, var(--primary) 0%, #4a6bff 100%);
+ color: white;
+ padding: 2rem 1rem;
+ position: relative;
+ overflow: hidden;
+ }
+
+ header.hero::before {
+ content: '';
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ background: url('data:image/svg+xml;utf8,');
+ opacity: 0.1;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: var(--max-width);
+ margin: 0 auto;
+ padding: 0 1rem;
+ }
+
+ .logo {
+ font-weight: 700;
+ font-size: 1.5rem;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: opacity 0.2s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .hero-content {
+ max-width: var(--max-width);
+ margin: 4rem auto 0;
+ padding: 0 1rem;
+ text-align: center;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ font-weight: 800;
+ }
+
+ .hero-content p {
+ font-size: 1.25rem;
+ max-width: 700px;
+ margin: 0 auto 2rem;
+ opacity: 0.9;
+ }
+
+ main {
+ max-width: var(--max-width);
+ margin: 0 auto;
+ padding: 4rem 1rem;
+ }
+
+ section {
+ margin-bottom: 6rem;
+ }
+
+ h2 {
+ font-size: 2rem;
+ margin-bottom: 2rem;
+ text-align: center;
+ color: var(--primary);
+ }
+
+ .content-grid {
+ display: grid;
+ grid-template-columns: 1fr 2fr;
+ gap: 3rem;
+ align-items: center;
+ }
+
+ .portrait {
+ width: 200px;
+ height: 200px;
+ border-radius: 50%;
+ background: var(--primary-light);
+ margin: 0 auto;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .portrait::after {
+ content: 'BY';
+ position: absolute;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ font-size: 3rem;
+ font-weight: bold;
+ color: var(--primary);
+ opacity: 0.3;
+ }
+
+ .bio p {
+ margin-bottom: 1.5rem;
+ color: var(--text-light);
+ }
+
+ .project-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ }
+
+ .project-card {
+ background: var(--card-bg);
+ padding: 2rem;
+ border-radius: var(--border-radius);
+ box-shadow: var(--shadow);
+ transition: transform 0.2s;
+ }
+
+ .project-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .project-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .project-card h3 {
+ margin-bottom: 1rem;
+ color: var(--primary);
+ }
+
+ .philosophy-content {
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .principle {
+ margin-bottom: 3rem;
+ text-align: center;
+ }
+
+ .principle h3 {
+ margin-bottom: 1rem;
+ color: var(--primary);
+ }
+
+ footer {
+ background: var(--card-bg);
+ padding: 3rem 1rem;
+ text-align: center;
+ }
+
+ .footer-content {
+ max-width: var(--max-width);
+ margin: 0 auto;
+ }
+
+ .footer-links {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ margin-bottom: 2rem;
+ }
+
+ .footer-links a {
+ color: var(--primary);
+ text-decoration: none;
+ font-weight: 500;
+ }
+
+ .footer-links a:hover {
+ text-decoration: underline;
+ }
+
+ @media (max-width: 768px) {
+ .content-grid {
+ grid-template-columns: 1fr;
+ gap: 2rem;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .nav-links {
+ gap: 1rem;
+ }
+ }
+
+ @media (max-width: 480px) {
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .hero-content p {
+ font-size: 1.1rem;
+ }
+
+ .project-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .footer-links {
+ flex-direction: column;
+ gap: 1rem;
+ }
+ }