commit 97831fbeed2a5ec232f36a04baacf3f73cd71fff
Author: root <root@hub.scroll.pub> Date: 2024-12-31 05:11:12 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..d351dc1 --- /dev/null +++ b/body.html @@ -0,0 +1,56 @@ +<header> + <h1>PhD or OnlyFans?</h1> + <p>Let the numbers decide your future.</p> +</header> + +<main> + <section class="calculator"> + <h2>Earnings Calculator</h2> + <div class="input-group"> + <label for="phd-salary">Expected PhD Salary (annual):</label> + <input type="number" id="phd-salary" placeholder="e.g., 80000"> + </div> + <div class="input-group"> + <label for="of-earnings">Expected OnlyFans Earnings (monthly):</label> + <input type="number" id="of-earnings" placeholder="e.g., 5000"> + </div> + <button id="calculate">Calculate</button> + <div class="result" id="result"></div> + </section> + + <section class="pros-cons"> + <h2>Pros & Cons</h2> + <div class="grid"> + <div class="card"> + <h3>PhD</h3> + <ul> + <li>Stable career path</li> + <li>Intellectual fulfillment</li> + <li>Prestige</li> + <li>Long hours</li> + <li>Lower initial earnings</li> + </ul> + </div> + <div class="card"> + <h3>OnlyFans</h3> + <ul> + <li>High earning potential</li> + <li>Flexible schedule</li> + <li>Creative freedom</li> + <li>Uncertain longevity</li> + <li>Social stigma</li> + </ul> + </div> + </div> + </section> + + <section class="decision"> + <h2>Your Decision</h2> + <p id="decision-text">Let's see what the numbers say...</p> + <div class="animation" id="decision-animation"></div> + </section> +</main> + +<footer> + <p>Remember, this is just a tool. Follow your heart!</p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..78e5ff4 --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://phd2of.scroll.pub +metaTags +editButton /edit.html +title Should I Drop My PhD for OnlyFans? +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..3e91af8 --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "4d78ffef-ffd1-4e89-8c1a-1ad8820c29a7", + "object": "chat.completion", + "created": 1735621843, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\nphd2of.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://phd2of.scroll.pub\nmetaTags\neditButton /edit.html\ntitle Should I Drop My PhD for OnlyFans?\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <h1>PhD or OnlyFans?</h1>\n <p>Let the numbers decide your future.</p>\n</header>\n\n<main>\n <section class=\"calculator\">\n <h2>Earnings Calculator</h2>\n <div class=\"input-group\">\n <label for=\"phd-salary\">Expected PhD Salary (annual):</label>\n <input type=\"number\" id=\"phd-salary\" placeholder=\"e.g., 80000\">\n </div>\n <div class=\"input-group\">\n <label for=\"of-earnings\">Expected OnlyFans Earnings (monthly):</label>\n <input type=\"number\" id=\"of-earnings\" placeholder=\"e.g., 5000\">\n </div>\n <button id=\"calculate\">Calculate</button>\n <div class=\"result\" id=\"result\"></div>\n </section>\n\n <section class=\"pros-cons\">\n <h2>Pros & Cons</h2>\n <div class=\"grid\">\n <div class=\"card\">\n <h3>PhD</h3>\n <ul>\n <li>Stable career path</li>\n <li>Intellectual fulfillment</li>\n <li>Prestige</li>\n <li>Long hours</li>\n <li>Lower initial earnings</li>\n </ul>\n </div>\n <div class=\"card\">\n <h3>OnlyFans</h3>\n <ul>\n <li>High earning potential</li>\n <li>Flexible schedule</li>\n <li>Creative freedom</li>\n <li>Uncertain longevity</li>\n <li>Social stigma</li>\n </ul>\n </div>\n </div>\n </section>\n\n <section class=\"decision\">\n <h2>Your Decision</h2>\n <p id=\"decision-text\">Let's see what the numbers say...</p>\n <div class=\"animation\" id=\"decision-animation\"></div>\n </section>\n</main>\n\n<footer>\n <p>Remember, this is just a tool. Follow your heart!</p>\n</footer>\n---style.css---\n:root {\n --primary: #6c5ce7;\n --secondary: #a29bfe;\n --background: #f8f9fa;\n --text: #2d3436;\n --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);\n}\n\nbody {\n font-family: 'Segoe UI', sans-serif;\n line-height: 1.6;\n color: var(--text);\n background: var(--background);\n margin: 0;\n padding: 2rem;\n max-width: 800px;\n margin: 0 auto;\n}\n\nheader {\n text-align: center;\n margin-bottom: 3rem;\n}\n\nh1 {\n color: var(--primary);\n font-size: 2.5rem;\n margin-bottom: 0.5rem;\n}\n\n.calculator {\n background: white;\n padding: 2rem;\n border-radius: 1rem;\n box-shadow: var(--shadow);\n margin-bottom: 2rem;\n}\n\n.input-group {\n margin-bottom: 1.5rem;\n}\n\nlabel {\n display: block;\n margin-bottom: 0.5rem;\n font-weight: 600;\n}\n\ninput {\n width: 100%;\n padding: 0.8rem;\n border: 2px solid var(--secondary);\n border-radius: 0.5rem;\n font-size: 1rem;\n}\n\nbutton {\n background: var(--primary);\n color: white;\n border: none;\n padding: 1rem 2rem;\n border-radius: 0.5rem;\n cursor: pointer;\n width: 100%;\n font-size: 1rem;\n transition: background 0.3s;\n}\n\nbutton:hover {\n background: #5a4ad1;\n}\n\n.result {\n margin-top: 1.5rem;\n padding: 1rem;\n background: var(--secondary);\n color: white;\n border-radius: 0.5rem;\n text-align: center;\n font-weight: 600;\n}\n\n.pros-cons {\n margin-bottom: 2rem;\n}\n\n.grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 1.5rem;\n}\n\n.card {\n background: white;\n padding: 1.5rem;\n border-radius: 1rem;\n box-shadow: var(--shadow);\n}\n\n.card h3 {\n color: var(--primary);\n margin-bottom: 1rem;\n}\n\n.card ul {\n list-style: none;\n padding: 0;\n}\n\n.card li {\n padding: 0.5rem 0;\n border-bottom: 1px solid #eee;\n}\n\n.decision {\n text-align: center;\n padding: 2rem;\n background: white;\n border-radius: 1rem;\n box-shadow: var(--shadow);\n}\n\n#decision-text {\n font-size: 1.2rem;\n margin-bottom: 1.5rem;\n}\n\n.animation {\n height: 100px;\n background: var(--secondary);\n border-radius: 1rem;\n animation: pulse 2s infinite;\n}\n\n@keyframes pulse {\n 0% { transform: scale(1); }\n 50% { transform: scale(1.05); }\n 100% { transform: scale(1); }\n}\n\nfooter {\n text-align: center;\n margin-top: 3rem;\n color: #666;\n}\n\n@media (max-width: 600px) {\n h1 {\n font-size: 2rem;\n }\n \n .calculator, .card, .decision {\n padding: 1rem;\n }\n}\n---script.js---\ndocument.getElementById('calculate').addEventListener('click', function() {\n const phdSalary = parseFloat(document.getElementById('phd-salary').value);\n const ofEarnings = parseFloat(document.getElementById('of-earnings').value) * 12;\n \n if (isNaN(phdSalary) || isNaN(ofEarnings)) {\n alert('Please enter valid numbers in both fields.');\n return;\n }\n\n const result = document.getElementById('result');\n const decisionText = document.getElementById('decision-text');\n const animation = document.getElementById('decision-animation');\n\n if (ofEarnings > phdSalary) {\n result.textContent = `OnlyFans earns you $${(ofEarnings - phdSalary).toLocaleString()} more annually!`;\n decisionText.textContent = \"The numbers suggest OnlyFans might be the better choice!\";\n animation.style.backgroundColor = '#00b894';\n } else {\n result.textContent = `Your PhD earns you $${(phdSalary - ofEarnings).toLocaleString()} more annually!`;\n decisionText.textContent = \"The numbers suggest sticking with your PhD might be wiser.\";\n animation.style.backgroundColor = '#d63031';\n }\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 271, + "completion_tokens": 1605, + "total_tokens": 1876, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 271 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..f366685 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# phd2of5.scroll.pub +Website generated by DeepSeek from prompt: i want a website that will help decide if i should drop out of my phd program to do onlyfans. so it should have some numerical tools and interactivity . Be creative. \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..b576d06 --- /dev/null +++ b/script.js @@ -0,0 +1,23 @@ +document.getElementById('calculate').addEventListener('click', function() { + const phdSalary = parseFloat(document.getElementById('phd-salary').value); + const ofEarnings = parseFloat(document.getElementById('of-earnings').value) * 12; + + if (isNaN(phdSalary) || isNaN(ofEarnings)) { + alert('Please enter valid numbers in both fields.'); + return; + } + + const result = document.getElementById('result'); + const decisionText = document.getElementById('decision-text'); + const animation = document.getElementById('decision-animation'); + + if (ofEarnings > phdSalary) { + result.textContent = `OnlyFans earns you $${(ofEarnings - phdSalary).toLocaleString()} more annually!`; + decisionText.textContent = "The numbers suggest OnlyFans might be the better choice!"; + animation.style.backgroundColor = '#00b894'; + } else { + result.textContent = `Your PhD earns you $${(phdSalary - ofEarnings).toLocaleString()} more annually!`; + decisionText.textContent = "The numbers suggest sticking with your PhD might be wiser."; + animation.style.backgroundColor = '#d63031'; + } +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..7d49886 --- /dev/null +++ b/style.css @@ -0,0 +1,155 @@ +:root { + --primary: #6c5ce7; + --secondary: #a29bfe; + --background: #f8f9fa; + --text: #2d3436; + --shadow: 0 4px 6px rgba(0, 0, 0, 0.1); +} + +body { + font-family: 'Segoe UI', sans-serif; + line-height: 1.6; + color: var(--text); + background: var(--background); + margin: 0; + padding: 2rem; + max-width: 800px; + margin: 0 auto; +} + +header { + text-align: center; + margin-bottom: 3rem; +} + +h1 { + color: var(--primary); + font-size: 2.5rem; + margin-bottom: 0.5rem; +} + +.calculator { + background: white; + padding: 2rem; + border-radius: 1rem; + box-shadow: var(--shadow); + margin-bottom: 2rem; +} + +.input-group { + margin-bottom: 1.5rem; +} + +label { + display: block; + margin-bottom: 0.5rem; + font-weight: 600; +} + +input { + width: 100%; + padding: 0.8rem; + border: 2px solid var(--secondary); + border-radius: 0.5rem; + font-size: 1rem; +} + +button { + background: var(--primary); + color: white; + border: none; + padding: 1rem 2rem; + border-radius: 0.5rem; + cursor: pointer; + width: 100%; + font-size: 1rem; + transition: background 0.3s; +} + +button:hover { + background: #5a4ad1; +} + +.result { + margin-top: 1.5rem; + padding: 1rem; + background: var(--secondary); + color: white; + border-radius: 0.5rem; + text-align: center; + font-weight: 600; +} + +.pros-cons { + margin-bottom: 2rem; +} + +.grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 1.5rem; +} + +.card { + background: white; + padding: 1.5rem; + border-radius: 1rem; + box-shadow: var(--shadow); +} + +.card h3 { + color: var(--primary); + margin-bottom: 1rem; +} + +.card ul { + list-style: none; + padding: 0; +} + +.card li { + padding: 0.5rem 0; + border-bottom: 1px solid #eee; +} + +.decision { + text-align: center; + padding: 2rem; + background: white; + border-radius: 1rem; + box-shadow: var(--shadow); +} + +#decision-text { + font-size: 1.2rem; + margin-bottom: 1.5rem; +} + +.animation { + height: 100px; + background: var(--secondary); + border-radius: 1rem; + animation: pulse 2s infinite; +} + +@keyframes pulse { + 0% { transform: scale(1); } + 50% { transform: scale(1.05); } + 100% { transform: scale(1); } +} + +footer { + text-align: center; + margin-top: 3rem; + color: #666; +} + +@media (max-width: 600px) { + h1 { + font-size: 2rem; + } + + .calculator, .card, .decision { + padding: 1rem; + } +} \ No newline at end of file