commit b26c524b5a07e2f4ecd9a537ada45b45f5c57ba6
Author: root <root@hub.scroll.pub> Date: 2024-12-29 06:10:36 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..520e85b --- /dev/null +++ b/body.html @@ -0,0 +1,52 @@ +<header> + <h1>PhD or OnlyFans?</h1> + <p>Let’s crunch the numbers and find your path.</p> +</header> +<main> + <section id="calculator"> + <h2>Decision Calculator</h2> + <form id="decisionForm"> + <label for="phdYears">Years left in PhD:</label> + <input type="number" id="phdYears" min="0" required> + + <label for="phdStipend">Monthly PhD Stipend ($):</label> + <input type="number" id="phdStipend" min="0" required> + + <label for="ofEarnings">Potential OnlyFans Earnings ($/month):</label> + <input type="number" id="ofEarnings" min="0" required> + + <label for="happiness">Happiness with PhD (1-10):</label> + <input type="number" id="happiness" min="1" max="10" required> + + <button type="submit">Calculate</button> + </form> + <div id="result" class="hidden"> + <h3>Your Result:</h3> + <p id="resultText"></p> + </div> + </section> + <section id="prosCons"> + <h2>Pros & Cons</h2> + <div class="grid"> + <div> + <h3>PhD</h3> + <ul> + <li>Stable income</li> + <li>Prestige</li> + <li>Long-term career prospects</li> + </ul> + </div> + <div> + <h3>OnlyFans</h3> + <ul> + <li>Flexible schedule</li> + <li>High earning potential</li> + <li>Creative freedom</li> + </ul> + </div> + </div> + </section> +</main> +<footer> + <p>Made with ❤️ by someone who’s been there.</p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..0289b48 --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://phdtoof.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..29a956d --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "5caad2a0-f68b-4957-82b2-b10b599a5ed5", + "object": "chat.completion", + "created": 1735452619, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\nphdtoof.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://phdtoof.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’s crunch the numbers and find your path.</p>\n</header>\n<main>\n <section id=\"calculator\">\n <h2>Decision Calculator</h2>\n <form id=\"decisionForm\">\n <label for=\"phdYears\">Years left in PhD:</label>\n <input type=\"number\" id=\"phdYears\" min=\"0\" required>\n \n <label for=\"phdStipend\">Monthly PhD Stipend ($):</label>\n <input type=\"number\" id=\"phdStipend\" min=\"0\" required>\n \n <label for=\"ofEarnings\">Potential OnlyFans Earnings ($/month):</label>\n <input type=\"number\" id=\"ofEarnings\" min=\"0\" required>\n \n <label for=\"happiness\">Happiness with PhD (1-10):</label>\n <input type=\"number\" id=\"happiness\" min=\"1\" max=\"10\" required>\n \n <button type=\"submit\">Calculate</button>\n </form>\n <div id=\"result\" class=\"hidden\">\n <h3>Your Result:</h3>\n <p id=\"resultText\"></p>\n </div>\n </section>\n <section id=\"prosCons\">\n <h2>Pros & Cons</h2>\n <div class=\"grid\">\n <div>\n <h3>PhD</h3>\n <ul>\n <li>Stable income</li>\n <li>Prestige</li>\n <li>Long-term career prospects</li>\n </ul>\n </div>\n <div>\n <h3>OnlyFans</h3>\n <ul>\n <li>Flexible schedule</li>\n <li>High earning potential</li>\n <li>Creative freedom</li>\n </ul>\n </div>\n </div>\n </section>\n</main>\n<footer>\n <p>Made with ❤️ by someone who’s been there.</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: 'Arial', sans-serif;\n line-height: 1.6;\n margin: 0;\n padding: 0;\n background-color: var(--background);\n color: var(--text);\n}\n\nheader {\n background: var(--primary);\n color: white;\n padding: 2rem;\n text-align: center;\n}\n\nh1 {\n margin: 0;\n font-size: 2.5rem;\n}\n\nmain {\n padding: 2rem;\n max-width: 800px;\n margin: 0 auto;\n}\n\nsection {\n margin-bottom: 2rem;\n}\n\nform {\n display: grid;\n gap: 1rem;\n}\n\nlabel {\n font-weight: bold;\n}\n\ninput {\n padding: 0.5rem;\n border: 1px solid #ddd;\n border-radius: 4px;\n}\n\nbutton {\n background: var(--primary);\n color: white;\n padding: 0.75rem;\n border: none;\n border-radius: 4px;\n cursor: pointer;\n}\n\nbutton:hover {\n background: var(--secondary);\n}\n\n#result {\n margin-top: 1rem;\n padding: 1rem;\n background: white;\n border-radius: 4px;\n box-shadow: var(--shadow);\n}\n\n.grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));\n gap: 1rem;\n}\n\nfooter {\n text-align: center;\n padding: 1rem;\n background: var(--primary);\n color: white;\n}\n\n@media (max-width: 600px) {\n h1 {\n font-size: 2rem;\n }\n}\n---script.js---\ndocument.getElementById('decisionForm').addEventListener('submit', function (e) {\n e.preventDefault();\n\n const phdYears = parseFloat(document.getElementById('phdYears').value);\n const phdStipend = parseFloat(document.getElementById('phdStipend').value);\n const ofEarnings = parseFloat(document.getElementById('ofEarnings').value);\n const happiness = parseFloat(document.getElementById('happiness').value);\n\n const phdTotal = phdYears * 12 * phdStipend;\n const ofTotal = phdYears * 12 * ofEarnings;\n\n const resultText = document.getElementById('resultText');\n const resultDiv = document.getElementById('result');\n\n if (ofTotal > phdTotal && happiness < 7) {\n resultText.textContent = \"OnlyFans might be the better choice for you!\";\n } else {\n resultText.textContent = \"Stick with your PhD for now.\";\n }\n\n resultDiv.classList.remove('hidden');\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 270, + "completion_tokens": 1185, + "total_tokens": 1455, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 270 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..3643d19 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# phdtoof.scroll.pub +Website generated by DeepSeek from prompt: I want a website that will help me 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. \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..4eec92b --- /dev/null +++ b/script.js @@ -0,0 +1,22 @@ +document.getElementById('decisionForm').addEventListener('submit', function (e) { + e.preventDefault(); + + const phdYears = parseFloat(document.getElementById('phdYears').value); + const phdStipend = parseFloat(document.getElementById('phdStipend').value); + const ofEarnings = parseFloat(document.getElementById('ofEarnings').value); + const happiness = parseFloat(document.getElementById('happiness').value); + + const phdTotal = phdYears * 12 * phdStipend; + const ofTotal = phdYears * 12 * ofEarnings; + + const resultText = document.getElementById('resultText'); + const resultDiv = document.getElementById('result'); + + if (ofTotal > phdTotal && happiness < 7) { + resultText.textContent = "OnlyFans might be the better choice for you!"; + } else { + resultText.textContent = "Stick with your PhD for now."; + } + + resultDiv.classList.remove('hidden'); +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..fcf613a --- /dev/null +++ b/style.css @@ -0,0 +1,93 @@ +:root { + --primary: #6c5ce7; + --secondary: #a29bfe; + --background: #f8f9fa; + --text: #2d3436; + --shadow: 0 4px 6px rgba(0, 0, 0, 0.1); +} + +body { + font-family: 'Arial', sans-serif; + line-height: 1.6; + margin: 0; + padding: 0; + background-color: var(--background); + color: var(--text); +} + +header { + background: var(--primary); + color: white; + padding: 2rem; + text-align: center; +} + +h1 { + margin: 0; + font-size: 2.5rem; +} + +main { + padding: 2rem; + max-width: 800px; + margin: 0 auto; +} + +section { + margin-bottom: 2rem; +} + +form { + display: grid; + gap: 1rem; +} + +label { + font-weight: bold; +} + +input { + padding: 0.5rem; + border: 1px solid #ddd; + border-radius: 4px; +} + +button { + background: var(--primary); + color: white; + padding: 0.75rem; + border: none; + border-radius: 4px; + cursor: pointer; +} + +button:hover { + background: var(--secondary); +} + +#result { + margin-top: 1rem; + padding: 1rem; + background: white; + border-radius: 4px; + box-shadow: var(--shadow); +} + +.grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); + gap: 1rem; +} + +footer { + text-align: center; + padding: 1rem; + background: var(--primary); + color: white; +} + +@media (max-width: 600px) { + h1 { + font-size: 2rem; + } +} \ No newline at end of file