commit 19e38469491349b1734710daae9e3a8b052c882f
Author: root <root@hub.scroll.pub> Date: 2024-12-27 16:06:11 +0000 Subject: Initial commit diff --git a/body.html b/body.html new file mode 100644 index 0000000..8be9eb1 --- /dev/null +++ b/body.html @@ -0,0 +1,49 @@ +<header> + <h1>PhD or Not?</h1> + <p>Decide if you should drop out of your PhD program to pursue OnlyFans.</p> +</header> +<main> + <section id="calculator"> + <h2>Decision Calculator</h2> + <form id="decisionForm"> + <label for="phdSalary">Expected PhD Salary (per year):</label> + <input type="number" id="phdSalary" name="phdSalary" required> + + <label for="onlyfansEarnings">Expected OnlyFans Earnings (per month):</label> + <input type="number" id="onlyfansEarnings" name="onlyfansEarnings" required> + + <label for="phdDuration">PhD Duration (years):</label> + <input type="number" id="phdDuration" name="phdDuration" required> + + <button type="submit">Calculate</button> + </form> + <div id="result"></div> + </section> + + <section id="prosCons"> + <h2>Pros and Cons</h2> + <div class="grid"> + <div> + <h3>PhD</h3> + <ul> + <li>Stable career path</li> + <li>Intellectual fulfillment</li> + <li>Prestige and recognition</li> + <li>Long-term financial security</li> + </ul> + </div> + <div> + <h3>OnlyFans</h3> + <ul> + <li>Flexible schedule</li> + <li>Potential for high earnings</li> + <li>Creative freedom</li> + <li>Direct connection with audience</li> + </ul> + </div> + </div> + </section> +</main> +<footer> + <p>Made with ❤️ by someone who understands your dilemma.</p> +</footer> \ No newline at end of file diff --git a/index.scroll b/index.scroll new file mode 100644 index 0000000..bae58a3 --- /dev/null +++ b/index.scroll @@ -0,0 +1,8 @@ +buildHtml +baseUrl https://phdornot.scroll.pub +metaTags +editButton /edit.html +title PhD or Not? - Decide Your Path +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..e55a0f4 --- /dev/null +++ b/prompt.json @@ -0,0 +1,25 @@ +{ + "id": "aa3addcc-c1f0-4be5-bfd4-18b7a678f500", + "object": "chat.completion", + "created": 1735315551, + "model": "deepseek-chat", + "choices": [ + { + "index": 0, + "message": { + "role": "assistant", + "content": "---domain---\nphdornot.scroll.pub\n---index.scroll---\nbuildHtml\nbaseUrl https://phdornot.scroll.pub\nmetaTags\neditButton /edit.html\ntitle PhD or Not? - Decide Your Path\nstyle.css\nbody.html\nscript.js\n---body.html---\n<header>\n <h1>PhD or Not?</h1>\n <p>Decide if you should drop out of your PhD program to pursue OnlyFans.</p>\n</header>\n<main>\n <section id=\"calculator\">\n <h2>Decision Calculator</h2>\n <form id=\"decisionForm\">\n <label for=\"phdSalary\">Expected PhD Salary (per year):</label>\n <input type=\"number\" id=\"phdSalary\" name=\"phdSalary\" required>\n \n <label for=\"onlyfansEarnings\">Expected OnlyFans Earnings (per month):</label>\n <input type=\"number\" id=\"onlyfansEarnings\" name=\"onlyfansEarnings\" required>\n \n <label for=\"phdDuration\">PhD Duration (years):</label>\n <input type=\"number\" id=\"phdDuration\" name=\"phdDuration\" required>\n \n <button type=\"submit\">Calculate</button>\n </form>\n <div id=\"result\"></div>\n </section>\n \n <section id=\"prosCons\">\n <h2>Pros and Cons</h2>\n <div class=\"grid\">\n <div>\n <h3>PhD</h3>\n <ul>\n <li>Stable career path</li>\n <li>Intellectual fulfillment</li>\n <li>Prestige and recognition</li>\n <li>Long-term financial security</li>\n </ul>\n </div>\n <div>\n <h3>OnlyFans</h3>\n <ul>\n <li>Flexible schedule</li>\n <li>Potential for high earnings</li>\n <li>Creative freedom</li>\n <li>Direct connection with audience</li>\n </ul>\n </div>\n </div>\n </section>\n</main>\n<footer>\n <p>Made with ❤️ by someone who understands your dilemma.</p>\n</footer>\n---style.css---\n:root {\n --primary-color: #6a1b9a;\n --secondary-color: #ab47bc;\n --background-color: #f3e5f5;\n --text-color: #4a148c;\n --font-family: 'Arial', sans-serif;\n}\n\nbody {\n font-family: var(--font-family);\n color: var(--text-color);\n background-color: var(--background-color);\n margin: 0;\n padding: 0;\n line-height: 1.6;\n}\n\nheader {\n background: var(--primary-color);\n color: white;\n padding: 2rem;\n text-align: center;\n}\n\nheader h1 {\n margin: 0;\n font-size: 2.5rem;\n}\n\nheader p {\n margin: 0.5rem 0 0;\n font-size: 1.2rem;\n}\n\nmain {\n padding: 2rem;\n}\n\nsection {\n margin-bottom: 2rem;\n}\n\nh2 {\n color: var(--primary-color);\n margin-bottom: 1rem;\n}\n\nform {\n display: grid;\n gap: 1rem;\n max-width: 400px;\n margin: 0 auto;\n}\n\nlabel {\n font-weight: bold;\n}\n\ninput {\n padding: 0.5rem;\n border: 1px solid var(--secondary-color);\n border-radius: 4px;\n}\n\nbutton {\n background: var(--secondary-color);\n color: white;\n padding: 0.75rem;\n border: none;\n border-radius: 4px;\n cursor: pointer;\n font-size: 1rem;\n}\n\nbutton:hover {\n background: var(--primary-color);\n}\n\n#result {\n margin-top: 1rem;\n font-size: 1.2rem;\n text-align: center;\n}\n\n.grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 2rem;\n}\n\nfooter {\n text-align: center;\n padding: 1rem;\n background: var(--primary-color);\n color: white;\n margin-top: 2rem;\n}\n\n@media (max-width: 600px) {\n header h1 {\n font-size: 2rem;\n }\n \n header p {\n font-size: 1rem;\n }\n \n form {\n grid-template-columns: 1fr;\n }\n}\n---script.js---\ndocument.getElementById('decisionForm').addEventListener('submit', function(event) {\n event.preventDefault();\n \n const phdSalary = parseFloat(document.getElementById('phdSalary').value);\n const onlyfansEarnings = parseFloat(document.getElementById('onlyfansEarnings').value);\n const phdDuration = parseFloat(document.getElementById('phdDuration').value);\n \n const phdTotal = phdSalary * phdDuration;\n const onlyfansTotal = onlyfansEarnings * 12 * phdDuration;\n \n let resultText;\n if (onlyfansTotal > phdTotal) {\n resultText = `OnlyFans is more lucrative! You could earn $${onlyfansTotal - phdTotal} more over ${phdDuration} years.`;\n } else {\n resultText = `Stick with the PhD! You could earn $${phdTotal - onlyfansTotal} more over ${phdDuration} years.`;\n }\n \n document.getElementById('result').textContent = resultText;\n});\n---end---" + }, + "logprobs": null, + "finish_reason": "stop" + } + ], + "usage": { + "prompt_tokens": 272, + "completion_tokens": 1248, + "total_tokens": 1520, + "prompt_cache_hit_tokens": 0, + "prompt_cache_miss_tokens": 272 + }, + "system_fingerprint": "fp_f1afce2943" +} \ No newline at end of file diff --git a/readme.scroll b/readme.scroll new file mode 100644 index 0000000..7ae3479 --- /dev/null +++ b/readme.scroll @@ -0,0 +1,2 @@ +# phdornot.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 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..c903c2e --- /dev/null +++ b/script.js @@ -0,0 +1,19 @@ +document.getElementById('decisionForm').addEventListener('submit', function(event) { + event.preventDefault(); + + const phdSalary = parseFloat(document.getElementById('phdSalary').value); + const onlyfansEarnings = parseFloat(document.getElementById('onlyfansEarnings').value); + const phdDuration = parseFloat(document.getElementById('phdDuration').value); + + const phdTotal = phdSalary * phdDuration; + const onlyfansTotal = onlyfansEarnings * 12 * phdDuration; + + let resultText; + if (onlyfansTotal > phdTotal) { + resultText = `OnlyFans is more lucrative! You could earn $${onlyfansTotal - phdTotal} more over ${phdDuration} years.`; + } else { + resultText = `Stick with the PhD! You could earn $${phdTotal - onlyfansTotal} more over ${phdDuration} years.`; + } + + document.getElementById('result').textContent = resultText; +}); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..ac3ba09 --- /dev/null +++ b/style.css @@ -0,0 +1,111 @@ +:root { + --primary-color: #6a1b9a; + --secondary-color: #ab47bc; + --background-color: #f3e5f5; + --text-color: #4a148c; + --font-family: 'Arial', sans-serif; +} + +body { + font-family: var(--font-family); + color: var(--text-color); + background-color: var(--background-color); + margin: 0; + padding: 0; + line-height: 1.6; +} + +header { + background: var(--primary-color); + color: white; + padding: 2rem; + text-align: center; +} + +header h1 { + margin: 0; + font-size: 2.5rem; +} + +header p { + margin: 0.5rem 0 0; + font-size: 1.2rem; +} + +main { + padding: 2rem; +} + +section { + margin-bottom: 2rem; +} + +h2 { + color: var(--primary-color); + margin-bottom: 1rem; +} + +form { + display: grid; + gap: 1rem; + max-width: 400px; + margin: 0 auto; +} + +label { + font-weight: bold; +} + +input { + padding: 0.5rem; + border: 1px solid var(--secondary-color); + border-radius: 4px; +} + +button { + background: var(--secondary-color); + color: white; + padding: 0.75rem; + border: none; + border-radius: 4px; + cursor: pointer; + font-size: 1rem; +} + +button:hover { + background: var(--primary-color); +} + +#result { + margin-top: 1rem; + font-size: 1.2rem; + text-align: center; +} + +.grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 2rem; +} + +footer { + text-align: center; + padding: 1rem; + background: var(--primary-color); + color: white; + margin-top: 2rem; +} + +@media (max-width: 600px) { + header h1 { + font-size: 2rem; + } + + header p { + font-size: 1rem; + } + + form { + grid-template-columns: 1fr; + } +} \ No newline at end of file