Changes to phdecide1.scroll.pub

root
root
10 days ago
Initial commit
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://phdecide.scroll.pub
+ metaTags
+ editButton /edit.html
+ title PhD vs OnlyFans Calculator
+ style.css
+ header
+ class hero
+ h1 Academic vs Alternative Career Calculator
+ p Make an informed decision about your career path
+ main
+ section
+ class calculator
+ div
+ class input-group
+ h2 Current PhD Status
+ label Annual Stipend ($)
+ for stipend
+ input
+ type number
+ id stipend
+ placeholder 30000
+ label Years Remaining
+ for yearsLeft
+ input
+ type number
+ id yearsLeft
+ placeholder 3
+ label Job Market Confidence (1-10)
+ for jobMarket
+ input
+ type range
+ id jobMarket
+ min 1
+ max 10
+ div
+ class input-group
+ h2 OnlyFans Potential
+ label Projected Monthly Subscribers
+ for subscribers
+ input
+ type number
+ id subscribers
+ placeholder 1000
+ label Subscription Price ($)
+ for price
+ input
+ type number
+ id price
+ placeholder 9.99
+ label Social Media Following
+ for following
+ input
+ type number
+ id following
+ placeholder 5000
+ section
+ class results
+ div
+ id resultCard
+ h2 Analysis Results
+ div
+ class metrics
+ div
+ class metric
+ h3 5-Year Earnings Potential
+ p
+ id earningsMetric
+ span --
+ div
+ class recommendation
+ h3 Recommendation
+ p
+ id recommendationText
+ span Calculate above to see recommendation
+ button Calculate
+ id calculateBtn
+ class primary-button
+ footer
+ nav
+ a Disclaimer
+ href #
+ a Privacy Policy
+ href #
+ a Terms
+ href #
+ p This is a decision-support tool. Please consult with advisors before making major career decisions.
+ script.js
prompt.json
Changed around line 1
+ {
+ "id": "msg_01U4tZ9GbpUqhFiCk6hHkE4F",
+ "type": "message",
+ "role": "assistant",
+ "model": "claude-3-5-sonnet-20241022",
+ "content": [
+ {
+ "type": "text",
+ "text": "I'll create a fun but professional website for this unique career decision calculator. Let's call it:\n\n---domain---\nphdecide.scroll.pub\n\n---index.scroll---\nbuildHtml\nbaseUrl https://phdecide.scroll.pub\nmetaTags\neditButton /edit.html\ntitle PhD vs OnlyFans Calculator\nstyle.css\nheader\n class hero\n h1 Academic vs Alternative Career Calculator\n p Make an informed decision about your career path\nmain\n section\n class calculator\n div\n class input-group\n h2 Current PhD Status\n label Annual Stipend ($)\n for stipend\n input\n type number\n id stipend\n placeholder 30000\n label Years Remaining\n for yearsLeft\n input\n type number\n id yearsLeft\n placeholder 3\n label Job Market Confidence (1-10)\n for jobMarket\n input\n type range\n id jobMarket\n min 1\n max 10\n div\n class input-group\n h2 OnlyFans Potential\n label Projected Monthly Subscribers\n for subscribers\n input\n type number\n id subscribers\n placeholder 1000\n label Subscription Price ($)\n for price\n input\n type number\n id price\n placeholder 9.99\n label Social Media Following\n for following\n input\n type number\n id following\n placeholder 5000\n section\n class results\n div\n id resultCard\n h2 Analysis Results\n div\n class metrics\n div\n class metric\n h3 5-Year Earnings Potential\n p\n id earningsMetric\n span --\n div\n class recommendation\n h3 Recommendation\n p\n id recommendationText\n span Calculate above to see recommendation\n button Calculate\n id calculateBtn\n class primary-button\nfooter\n nav\n a Disclaimer\n href #\n a Privacy Policy\n href #\n a Terms\n href #\n p This is a decision-support tool. Please consult with advisors before making major career decisions.\nscript.js\n---style.css---\n:root {\n --primary: #6366f1;\n --secondary: #818cf8;\n --background: #f8fafc;\n --text: #1e293b;\n --card: #ffffff;\n --border: #e2e8f0;\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, sans-serif;\n background: var(--background);\n color: var(--text);\n line-height: 1.6;\n}\n\n.hero {\n background: linear-gradient(135deg, var(--primary), var(--secondary));\n color: white;\n padding: 4rem 2rem;\n text-align: center;\n}\n\n.hero h1 {\n font-size: 2.5rem;\n margin-bottom: 1rem;\n font-weight: 800;\n}\n\nmain {\n max-width: 1200px;\n margin: 0 auto;\n padding: 2rem;\n}\n\n.calculator {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n gap: 2rem;\n margin-bottom: 2rem;\n}\n\n.input-group {\n background: var(--card);\n padding: 2rem;\n border-radius: 1rem;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n}\n\n.input-group h2 {\n margin-bottom: 1.5rem;\n color: var(--primary);\n}\n\nlabel {\n display: block;\n margin: 1rem 0 0.5rem;\n font-weight: 500;\n}\n\ninput {\n width: 100%;\n padding: 0.75rem;\n border: 2px solid var(--border);\n border-radius: 0.5rem;\n font-size: 1rem;\n transition: border-color 0.3s;\n}\n\ninput:focus {\n outline: none;\n border-color: var(--primary);\n}\n\n.results {\n background: var(--card);\n padding: 2rem;\n border-radius: 1rem;\n box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n}\n\n.metrics {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n gap: 1rem;\n margin: 1.5rem 0;\n}\n\n.metric {\n text-align: center;\n padding: 1rem;\n background: var(--background);\n border-radius: 0.5rem;\n}\n\n.primary-button {\n display: block;\n width: 100%;\n padding: 1rem;\n background: var(--primary);\n color: white;\n border: none;\n border-radius: 0.5rem;\n font-size: 1.1rem;\n font-weight: 600;\n cursor: pointer;\n transition: transform 0.3s, background 0.3s;\n}\n\n.primary-button:hover {\n background: var(--secondary);\n transform: translateY(-2px);\n}\n\nfooter {\n background: var(--card);\n padding: 2rem;\n text-align: center;\n margin-top: 4rem;\n}\n\nfooter nav {\n margin-bottom: 1rem;\n}\n\nfooter a {\n color: var(--primary);\n text-decoration: none;\n margin: 0 1rem;\n}\n\nfooter a:hover {\n text-decoration: underline;\n}\n\n@media (max-width: 768px) {\n .hero h1 {\n font-size: 2rem;\n }\n \n .calculator {\n grid-template-columns: 1fr;\n }\n \n .input-group {\n padding: 1.5rem;\n }\n}\n\n---script.js---\ndocument.getElementById('calculateBtn').addEventListener('click', function() {\n const stipend = parseFloat(document.getElementById('stipend').value) || 0;\n const yearsLeft = parseFloat(document.getElementById('yearsLeft').value) || 0;\n const jobMarket = parseFloat(document.getElementById('jobMarket').value) || 0;\n const subscribers = parseFloat(document.getElementById('subscribers').value) || 0;\n const price = parseFloat(document.getElementById('price').value) || 0;\n const following = parseFloat(document.getElementById('following').value) || 0;\n\n // Calculate potential earnings\n const academicEarnings = stipend * yearsLeft + (jobMarket * 10000); // Simple projection\n const onlyFansEarnings = subscribers * price * 12 * 5 * 0.8; // 5-year projection with 80% platform cut\n\n // Display results\n document.getElementById('earningsMetric').textContent = \n `Academic: $${academicEarnings.toLocaleString()}\\nOnlyFans: $${onlyFansEarnings.toLocaleString()}`;\n\n // Generate recommendation\n let recommendation = '';\n if (onlyFansEarnings > academicEarnings * 2) {\n recommendation = 'The numbers suggest OnlyFans could be more lucrative, but consider non-financial factors.';\n } else if (academicEarnings > onlyFansEarnings) {\n recommendation = 'Financially, completing your PhD appears to be the better long-term investment.';\n } else {\n recommendation = 'The financial differences are not significant enough to be the deciding factor. Consider your personal goals and values.';\n }\n\n document.getElementById('recommendationText').textContent = recommendation;\n});\n\n---end---\n\nThis implementation features:\n1. A professional, clean design with a modern gradient header\n2. Responsive layout that works on all devices\n3. Interactive calculator with relevant inputs for both career paths\n4. Smooth animations and transitions\n5. Clear results display with recommendations\n6. Accessibility features like proper labeling and focus states\n7. Error handling for calculations\n8. Professional disclaimers and footer links\n\nThe calculator provides a thoughtful, non-judgmental tool for comparing potential outcomes while maintaining a professional tone. The design uses a modern color scheme with subtle shadows and animations to create an engaging user experience."
+ }
+ ],
+ "stop_reason": "end_turn",
+ "stop_sequence": null,
+ "usage": {
+ "input_tokens": 853,
+ "cache_creation_input_tokens": 0,
+ "cache_read_input_tokens": 0,
+ "output_tokens": 2145
+ }
+ }
readme.scroll
Changed around line 1
+ # phdecide1.scroll.pub
+
+ Prompt: website
+ Agent: claude
+ Model: claude-3-5-sonnet-20241022
+
+ ## User prompt
+ I want a website that will help decide if I should drop out of my PhD program to do only Fans. So it should have some numerical tools and interactivity. Be creative
+
+ ## System prompt
+ You are an expert web developer. Create a website based on this request: "I want a website that will help decide if I should drop out of my PhD program to do only Fans. So it should have some numerical tools and interactivity. Be creative "
+
+ 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.getElementById('calculateBtn').addEventListener('click', function() {
+ const stipend = parseFloat(document.getElementById('stipend').value) || 0;
+ const yearsLeft = parseFloat(document.getElementById('yearsLeft').value) || 0;
+ const jobMarket = parseFloat(document.getElementById('jobMarket').value) || 0;
+ const subscribers = parseFloat(document.getElementById('subscribers').value) || 0;
+ const price = parseFloat(document.getElementById('price').value) || 0;
+ const following = parseFloat(document.getElementById('following').value) || 0;
+
+ // Calculate potential earnings
+ const academicEarnings = stipend * yearsLeft + (jobMarket * 10000); // Simple projection
+ const onlyFansEarnings = subscribers * price * 12 * 5 * 0.8; // 5-year projection with 80% platform cut
+
+ // Display results
+ document.getElementById('earningsMetric').textContent =
+ `Academic: $${academicEarnings.toLocaleString()}\nOnlyFans: $${onlyFansEarnings.toLocaleString()}`;
+
+ // Generate recommendation
+ let recommendation = '';
+ if (onlyFansEarnings > academicEarnings * 2) {
+ recommendation = 'The numbers suggest OnlyFans could be more lucrative, but consider non-financial factors.';
+ } else if (academicEarnings > onlyFansEarnings) {
+ recommendation = 'Financially, completing your PhD appears to be the better long-term investment.';
+ } else {
+ recommendation = 'The financial differences are not significant enough to be the deciding factor. Consider your personal goals and values.';
+ }
+
+ document.getElementById('recommendationText').textContent = recommendation;
+ });
style.css
Changed around line 1
+ :root {
+ --primary: #6366f1;
+ --secondary: #818cf8;
+ --background: #f8fafc;
+ --text: #1e293b;
+ --card: #ffffff;
+ --border: #e2e8f0;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
+ background: var(--background);
+ color: var(--text);
+ line-height: 1.6;
+ }
+
+ .hero {
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ color: white;
+ padding: 4rem 2rem;
+ text-align: center;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ font-weight: 800;
+ }
+
+ main {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 2rem;
+ }
+
+ .calculator {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-bottom: 2rem;
+ }
+
+ .input-group {
+ background: var(--card);
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .input-group h2 {
+ margin-bottom: 1.5rem;
+ color: var(--primary);
+ }
+
+ label {
+ display: block;
+ margin: 1rem 0 0.5rem;
+ font-weight: 500;
+ }
+
+ input {
+ width: 100%;
+ padding: 0.75rem;
+ border: 2px solid var(--border);
+ border-radius: 0.5rem;
+ font-size: 1rem;
+ transition: border-color 0.3s;
+ }
+
+ input:focus {
+ outline: none;
+ border-color: var(--primary);
+ }
+
+ .results {
+ background: var(--card);
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .metrics {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 1rem;
+ margin: 1.5rem 0;
+ }
+
+ .metric {
+ text-align: center;
+ padding: 1rem;
+ background: var(--background);
+ border-radius: 0.5rem;
+ }
+
+ .primary-button {
+ display: block;
+ width: 100%;
+ padding: 1rem;
+ background: var(--primary);
+ color: white;
+ border: none;
+ border-radius: 0.5rem;
+ font-size: 1.1rem;
+ font-weight: 600;
+ cursor: pointer;
+ transition: transform 0.3s, background 0.3s;
+ }
+
+ .primary-button:hover {
+ background: var(--secondary);
+ transform: translateY(-2px);
+ }
+
+ footer {
+ background: var(--card);
+ padding: 2rem;
+ text-align: center;
+ margin-top: 4rem;
+ }
+
+ footer nav {
+ margin-bottom: 1rem;
+ }
+
+ footer a {
+ color: var(--primary);
+ text-decoration: none;
+ margin: 0 1rem;
+ }
+
+ footer a:hover {
+ text-decoration: underline;
+ }
+
+ @media (max-width: 768px) {
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ .calculator {
+ grid-template-columns: 1fr;
+ }
+
+ .input-group {
+ padding: 1.5rem;
+ }
+ }