Changes to archiscroll.pub.scroll.pub

ScrollHub
ScrollHub
12 days ago
Initial commit
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://archiscroll.pub
+ metaTags
+ editButton /edit.html
+ title Modern Software Architecture | ArchiScroll
+ style.css
+ header
+ class hero
+ nav
+ div ArchiScroll
+ class logo
+ div
+ class nav-links
+ a Patterns
+ href #patterns
+ a Principles
+ href #principles
+ a Resources
+ href #resources
+ a Playground
+ class cta-button
+ href playground.html
+ div
+ class hero-content
+ h1 Architecting Scalable Systems
+ p Master the patterns and principles behind modern, resilient software architecture
+ a Explore Patterns
+ class primary-button
+ href #patterns
+ main
+ section
+ id patterns
+ class patterns
+ h2 Architectural Patterns
+ div
+ class pattern-grid
+ div
+ class pattern-card
+ div �
+ class pattern-icon
+ h3 Microservices
+ p Decompose applications into small, independently deployable services.
+ div
+ class pattern-card
+ div 〰️
+ class pattern-icon
+ h3 Event-Driven
+ p Build responsive systems with asynchronous event processing.
+ div
+ class pattern-card
+ div 🧊
+ class pattern-icon
+ h3 CQRS
+ p Separate read and write operations for optimized performance.
+ div
+ class pattern-card
+ div 🧩
+ class pattern-icon
+ h3 Hexagonal
+ p Isolate core logic from external concerns.
+ section
+ id principles
+ class principles
+ h2 Core Principles
+ div
+ class principles-container
+ div
+ class principle
+ h3 Loose Coupling
+ p Minimize dependencies between components to improve maintainability.
+ div
+ class principle
+ h3 High Cohesion
+ p Keep related functionality together within boundaries.
+ div
+ class principle
+ h3 Resilience
+ p Design systems to handle failures gracefully.
+ div
+ class principle
+ h3 Evolutionary Design
+ p Architect for change and incremental improvement.
+ section
+ id resources
+ class resources
+ h2 Learning Resources
+ div
+ class resource-cards
+ div
+ class resource-card
+ h3 Architecture Decision Records
+ p Document key decisions and their rationale.
+ a View Template
+ class secondary-button
+ href adr-template.html
+ div
+ class resource-card
+ h3 Design Patterns Catalog
+ p Common solutions to recurring problems.
+ a Explore
+ class secondary-button
+ href patterns.html
+ div
+ class resource-card
+ h3 Performance Checklist
+ p Key considerations for high-performance systems.
+ a Download
+ class secondary-button
+ href performance-checklist.html
+ footer
+ div
+ class footer-content
+ div
+ class footer-links
+ a Blog
+ href blog.html
+ a Contribute
+ href contribute.html
+ a Contact
+ href contact.html
+ p Created by architects for architects.
+ script.js
prompt.json
Changed around line 1
+ {
+ "id": "e7005645-9beb-4037-81ea-706c7cedbce4",
+ "object": "chat.completion",
+ "created": 1749139078,
+ "model": "deepseek-chat",
+ "choices": [
+ {
+ "index": 0,
+ "message": {
+ "role": "assistant",
+ "content": "Here's my proposal for a software architecture website:\n\n---domain---\narchiscroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://archiscroll.pub\nmetaTags\neditButton /edit.html\ntitle Modern Software Architecture | ArchiScroll\nstyle.css\nheader\n class hero\n nav\n div ArchiScroll\n class logo\n div\n class nav-links\n a Patterns\n href #patterns\n a Principles\n href #principles\n a Resources\n href #resources\n a Playground\n class cta-button\n href playground.html\n div\n class hero-content\n h1 Architecting Scalable Systems\n p Master the patterns and principles behind modern, resilient software architecture\n a Explore Patterns\n class primary-button\n href #patterns\nmain\n section\n id patterns\n class patterns\n h2 Architectural Patterns\n div\n class pattern-grid\n div\n class pattern-card\n div �\n class pattern-icon\n h3 Microservices\n p Decompose applications into small, independently deployable services.\n div\n class pattern-card\n div 〰️\n class pattern-icon\n h3 Event-Driven\n p Build responsive systems with asynchronous event processing.\n div\n class pattern-card\n div 🧊\n class pattern-icon\n h3 CQRS\n p Separate read and write operations for optimized performance.\n div\n class pattern-card\n div 🧩\n class pattern-icon\n h3 Hexagonal\n p Isolate core logic from external concerns.\n section\n id principles\n class principles\n h2 Core Principles\n div\n class principles-container\n div\n class principle\n h3 Loose Coupling\n p Minimize dependencies between components to improve maintainability.\n div\n class principle\n h3 High Cohesion\n p Keep related functionality together within boundaries.\n div\n class principle\n h3 Resilience\n p Design systems to handle failures gracefully.\n div\n class principle\n h3 Evolutionary Design\n p Architect for change and incremental improvement.\n section\n id resources\n class resources\n h2 Learning Resources\n div\n class resource-cards\n div\n class resource-card\n h3 Architecture Decision Records\n p Document key decisions and their rationale.\n a View Template\n class secondary-button\n href adr-template.html\n div\n class resource-card\n h3 Design Patterns Catalog\n p Common solutions to recurring problems.\n a Explore\n class secondary-button\n href patterns.html\n div\n class resource-card\n h3 Performance Checklist\n p Key considerations for high-performance systems.\n a Download\n class secondary-button\n href performance-checklist.html\nfooter\n div\n class footer-content\n div\n class footer-links\n a Blog\n href blog.html\n a Contribute\n href contribute.html\n a Contact\n href contact.html\n p Created by architects for architects.\nscript.js\n---style.css---\n:root {\n --primary: #2563eb;\n --primary-dark: #1d4ed8;\n --secondary: #7c3aed;\n --dark: #1e293b;\n --light: #f8fafc;\n --gray: #64748b;\n --success: #10b981;\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(--dark);\n background-color: var(--light);\n}\n\nheader.hero {\n background: linear-gradient(135deg, var(--primary), var(--secondary));\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: -50%;\n left: -50%;\n width: 200%;\n height: 200%;\n background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);\n transform: rotate(30deg);\n}\n\nnav {\n display: flex;\n justify-content: space-between;\n align-items: center;\n max-width: 1200px;\n margin: 0 auto;\n padding: 0 1rem;\n}\n\n.logo {\n font-size: 1.5rem;\n font-weight: 700;\n letter-spacing: -0.5px;\n}\n\n.nav-links {\n display: flex;\n gap: 1.5rem;\n align-items: center;\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.cta-button {\n background: white;\n color: var(--primary);\n padding: 0.5rem 1rem;\n border-radius: 0.375rem;\n font-weight: 600;\n}\n\n.hero-content {\n max-width: 1200px;\n margin: 4rem auto 0;\n padding: 0 1rem;\n position: relative;\n}\n\n.hero-content h1 {\n font-size: 3rem;\n line-height: 1.2;\n margin-bottom: 1.5rem;\n max-width: 800px;\n}\n\n.hero-content p {\n font-size: 1.25rem;\n max-width: 600px;\n margin-bottom: 2rem;\n opacity: 0.9;\n}\n\n.primary-button {\n display: inline-block;\n background: white;\n color: var(--primary);\n padding: 0.75rem 1.5rem;\n border-radius: 0.5rem;\n text-decoration: none;\n font-weight: 600;\n transition: transform 0.2s, box-shadow 0.2s;\n}\n\n.primary-button:hover {\n transform: translateY(-2px);\n box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);\n}\n\nmain {\n max-width: 1200px;\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 color: var(--dark);\n position: relative;\n display: inline-block;\n}\n\nh2::after {\n content: '';\n position: absolute;\n bottom: -0.5rem;\n left: 0;\n width: 3rem;\n height: 0.25rem;\n background: var(--primary);\n border-radius: 0.125rem;\n}\n\n.pattern-grid, .resource-cards {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 2rem;\n margin-top: 2rem;\n}\n\n.pattern-card, .resource-card {\n background: white;\n border-radius: 0.5rem;\n padding: 1.5rem;\n box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);\n transition: transform 0.2s, box-shadow 0.2s;\n}\n\n.pattern-card:hover, .resource-card:hover {\n transform: translateY(-4px);\n box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);\n}\n\n.pattern-icon {\n font-size: 2rem;\n margin-bottom: 1rem;\n}\n\n.pattern-card h3, .resource-card h3 {\n font-size: 1.25rem;\n margin-bottom: 0.75rem;\n}\n\n.pattern-card p, .resource-card p {\n color: var(--gray);\n margin-bottom: 1.5rem;\n}\n\n.secondary-button {\n display: inline-block;\n color: var(--primary);\n padding: 0.5rem 1rem;\n border-radius: 0.375rem;\n text-decoration: none;\n font-weight: 500;\n border: 1px solid var(--primary);\n transition: background 0.2s, color 0.2s;\n}\n\n.secondary-button:hover {\n background: var(--primary);\n color: white;\n}\n\n.principles-container {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 2rem;\n margin-top: 2rem;\n}\n\n.principle {\n background: white;\n border-radius: 0.5rem;\n padding: 1.5rem;\n box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);\n}\n\n.principle h3 {\n font-size: 1.25rem;\n margin-bottom: 0.75rem;\n color: var(--primary);\n}\n\nfooter {\n background: var(--dark);\n color: white;\n padding: 4rem 1rem;\n}\n\n.footer-content {\n max-width: 1200px;\n margin: 0 auto;\n display: flex;\n flex-direction: column;\n gap: 2rem;\n}\n\n.footer-links {\n display: flex;\n gap: 1.5rem;\n}\n\n.footer-links a {\n color: white;\n text-decoration: none;\n opacity: 0.8;\n transition: opacity 0.2s;\n}\n\n.footer-links a:hover {\n opacity: 1;\n}\n\n@media (max-width: 768px) {\n .hero-content h1 {\n font-size: 2.25rem;\n }\n \n .hero-content p {\n font-size: 1.1rem;\n }\n \n .nav-links {\n gap: 1rem;\n }\n \n .pattern-grid, .principles-container, .resource-cards {\n grid-template-columns: 1fr;\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 window.scrollTo({\n top: targetElement.offsetTop - 80,\n behavior: 'smooth'\n });\n }\n });\n });\n\n // Add intersection observer for scroll animations\n const animateOnScroll = function() {\n const elements = document.querySelectorAll('.pattern-card, .principle, .resource-card');\n \n const observer = new IntersectionObserver((entries) => {\n entries.forEach(entry => {\n if (entry.isIntersecting) {\n entry.target.style.opacity = '1';\n entry.target.style.transform = 'translateY(0)';\n }\n });\n }, { threshold: 0.1 });\n\n elements.forEach(el => {\n el.style.opacity = '0';\n el.style.transform = 'translateY(20px)';\n el.style.transition = 'opacity 0.6s ease, transform 0.6s ease';\n observer.observe(el);\n });\n };\n\n animateOnScroll();\n});\n---end---"
+ },
+ "logprobs": null,
+ "finish_reason": "stop"
+ }
+ ],
+ "usage": {
+ "prompt_tokens": 718,
+ "completion_tokens": 2643,
+ "total_tokens": 3361,
+ "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
+ # archiscroll.pub.scroll.pub
+
+ Prompt: website
+ Agent: deepseek
+ Model: deepseek-chat
+
+ ## User prompt
+ software architecture
+
+ ## System prompt
+ You are an expert web developer. Create a website based on this request: "software architecture"
+
+ 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) {
+ window.scrollTo({
+ top: targetElement.offsetTop - 80,
+ behavior: 'smooth'
+ });
+ }
+ });
+ });
+
+ // Add intersection observer for scroll animations
+ const animateOnScroll = function() {
+ const elements = document.querySelectorAll('.pattern-card, .principle, .resource-card');
+
+ const observer = new IntersectionObserver((entries) => {
+ entries.forEach(entry => {
+ if (entry.isIntersecting) {
+ entry.target.style.opacity = '1';
+ entry.target.style.transform = 'translateY(0)';
+ }
+ });
+ }, { threshold: 0.1 });
+
+ elements.forEach(el => {
+ el.style.opacity = '0';
+ el.style.transform = 'translateY(20px)';
+ el.style.transition = 'opacity 0.6s ease, transform 0.6s ease';
+ observer.observe(el);
+ });
+ };
+
+ animateOnScroll();
+ });
style.css
Changed around line 1
+ :root {
+ --primary: #2563eb;
+ --primary-dark: #1d4ed8;
+ --secondary: #7c3aed;
+ --dark: #1e293b;
+ --light: #f8fafc;
+ --gray: #64748b;
+ --success: #10b981;
+ }
+
+ * {
+ 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(--dark);
+ background-color: var(--light);
+ }
+
+ header.hero {
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ color: white;
+ padding: 2rem 1rem;
+ position: relative;
+ overflow: hidden;
+ }
+
+ header.hero::before {
+ content: '';
+ position: absolute;
+ top: -50%;
+ left: -50%;
+ width: 200%;
+ height: 200%;
+ background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
+ transform: rotate(30deg);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 1rem;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ letter-spacing: -0.5px;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1.5rem;
+ align-items: center;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: opacity 0.2s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .cta-button {
+ background: white;
+ color: var(--primary);
+ padding: 0.5rem 1rem;
+ border-radius: 0.375rem;
+ font-weight: 600;
+ }
+
+ .hero-content {
+ max-width: 1200px;
+ margin: 4rem auto 0;
+ padding: 0 1rem;
+ position: relative;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ line-height: 1.2;
+ margin-bottom: 1.5rem;
+ max-width: 800px;
+ }
+
+ .hero-content p {
+ font-size: 1.25rem;
+ max-width: 600px;
+ margin-bottom: 2rem;
+ opacity: 0.9;
+ }
+
+ .primary-button {
+ display: inline-block;
+ background: white;
+ color: var(--primary);
+ padding: 0.75rem 1.5rem;
+ border-radius: 0.5rem;
+ text-decoration: none;
+ font-weight: 600;
+ transition: transform 0.2s, box-shadow 0.2s;
+ }
+
+ .primary-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
+ }
+
+ main {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 4rem 1rem;
+ }
+
+ section {
+ margin-bottom: 6rem;
+ }
+
+ h2 {
+ font-size: 2rem;
+ margin-bottom: 2rem;
+ color: var(--dark);
+ position: relative;
+ display: inline-block;
+ }
+
+ h2::after {
+ content: '';
+ position: absolute;
+ bottom: -0.5rem;
+ left: 0;
+ width: 3rem;
+ height: 0.25rem;
+ background: var(--primary);
+ border-radius: 0.125rem;
+ }
+
+ .pattern-grid, .resource-cards {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .pattern-card, .resource-card {
+ background: white;
+ border-radius: 0.5rem;
+ padding: 1.5rem;
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ transition: transform 0.2s, box-shadow 0.2s;
+ }
+
+ .pattern-card:hover, .resource-card:hover {
+ transform: translateY(-4px);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
+ }
+
+ .pattern-icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .pattern-card h3, .resource-card h3 {
+ font-size: 1.25rem;
+ margin-bottom: 0.75rem;
+ }
+
+ .pattern-card p, .resource-card p {
+ color: var(--gray);
+ margin-bottom: 1.5rem;
+ }
+
+ .secondary-button {
+ display: inline-block;
+ color: var(--primary);
+ padding: 0.5rem 1rem;
+ border-radius: 0.375rem;
+ text-decoration: none;
+ font-weight: 500;
+ border: 1px solid var(--primary);
+ transition: background 0.2s, color 0.2s;
+ }
+
+ .secondary-button:hover {
+ background: var(--primary);
+ color: white;
+ }
+
+ .principles-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .principle {
+ background: white;
+ border-radius: 0.5rem;
+ padding: 1.5rem;
+ box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
+ }
+
+ .principle h3 {
+ font-size: 1.25rem;
+ margin-bottom: 0.75rem;
+ color: var(--primary);
+ }
+
+ footer {
+ background: var(--dark);
+ color: white;
+ padding: 4rem 1rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ gap: 2rem;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ opacity: 0.8;
+ transition: opacity 0.2s;
+ }
+
+ .footer-links a:hover {
+ opacity: 1;
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2.25rem;
+ }
+
+ .hero-content p {
+ font-size: 1.1rem;
+ }
+
+ .nav-links {
+ gap: 1rem;
+ }
+
+ .pattern-grid, .principles-container, .resource-cards {
+ grid-template-columns: 1fr;
+ }
+ }